npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@d4h/angular

v8.1.3

Published

Angular services and interfaces for the D4H API.

Downloads

78

Readme

GitHubStatus for D4H/client npm License: MIT

@d4h/angular

@d4h/angular is an Angular 7+ client for the D4H v2 API. It offers:

  1. Model interfaces, e.g. Member, Attendance.
  2. Object services: MemberService, AttendanceSerivice.
  3. API endpoint interfaces: Members.Update, Attendances.Index.

Installation

npm install --save @d4h/angular

Configuration

The client accepts a configuration which can either be static or yielded by an observable.

API Regions

@d4h/angular supports all D4H API regions. Please contact [email protected] if you have questions about which is the correct data region for you to use.

export enum Region {
  America = 'api.d4h.org',
  Canada = 'api.ca.d4h.org',
  Europe = 'api.eu.d4h.org',
  Pacific = 'api.ap.d4h.org',
  Staging = 'api.st.d4h.org'
}

Format

Injected configurations are evaluated when the client makes an API request. This permits for dynamic applications where the account or team membership tokens can change in the course of use.

interface Config {
  region: Region;

  client: {
    name: string;
    version: string;
  };

  tokens: {
    account?: string;
    organisation?: string;
    team?: string;
  };
}

Use

Import and call ClientModule.forFeature() with a configuration. Configuration must be passed as an observable, using the of operator at its simplest.

import { CLIENT_CONFIG, ClientConfig } from '@4h/angular';
import { Provider } from '@angular/core';
import { of } from 'rxjs';

const clientConfigProvider: Provider = {
  provide: CLIENT_CONFIG,
  useValue: of({
    region: Region.Staging,

    client: {
      name: 'Minas Tirith Siege Disaster Response',
      version: '3.0.19'
    },

    tokens: {
      account: 'YdRM8Tz78tIfJ3jqhyzz',
      team: 'LKYW5USNLWAwyqy5VNcA'
    }
  }
};

@NgModule({
  imports: [
    ClientModule.forFeature(clientConfigProvider)
  ]
})
export class AppModule {}
import { AccountService, Username } from '@d4h/angular';

export class UsernameComponent {
  constructor(private readonly accountService: AccountService) {}

  ngOnInit(): void {
    this.accountService.username('caira').subscribe(console.log);
  }
}

NgRX Store Selector Injection

D4H Angular applications rely on NgRx for internal state management. Store states are a singleton class instance-selectors only work while instantiated. With some slight changes it is quite possible to inject a selected configuration:

import { CLIENT_CONFIG, ClientConfig, ClientModule } from '@4h/angular';
import { Provider } from '@angular/core';
import { Store, select } from '@ngrx/store';

import { AppState, getClientConfig } from '@app/store';

const clientConfigProvider: Provider = {
  provide: CLIENT_CONFIG,
  deps: [Store],
  useFactory(store: Store<AppState>): Observable<ClientConfig> {
    return store.pipe(select(getClientConfig));
  }
};

@NgModule({
  imports: [
    ClientModule.forFeature(clientConfigProvider)
  ]
})
export class AppModule {}

Resources

Interfaces

API resource interfaces are available if you wish to build your own services. Interfaces follow the Rails controller convention where resources are RESTful:

import { Attendances } from '@d4h/angular';

Interface | Method | Purpose ---|---|---- Attendances.Search | GET /team/attendance | Permitted query parameters. Attendances.Index | GET /team/attendance | API response. Attendances.Show | GET /team/attendance/:id | API response. Attendaces.New | POST /team/attendance | Permitted create attributes. Attendaces.New | POST /team/attendance | API response. Attendances.Change | PUT /team/attendance/:id | Permitted update attributes. Attendances.Update | PUT /team/attendance/:id | API response. Attendances.Destroy | DELETE /team/attendance/:id | API response.

Available Resources

@d4h/angular support operations currently used internally by D4H applications. If you require a resource not supported here, either open an issue or reach out to [email protected].

  • AccountService:
    • authenticate(username, password)
    • memberships([params])
    • username(username)
  • ActivityService:
    • index([query])
    • show(id)
  • AttendanceService:
    • index([query])
    • show(id)
    • create([params])
    • update(id[, params])
    • destroy(id)
  • CalendarService
    • index([query]): Query union of Attendance and Duty records in a common format suitable for use in JavaScript calendar software.
  • CategoryService:
    • index([query])
    • show(id)
    • create([params])
    • update(id[, params])
    • destroy(id)
  • DestinationService: Query new destination for equipment from union of equipment, locations or members.
    • index([query])
    • show({ id, type })
    • barcode(barcode)
    • contents({ id, type })
    • set(equipmentId, { id, type }): Move equipment to new destination.
    • search(type, query[, params])
  • DutyService:
    • index([query])
    • show(id)
    • create([params])
    • update(id[, params])
    • destroy(id)
  • GroupService:
    • index([query])
    • show(id)
  • EquipmentService:
    • index([query])
    • show(id)
    • barcode(barcode): Fetch Equipment item by barcode.
    • ref(ref): Fetch Equipment item item by reference.
    • move(id, destinationType, destinationId): Move equipment to new destination.
    • update(id[, params])
    • image(id, [params])
    • search([text[, params]]): Search equipment by equipment.ref === text || equipment.barcode === text
  • InspectionService:
    • index([query])
    • show(id)
    • update(id[, params])
  • InspectionResultService:
    • index([search])
    • show(id)
    • update(id[, params])
  • KindService:
    • index([query])
    • show(id)
    • create([params])
    • update(id[, params])
    • destroy(id)
  • LocationService:
    • index([query])
    • show(id)
    • destroy(id)
    • search([text[, params]])
  • MemberService:
    • index([query])
    • show(id)
    • update(id[, params])
    • destroy(id)
    • groups(id)
    • image(id, [params])
    • labels()
    • search([text[, params]])
  • NoteService:
    • index([query])
    • show(id)
    • create([params])
    • update(id[, params])
    • destroy(id)
  • PhotoService:
    • get(url[, params])
    • membership(url, membership[, params])
  • RepairService:
    • index([query])
    • show(id)
    • create([params])
    • update(id[, params])
  • RoleService:
    • index([query])
    • show(id)
  • TeamService:
    • show(team)
    • image(team,[ params])
    • settings(team, setting)

Support and Feedback

Feel free to email [email protected], open an issue or tweet @d4h.

License

Copyright (C) 2019 D4H

Licensed under the MIT license.