1.0.46 • Published 4 years ago

ha-ngx-api v1.0.46

Weekly downloads
146
License
-
Repository
-
Last release
4 years ago

HaNgxApi

This is an API library for Angular 9+. It communicates with the High Attendance backend.

This library was generated with Angular CLI version 9.1.9.

Usage

Installation

npm install ha-ngx-api

Dependecies and customization

  1. Import HaNgxApiModule module in the app module
  2. Configure the API URL, company ID, event ID and token
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { environment } from '../environments/environment';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { HaNgxApiModule } from 'ha-ngx-api';

@NgModule({
  HaNgxApiModule.forRoot({
    baseUrl: environment.baseUrl,
    token: environment.token,
  }),
})
export class AppModule { }

Example use in component

import { Component, OnInit } from '@angular/core';
import { environment } from '../../environments/environment';
import { SessionDataProviderService,
         EventDataProviderService,
         Session,
         SessionGroup,
         Speaker,
         Track } from 'ha-ngx-api';

@Component({
 selector: 'app-home',
 templateUrl: './home.component.html',
 styleUrls: ['./home.component.scss']
})
export class HomeComponent implements OnInit {

 constructor(private sessionDataProvider: SessionDataProviderService,
             private eventDataProvider: EventDataProviderService) { }

 ngOnInit(): void {
   // Get mock data by passing "true" as the last parameter in the setup() function
   // this.sessionDataProvider.setup(environment.eventId, environment.companyId, true);
   this.sessionDataProvider.setup(environment.eventId, environment.companyId);
 }

 private getSessionGroups() {
   this.sessionDataProvider.sessionGroups().subscribe((sessions: SessionGroup[]) => {
     console.log('sessionGroups: ', sessions);
   });
 }

 private getEventGroups() {
   const companyId = '98';
   const companyToken = 'uPclmJR';
   const type = 'all';
   this.eventDataProvider.setupEvents(companyId, companyToken, type);
   this.eventDataProvider.eventGroups().subscribe((events: EventGroup[]) => {
     console.log('eventGroups: ', events);
   },
   (error) => {
     console.log(error);
   });
 }
}   

Code scaffolding

Run ng generate component component-name --project HaNgxApi to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module --project HaNgxApi.

Note: Don't forget to add --project HaNgxApi or else it will be added to the default project in your angular.json file.

Build

Run ng build HaNgxApi to build the project. The build artifacts will be stored in the dist/ directory.

Publishing

After building your library with ng build HaNgxApi, go to the dist folder cd dist/ha-ngx-api and run npm publish.

Running unit tests

Run ng test HaNgxApi to execute the unit tests via Karma.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

1.0.46

4 years ago

1.0.45

4 years ago

1.0.44

4 years ago

1.0.43

4 years ago

1.0.42

4 years ago

1.0.41

4 years ago

1.0.40

4 years ago

1.0.39

4 years ago

1.0.38

4 years ago

1.0.37

4 years ago

1.0.36

4 years ago

1.0.35

4 years ago

1.0.34

4 years ago

1.0.33

4 years ago

1.0.32

4 years ago

1.0.31

4 years ago

1.0.29

4 years ago

1.0.28

4 years ago

1.0.30

4 years ago

1.0.27

4 years ago

1.0.26

4 years ago

1.0.25

4 years ago

1.0.24

4 years ago

1.0.23

4 years ago

1.0.22

4 years ago

1.0.21

4 years ago

1.0.20

4 years ago

1.0.19

4 years ago

1.0.18

4 years ago

1.0.17

4 years ago

1.0.16

4 years ago

1.0.15

4 years ago

1.0.14

4 years ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.1

4 years ago