1.1.1 • Published 5 years ago

ember-service-methods v1.1.1

Weekly downloads
111
License
MIT
Repository
github
Last release
5 years ago

ember-service-methods

ember-service-methods is an addon that formalizes a pattern that I've used in several larger Ember applications. Some user interactions are inherently complicated and have a lot of business logic around them. These interactions can usually be described in simple terms. For example "Send the invoice to the email given". Using this addon, this interaction could be represented by a service method:

import { get } from '@ember/object';
import method from 'ember-service-methods';

export default method(function (invoice, { to, subject }) {
  return fetch(`/invoices/${get(invoice, 'id')}/email`, {
    method: 'POST',
    data: {
      subject
    }
  });
});
import Route from '@ember/routing/route';
import { inject as method } from 'ember-service-methods';

export default Route.extend({
  emailInvoice: method(),

  actions: {
    sendEmail(to, subject) {
      return this.emailInvoice(this.modelFor('invoice'), {
        to,
        subject
      });
    }
  }
});

This may seem overly complicated to do this simple request. I feel that this pattern works best with testing. Mocking out full API responses to actions can be complicated an error prone. With this pattern along with the built-in test helpers, these methods can be stubbed out for simpler implementations.

This is an implementation of https://github.com/emberjs/rfcs/pull/98

Installation

  • git clone https://github.com/tim-evans/ember-service-methods.git
  • cd ember-service-methods

Linting

  • npm run lint:js
  • npm run lint:js -- --fix

Running tests

  • ember test – Runs the test suite on the current Ember version
  • ember test --server – Runs the test suite in "watch mode"
  • ember try:each – Runs the test suite against multiple Ember versions

Running the dummy application

For more information on using ember-cli, visit https://ember-cli.com/.

License

This project is licensed under the MIT License.

1.1.1

5 years ago

1.1.0

6 years ago

1.0.0

8 years ago

0.1.2

8 years ago

0.1.1

9 years ago

0.1.0

9 years ago