json_api 1.0.0 json_api: ^1.0.0 copied to clipboard
JSON:API Client for Flutter, Web and VM. Supports JSON:API v1.0 (http://jsonapi.org)
Other JSON:API packages: Document | Server
JSON:API Client #
JSON:API is a specification for building APIs in JSON. This library implements a Client (VM, Flutter, Web).
Features #
- Fetching single resources, resource collections, related resources
- Fetching/updating relationships
- Creating/updating/deleting resources
- Collection pagination
- Compound documents
- Asynchronous processing
Usage #
Creating a client instance #
JSON:API Client uses the Dart's native HttpClient. Depending on the platform,
you may want to use either the one which comes from dart:io
or the BrowserClient
.
In the VM/Flutter you don't need to provide any dependencies:
import 'package:json_api/json_api.dart';
final client = JsonApiClient();
In a browser use the BrowserClient
:
import 'package:json_api/json_api.dart';
import 'package:http/browser_json_api.dart';
final client = JsonApiClient(factory: () => BrowserClient());
Making requests #
The client provides a set of methods to manipulate resources and relationships.
- Fetching
fetchCollection
- resource collection, either primary or relatedfetchResource
- a single resource, either primary or relatedfetchRelationship
- a generic relationship (either to-one, to-many or even incomplete)fetchToOne
- a to-one relationshipfetchToMany
- a to-many relationship
- Manipulating resources
createResource
- creates a new primary resourceupdateResource
- updates the existing resource by its type and iddeleteResource
- deletes the existing resource
- Manipulating relationships
replaceToOne
- replaces the existing to-one relationship with a new resource identifierdeleteToOne
- deletes the existing to-one relationship by setting the resource identifier to nullreplaceToMany
- replaces the existing to-many relationship with the given set of resource identifiersaddToMany
- adds the given identifiers to the existing to-many relationship
These methods accept the target URI and the object to update (except for fetch and delete requests).
You can also pass an optional map of HTTP headers e.g. for authentication. The return value
is Response
object bearing the HTTP response status and headers and the JSON:API
document with the primary data according to the type of the request.
Here's a collection fetching example:
import 'package:json_api/json_api.dart';
void main() async {
final client = JsonApiClient();
final companiesUri = Uri.parse('http://localhost:8080/companies');
final response = await client.fetchCollection(companiesUri);
print('Status: ${response.status}');
print('Headers: ${response.headers}');
print('The collection page size is ${response.data.collection.length}');
final resource = response.data.collection.first.toResource();
print('The first element is ${resource}');
print('Attributes:');
resource.attributes.forEach((k, v) => print('$k=$v'));
print('Relationships:');
resource.toOne.forEach((k, v) => print('$k=$v'));
resource.toMany.forEach((k, v) => print('$k=$v'));
}
For more usage examples refer to the functional tests.