Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

JSON API client library for Angular 5+ 👌 :: Production Ready 🚀

License

NotificationsYou must be signed in to change notification settings

reyesoft/ngx-jsonapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

angular jsonapi

CircleCICodacy Badgenpm versionCoverage Status

This is a JSON API library for Angular 6+. Please use [ts-angular-jsonapi](https://github.com/reyesoft/ts-angular-jsonapi) for AngularJS.

Online demo

You can test library on this online example 👌http://ngx-jsonapi.reyesoft.com/.

demo app

Data is obtained fromJson Api Playground server.

Supported features

  • Cache (on memory): TTL for collections and resources. Before a HTTP request objects are setted with cached data.
  • Cache on IndexedDB
  • Pagination
  • Sorting
  • Include param support (also, when you save)
  • Equal requests, return a same ResourceObject on memory
  • Default values for a new resource (hydrator).

Migration

Usage

Justinstall,configure and learn withexamples.

First of all, it's advisable to readJsonapi specification. Understanding JsonApi documents structure is recommended.

Installation

yarn add ngx-jsonapi@2.0.0-rc.4 --save# or npm if you wish...

Dependecies and customization

  1. Add Jsonapi dependency.
  2. Configure your url and other paramemeters.
  3. Inject JsonapiCore somewhere before you extend any class fromJsonapi.Resource.
/* .. */import{NgxJsonapiModule}from'ngx-jsonapi';@NgModule({imports:[NgxJsonapiModule.forRoot({url:'//jsonapiplayground.reyesoft.com/v2/'})]})exportclassAppModule{}

Enable Local Cache

Library cache anything memory. With Local Store, also store all on IndexDb on browser. Faster apps when we reuse a lot of data.

/* .. */import{NgxJsonapiModule}from'ngx-jsonapi';import{JSONAPI_RIPPER_SERVICE,JSONAPI_STORE_SERVICE}from'./core';import{StoreService}from'ngx-jsonapi/sources/store.service';import{JsonRipper}from'ngx-jsonapi/services/json-ripper';@NgModule({imports:[NgxJsonapiModule.forRoot({url:'//jsonapiplayground.reyesoft.com/v2/'})],providers:[{provide:JSONAPI_RIPPER_SERVICE,useClass:JsonRipperFake},{provide:JSONAPI_STORE_SERVICE,useClass:StoreFakeService}]})exportclassAppModule{}

Examples

Like you know, the better way is with examples. Lets go! 🚀

Defining a resource

authors.service.ts

import{Injectable}from'@angular/core';import{Autoregister,Service,Resource,DocumentCollection,DocumentResource}from'ngx-jsonapi';import{Book}from'../books/books.service';import{Photo}from'../photos/photos.service';exportclassAuthorextendsResource{publicattributes={name:'default name',date_of_birth:''};publicrelationships={books:newDocumentCollection<Book>(),photo:newDocumentResource<Photo>()};}@Injectable()@Autoregister()exportclassAuthorsServiceextendsService<Author>{publicresource=Author;publictype='authors';}

Get a collection of resources

Controller

import{Component}from'@angular/core';import{DocumentCollection}from'ngx-jsonapi';import{AuthorsService,Author}from'./../authors.service';@Component({selector:'demo-authors',templateUrl:'./authors.component.html'})exportclassAuthorsComponent{publicauthors:DocumentCollection<Author>;publicconstructor(privateauthorsService:AuthorsService){authorsService.all({// include: ['books', 'photos'],}).subscribe(authors=>(this.authors=authors));}}

View for this controller

<p*ngFor="let author of authors.data; trackBy: authors.trackBy">    id: {{ author.id }}<br/>    name: {{ author.attributes.name }}<br/>    birth date: {{ author.attributes.date_of_birth | date }}</p>

Collection sort

Example:name is a authors attribute, and makes a query like/authors?sort=name,job_title

letauthors=authorsService.all({sort:['name','job_title']});

Collection filtering

Filter resources withattribute: value values. Filters are used as 'exact match' (only resources with attribute value same as value are returned).value can also be an array, then only objects with sameattribute value as one ofvalues array elements are returned.

authorsService.all({remotefilter:{country:'Argentina'}});

Get a single resource

From this point, you only see important code for this library. For a full example, clone and see demo directory.

authorsService.get('some_author_id');

More options? Include resources when you fetch data (or save!)

authorsService.get('some_author_id',{include:['books','photos']});

TIP: these parameters work withall() andsave() methods too.

Add a new resource

letauthor=this.authorsService.new();author.attributes.name='Pablo Reyes';author.attributes.date_of_birth='2030-12-10';author.save();

Need you more control and options?

letauthor=this.authorsService.new();author.attributes.name='Pablo Reyes';author.attributes.date_of_birth='2030-12-10';// some_book is an another resource like authorletsome_book=booksService.get(1);author.addRelationship(some_book);// some_publisher is a polymorphic resource named company on this caseletsome_publisher=publishersService.get(1);author.addRelationship(some_publisher,'company');// wow, now we need detach a relationshipauthor.removeRelationship('books','book_id');// this library can send include information to server, for atomicityauthor.save({include:['book']});// mmmm, if I need get related resources? For example, books related with author 1letrelatedbooks=booksService.all({beforepath:'authors/1'});// you need get a cached object? you can force ttl on getletauthor$=authorsService.get('some_author_id',{ttl:60}// ttl on seconds (default: 0));

Update a resource

authorsService.get('some_author_id').suscribe(author=>{this.author.attributes.name+='New Name';this.author.save(success=>{console.log('author saved!');});});

Pagination

authorsService.all({// get page 2 of authors collection, with a limit per page of 50page:{number:2;size:50}});

Collection page

  • number: number of the current page
  • size: size of resources per page (it's sended to server by url)
  • information returned from server (check if is avaible)total_resources: total of avaible resources on server resources_per_page: total of resources returned per page requested

Local Demo App

You can runJsonApi Demo App locally following the next steps:

git clone git@github.com:reyesoft/ngx-jsonapi.gitcd ngx-jsonapiyarnyarn start

We use as backendJson Api Playground.

Colaborate

CheckEnvironment development file 😉.

About

JSON API client library for Angular 5+ 👌 :: Production Ready 🚀

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors17


[8]ページ先頭

©2009-2025 Movatter.jp