ember-ja-query

0.2.0 • Public • Published

ember-ja-query Download count all time CircleCI npm version Ember Observer Score

JaQuery is a query interface around a JSON-API (JA) object or array response that provides conveniences in tests. For example, this is useful if you need to work with (e.g. filter, find) canned JA responses via Pretender and ember-cli-pretender.

It will not be included in non-test environment builds.

ember install ember-ja-query

Usage

Wrap your response with JaQuery:

import JaQuery from 'my-app/tests/ember-ja-query';
import objectResponse from '...';
import arrayResponse from '...';
 
let user = new JaQuery(objectResponse);
let users = new JaQuery(arrayResponse);

You can wrap a JA response for both a single item or many items. Once wrapped, you can query the response like you would any Ember Object:

// top level keys
wrapped.get('id') // "1";
wrapped.get('type') // "user";
 
// attributes
wrapped.get('firstName') // "Ricky";
 
// relationships
wrapped.get('job') // {id: "1", type: "jobs"};
 
// included relationships
wrapped.get('job.name') // "ceo"

If wrapping an array response, supported array methods will "just work", but note that these will return the JA response and not the JaQuery child object:

let ceo = wrapped.filter((user) => user.get('job.id') === '1');
let ceo = wrapped.filterBy('id', '1');
let ceo = wrapped.findBy('job.name', 'ceo');
let employees = wrapped.rejectBy('id', '1');

You can opt-out of this behaviour by setting shouldUnwrapArrayMethods to false. Array methods will then return the result wrapped in a JaQuery object.

Using with ember-cli-pretender in an acceptance test:

import { test } from 'qunit';
import Pretender from 'Pretender';
import moduleForAcceptance from 'my-app/tests/helpers/module-for-acceptance';
import JaQuery from 'my-app/tests/ember-ja-query';
import usersResponse from '...';
 
moduleForAcceptance('Acceptance | some/route', {
  beforeEach() {
    this.server = new Pretender(function() {
      this.get(users, function({ queryParams }) {
        let { firstName } = queryParams;
        let data = new JaQuery(usersResponse).filterBy('firstName', firstName);
 
        return [200, { 'Content-Type': 'application/json' }, JSON.stringify(data));
      });
    })
  },
  afterEach() {
    this.server.shutdown();
  }
});
 
test('it should ...', function(assert) {
  visit('/users');
 
  andThen(() => assert.ok(...);
});

API

Supported array methods

In addition to the above, if you wrap an array response, these array methods are available to use on the JaQuery object:

  • filter
  • filterBy
  • find
  • findBy
  • reject
  • rejectBy

shouldUnwrapArrayMethods

Defaults to true.

If true, array methods will unwrap the response (returning the actual JA JSON response(s) that come back from that array method).

wrapped.filter((user) => user.get('job.id') === 1);
 
// returns:
{
  "data": [
    {
      "id": "1",
      "type": "event",
      "attributes": {
        ...
      },
      "relationships": {
        ...
      }
    }
  ]
}

Set to false prior to calling an array method to opt-out of this and instead return the wrapped child object:

wrapped.set('shouldUnwrapArrayMethods', false);
let user = wrapped.findBy('id', '1'); // Class
user.get('job.name'); // "ceo"

⬆️ back to top

response

Alias for the original JA response.

⬆️ back to top

data

Alias for the data key on the JA response.

⬆️ back to top

included

Alias for the included key on the JA response.

⬆️ back to top

links

Alias for the links key on the JA response.

⬆️ back to top

attributes

Alias for the attributes key on the JA response.

⬆️ back to top

relationships

Alias for the relationships key on the JA response.

⬆️ back to top

isObject

Returns true if the wrapped response is an object response.

⬆️ back to top

isArray

Returns true if the wrapped response is an array response.

⬆️ back to top

hasIncluded

Returns true if the wrapped response has included relationships..

⬆️ back to top

hasRelationships

Returns true if the wrapped response has relationships.

⬆️ back to top

get

Get a property from a single object response.

let wrapped = new JaQuery(response);
wrapped.get('firstName'); // "Jim Bob"

⬆️ back to top

unwrap

Returns the original JA response. Optionally, pass in a function and the JA response will be wrapped with it.

let wrapped = new JaQuery(response);
let log = (x) => { console.log(x); };
wrapped.unwrap(log);

⬆️ back to top

Installation

  • git clone <repository-url> this repository
  • cd ember-ja-query
  • npm install
  • bower install

Running

Running Tests

  • npm test (Runs ember try:each to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Building

  • ember build

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

Package Sidebar

Install

npm i ember-ja-query

Weekly Downloads

1

Version

0.2.0

License

MIT

Last publish

Collaborators

  • sugarpirate