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

e5core-angular-services

v1.2.2

Published

e5 Anywhere Angular Services

Downloads

30

Readme

e5core-angular-services (1.2.1)

Copyright 2018 e5 Workflow Inc

This library implements a group of Angular Services that can be used to access the e5 Workflow e5 Anywhere REST API web services from an Angular Application and componment.

Quick Start

The following is a simple guide for adding a e5 Anywhere angular services to an existing Angular CLI application. Note that to access the API you will need to authenticate to the REST web service. The authentication method uses which will depend on your environment (see Authentication).

  1. Install the Library
    npm install e5core-angular-services --save
  2. Register the default API endpoints in the application module e.g. "app.module.ts".
    import { E5coreAngularServicesModule } from 'e5core-angular-services' ;
    ...
    @NgModule({
        imports: [ E5coreAngularServicesModule, ... ]
  3. Add the Authentication method for your environment.
  4. Add the e5 Anywhere API endpoint provider to you 'app.module.ts'.
    import { environment as Environment } from '../environments/environment'
    import { E5ConfigurationService } from 'e5core-angular-services';
    export class EnvConfigurationService extends E5ConfigurationService {
        constructor() {
            super() ;
            this.settings = Environment.e5Configuration
        }
    }
    ...
    @NgModule({
        providers: [
            {
                provide: E5ConfigurationService,
                useClass: EnvConfigurationService
            },
        ...
  5. Add the environment settings to the "environment.ts".
    export const environment = {
        production: false,
        e5Configuration : {
            env : {
                name : "Simple Configuration"
            },
            apiServer: {
                baseUrl: "http://demo.e5workflow.com:84",
                scope: "test"
            }
        }
    };
  6. Inject the service into your component.
    import { WorkGetNextService } from 'e5core-angular-services';
    export class GetNextComponent implements OnInit {
        constructor(private service:WorkGetNextService) { }
    
  7. Call the service in a click handler (for example)
    getNext() {
        this.service.getNextId().subscribe(
            res => {
                this.id = res.id ;
            }
        )
    }

Authentication

The e5 Anywhere API REST services can be configured in a number of ways to authenticate a user, and this is depended on what your application and environment are using. For example it could be using Windows Authentication or JWT Tokens.

Adding Windows Authentication

  1. Create a "winAuthInterceptor.ts" class file.
    import { Injectable } from '@angular/core';
    import { HttpRequest, HttpHandler, HttpInterceptor, HttpEvent } from '@angular/common/http';
    import { Observable } from 'rxjs';
    
    @Injectable()
    export class WinAuthInterceptor implements HttpInterceptor{
        constructor(){}
    
        intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
            req = req.clone({
                withCredentials: true
            });
            return next.handle(req);
        }
    }
  2. Add the interceptor to you 'app.module.ts'
    import { HTTP_INTERCEPTORS } from '@angular/common/http';
    import { WinAuthInterceptor } from './WinAuthInterceptor';
    @NgModule({
        providers: [
            {
            provide: HTTP_INTERCEPTORS,
            useClass: WinAuthInterceptor,
            multi: true
            },
            ...
    })

Change Log

Version|Changes -|- 1.2.2|Work Task APIs : Fixed CSOM Work Task Apis 1.2.1|Added Work Task APIs : PrescribeTask, UnprescribeTask, CompleteTask,GetPrescribableTasks, GetPrescribedTasks 1.2.0|Upgrade to Angular 7.0 1.1.13|Added AddEvent function to WorkItem 1.1.12|Added UiDocument service 1.1.11|Changed "WorkWork*" models to jusr "Work*" 1.1.10|Added getWorkRelatedItems and models to WotkItemService 1.1.9|Moved UiListService to ListSearchService and added a prefix "Taxonomy" to the Taxonomy Services. 1.1.8|Added SLA Monitor, Attachment and updated workitem and search definition services. 1.1.7|Inproved type completion on functions and models, added UI WorkItem and and UI SearchDefinition services. 1.1.4|Changed services method optional function parameters into an options typed object. e.g. you can now use getFindWorkItem(1, {}, { select: 'Id,Reference' }) instead of getFindWorkItem(1, {}, null, null, null, null, null, null, null, 'Id,Reference' ). 1.1.6|Fixed a couple of NPM deployment issues.