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

jinqu-ng-http

v1.1.7

Published

Jinqu Angular HttpClient implementation

Downloads

13

Readme

jinqu-ng-http

Jinqu Angular HttpClient Ajax provider for the jinqu-odata ODataService. Usage:

import { Injectable } from "@angular/core";
import { HttpClient, HttpResponseBase } from "@angular/common/http";
import { ODataService, ODataQuery } from 'jinqu-odata';
import { AjaxOptions } from "jinqu";
import { AngularHttpProvider } from 'jinqu-ng-http';
import { Product } from '../model/all-models';

export type NgODataQuery<T extends object> = ODataQuery<T, AjaxOptions, HttpResponseBase>;

@Injectable()
export class NorthwindContext extends ODataService<HttpResponseBase> {
  constructor(http: HttpClient) {
    super('api/', new AngularHttpProvider(http));
  }

  get products(): NgODataQuery<Product> { return this.createQuery<Product>('products'); }
}

Date/Time values

By default jinqu-odata represents OData Date and DateTimeOffset values as strings. You may want to represent them as Date objects in your data model. JSON.stringify() automatically converts Date objects to ISO 8601 format with zero timezone when data is being sent, but JSON.parse() leaves dates as strings on reception. You may pass one of the predefined JSON converter static classes (JsonDateOnlyConverter, JsonDateTimeOffsetConverter or JsonDateConverter) as the second parameter to the AngularHttpProvider constructor, e.g.

import { AngularHttpProvider, JsonDateConverter } from 'jinqu-ng-http';
...
const ngHttpProv = new AngularHttpProvider(http, JsonDateConverter);

Built-in converters makes conversion from string to Date object if a property value matches the respective RegExp mask:

  • JsonDateOnlyConverter: convertes OData Date values (e.g. '2012-12-03') to JS Date on receive;
  • JsonDateTimeOffsetConverter: convertes DateTimeOffset values (e.g. '2012-12-03T07:16:23Z') to JS Date on receive, stringifies JS Date to ISO 8601 Extended Format with local timezone;
  • JsonDateConverter: covers both cases.

You may want to use ts-odata-model-gen with --useDateProps option to generate data models with Edm.Date and Edm.DateTimeOffset fields as Date objects from OData service $metadata endpoint.

Custom converter

You can also write your own implementation of IJsonConverter interface in order to take full control over any data conversion upon sending or receiving:

export class SomeJsonConverter {
    // receive
    public static revive(this: any, key: string, value: any): any {
        if (typeof value === 'string' && value === "orange") {
            return "potatoes";
        } else {
            return value;
        }
    }
    // send
    public static replace(this: any, key: string, value: any): any {
        if (typeof value === 'string' && key === "product") {
            return 'orange';
        } else {
            return value;
        }
    }
}

SomeJsonConverter.revive and SomeJsonConverter.replace will be passed as the second argument to JSON.parse() and JSON.stringify() respectively.

Error handling

If an error is returned by the underlying service as an HTTP payload, jinqu-ng-http reads it from Blob and returns in HttpErrorResponse.error field. If the error is a JSON object, it is returned as an object. E.g. for OData v4 errors:

context.products().toArrayAsync()
    .then((result: Product[]) => {
        ...
    }, (httpErr: HttpErrorResponse) => {
        const errMsg = httpErr.error?.error ? `${httpErr.error.error.code} ${httpErr.error.error.message}` :
            httpErr.message ? httpErr.message :
                httpErr.status ? `${httpErr.status} ${httpErr.statusText}` :
                    'Server or network error';
        console.log(errMsg);
    }
);