3.4.2 • Published 4 years ago

@meanie/angular-api v3.4.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

@meanie/angular-api

npm version node dependencies github issues codacy

An Angular service for interaction with API's

Meanie

Installation

You can install this package using yarn or npm:

#yarn
yarn add @meanie/angular-api

#npm
npm install @meanie/angular-api --save

Include the script node_modules/@meanie/angular-api/release/angular-api.js in your build process, or add it via a <script> tag to your index.html:

<script src="node_modules/@meanie/angular-api/release/angular-api.js"></script>

Add Api.Service as a dependency for your app.

Configuration

angular.module('App', [
  'Api.Service'
]).config(function($apiProvider, App) {

  //Set API wide base URL
  //Defaults to /
  $apiProvider.setBaseUrl(App.api.baseUrl);

  //Set the default actions for each endpoint, or empty for none
  //Defaults as given here:
  $apiProvider.setDefaultActions({
    query: {
      method: 'GET',
      isArray: true,
      isModel: true
    },
    get: {
      method: 'GET',
      isModel: true
    },
    create: {
      method: 'POST'
    },
    update: {
      method: 'PUT'
    },
    delete: {
      method: 'DELETE'
    }
  });

  //Set the default params for each endpoint, or empty for none
  //Defaults as given here:
  $apiProvider.setDefaultParams({
    id: '@id'
  });

  //Set the default model to use for each endpoint
  //Defaults to none
  $apiProvider.setDefaultModel('$baseModel');

  //Strip trailing slashes behavior
  //Defaults to true
  $apiProvider.stripTrailingSlashes(false);
});

Registering endpoints

Register new endpoints in the config function of your modules, for example:

angular.module('App.Users').config(function($apiProvider) {
  $apiProvider.registerEndpoint('users', {
    model: 'User',
    actions: {
      me: {
        url: 'me/',
        isModel: true
      },
      create: {
        method: 'POST'
      },
      update: {
        method: 'PUT'
      },
      exists: {
        method: 'POST',
        url: 'exists/'
      }
    }
  });
});

Endpoint configuration

Available options for endpoint configuration are:

baseUrl string

The base URL defaults to the API base URL, but you can specify a different base URL for a specific endpoint, for example if connecting to a 3rd party URL.

url string

The url part of an endpoint defaults to its name, but you can override it by specifying a custom url.

model string

Name of the service to use for JSON to model conversion.

actions object

A hash of actions with the action name/accessor as keys and the action config as values.

Action configuration

Action specific configuration will override global endpoint configuration. Available action configuration options are listed below. Any additional/unknown configuration options that you supply will be passed on to the $http service when doing the actual request.

url string

The url part of an action defaults to /, but you can specify a different URL. It will be concatenated to the endpoint URL.

method string

Specify the action HTTP request method, defaults to GET.

model string

Name of the service to use for JSON to model conversion.

isArray bool

Specify whether the action expects an array as a response, defaults to false.

isModel bool

Specify whether the received JSON data should be converted to a model, defaults to false. When isArray is true, it will convert each object in the array to a model.

successInterceptor function

Specify a custom success response interceptor for the action.

errorInterceptor function

Specify a custom error response interceptor for the action.

Define custom models

You can create custom models and expose API actions from within them. It is recommended to use the supplied $baseModel service as a base for your own models, as it comes with handy to/from JSON converters.

/**
 * Module definition and dependencies
 */
angular.module('App.User.Model', [
  'Api.Service',
  'BaseModel.Service'
])

/**
 * Model definition
 */
.factory('User', function($api, $baseModel) {

  //Default data
  let defaultData = {
    name: 'Guest'
  };

  /**
   * Constructor
   */
  function User(data) {
    $baseModel.call(this, data);
  }

  /**
   * Extend prototype
   */
  angular.extend(User.prototype, $baseModel.prototype);

  /**
   * Save user
   */
  User.prototype.save = function(data) {

    //Extend instance data with optionally given extra data
    data = this.toJSON(data);

    //Determine method and call API
    let method = this.id ? 'update' : 'create';
    return $api.user[method](data).then(data => this.fromJSON(data));
  };

  //Return
  return User;
});

Usage

//The endpoints return promises which resolve into models
let users = $api.users.query(); //An array of UserModel instances

//You can also interact with the model and modify it before resolving
let user = $api.users.create({name: 'Meanie'}).then(user => {
  user.doSomething();
});

//Interact with exposed API actions through the model methods
let myUser = new User({
  name: 'Meanie'
});
myUser.save().then(user => {
  myUser === user; //User and myUser are the same class instance
});

Issues & feature requests

Please report any bugs, issues, suggestions and feature requests in the @meanie/angular-api issue tracker.

Contributing

Pull requests are welcome! If you would like to contribute to Meanie, please check out the Meanie contributing guidelines.

Sponsor

This package has been kindly sponsored by Hello Club, an all in one club and membership management solution complete with booking system, automated membership renewals, online payments and integrated access and light control. Check us out if you happen to belong to any kind of club or if you know someone who helps run a club!

License

(MIT License)

Copyright 2015-2020, Adam Reis

3.4.2

4 years ago

3.4.1

4 years ago

3.4.0

4 years ago

3.3.0

4 years ago

3.2.0

4 years ago

3.1.2

5 years ago

3.1.1

5 years ago

3.1.0

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

2.1.0

7 years ago

2.0.0

7 years ago