AngularJS component designed to configure Api Endpoints with the same interface as a $resource yet allow for extended configuration by providing ApiRequests objects that can be modified with chained methods to define the headers to Iceberg.
$ yarn add @ovh-ux/ng-ovh-api-wrappers
// index.js
import angular from 'angular';
import ngOvhApiWrappers from '@ovh-ux/ng-ovh-api-wrappers';
angular.module('myApp', [ngOvhApiWrappers]);
// service.js
function getElements() {
return iceberg('/api/elements')
.query()
.execute({ ...queryParams }, resetCache)
.$promise;
}
Response is formatted like
{
data // data returned by the API
headers // response headers returned
status // call status
}
// service.js
function getAggregatedElements() {
return iceberg('/api/elements')
.query()
.expand(aggregationMode)
.execute();
}
aggregationMode
can be one of those values:
CachedObjectList-Cursor
CachedObjectList-Pages
// service.js
function getPaginatedElements() {
return iceberg('/api/elements')
.query()
.expand('CachedObjectList-Pages')
.limit(10) // get only 10 results by page
.offset(2) // get results for page 2
.execute();
}
// service.js
function getFilteredElements() {
return iceberg('/api/elements')
.query()
.expand('CachedObjectList-Pages')
.addFilter('name', 'like', 'iceberg') // get element with name matching iceberg
.execute();
}
// service.js
function getFilteredElements() {
return iceberg('/api/elements')
.query()
.expand('CachedObjectList-Pages')
.addFilter('name', 'like', ['iceberg', 'awesome']) // get element with name matching iceberg and awesome
.execute();
}
// service.js
function getSortedElements() {
return iceberg('/api/elements')
.query()
.expand('CachedObjectList-Pages')
.sort('name') // sort elements by ascending names
.execute();
}
// service.js
function getAggregatedElements() {
return iceberg('/api/elements')
.query()
.expand('CachedObjectList-Pages')
.sort('name', 'desc') // sort elements by descending names
.execute();
}
$ yarn test
- ovh-api-services - Contains all AngularJS $resource for OVHcloud API
Always feel free to help out! Whether it's filing bugs and feature requests or working on some of the open issues, our contributing guide will help get you started.
BSD-3-Clause © OVH SAS