ember-ja-query
v0.2.0
Published
JSON API response query interface
Downloads
4
Maintainers
Readme
ember-ja-query
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
- Properties
- Methods
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"
response
Alias for the original JA response.
data
Alias for the data
key on the JA response.
included
Alias for the included
key on the JA response.
links
Alias for the links
key on the JA response.
attributes
Alias for the attributes
key on the JA response.
relationships
Alias for the relationships
key on the JA response.
isObject
Returns true
if the wrapped response is an object response.
isArray
Returns true
if the wrapped response is an array response.
hasIncluded
Returns true
if the wrapped response has included relationships..
hasRelationships
Returns true
if the wrapped response has relationships.
get
Get a property from a single object response.
let wrapped = new JaQuery(response);
wrapped.get('firstName'); // "Jim Bob"
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);
Installation
git clone <repository-url>
this repositorycd ember-ja-query
npm install
bower install
Running
ember serve
- Visit your app at http://localhost:4200.
Running Tests
npm test
(Runsember 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/.