Skip to content

Instantly share code, notes, and snippets.

@samselikoff
Last active June 28, 2017 00:49
Show Gist options
  • Save samselikoff/1bb87ac9244ead553045be884c591345 to your computer and use it in GitHub Desktop.
Save samselikoff/1bb87ac9244ead553045be884c591345 to your computer and use it in GitHub Desktop.
Ember Data async false linkage
import Ember from 'ember';
export default Ember.Controller.extend({
});
export default function() {
this.get('authors/:id');
this.get('authors/:id', function(schema, request) {
let author = schema.authors.find(request.params.id);
let json = this.serialize(author);
delete json.data.relationships.books.data;
json.data.relationships.books.links = {
related: {
href: '/foo/bar',
}
};
return json;
});
};
export default function(server) {
let author = server.create('author', {
name: 'John Steinbeck'
});
author.createBook({
title: 'Of Mice and Men'
});
author.createBook({
title: 'The Grapes of Wrath'
});
author.createBook({
title: 'Travels with Charley'
});
}
import { JSONAPISerializer } from 'ember-cli-mirage';
export default JSONAPISerializer.extend({
});
import DS from 'ember-data';
export default DS.Model.extend({
name: DS.attr(),
books: DS.hasMany({ async: false })
});
import Model from "ember-data/model";
import attr from "ember-data/attr";
import { belongsTo, hasMany } from "ember-data/relationships";
export default Model.extend({
title: attr(),
});
import Ember from 'ember';
export default Ember.Route.extend({
model() {
return this.store.findRecord('author', 1);
/*return this.store.findRecord('author', 1, {
include: 'books'
});*/
},
afterModel(author) {
Ember.run.later(() => {
console.log('hm');
author.hasMany('books').load();
}, 2000);
}
});
body {
margin: 0;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 12pt;
}
h1 {
font-size: 12px;
font-weight: bold;
text-align: center;
text-shadow: none;
background: #2e4068;
color: white;
padding: 20px;
margin: 0;
text-transform: uppercase;
}
p {
font-weight: normal;
}
.pa4 {
padding: 20px;
}
hr {
border-top: none;
border-bottom: 1px solid #ddd;
}
<h1>Mirage boilerplate</h1>
<div class='pa4'>
<p><strong>{{model.name}}</strong>'s Books</p>
{{#each model.books as |book|}}
<hr />
<div>
<p><em>{{book.title}}</em></p>
</div>
{{/each}}
</div>
import { test } from 'qunit';
import moduleForAcceptance from '../../tests/helpers/module-for-acceptance';
moduleForAcceptance('Acceptance | Users');
test('I can see the users', function(assert) {
server.create('user', { name: 'Link' });
//visit('/');
andThen(function() {
assert.ok(true);
//assert.ok(find(':contains(Welcome Link!)').length);
});
});
import Ember from 'ember';
export default function destroyApp(application) {
Ember.run(application, 'destroy');
}
import { module } from 'qunit';
import startApp from '../helpers/start-app';
import destroyApp from '../helpers/destroy-app';
export default function(name, options = {}) {
module(name, {
beforeEach() {
this.application = startApp();
if (options.beforeEach) {
options.beforeEach.apply(this, arguments);
}
},
afterEach() {
if (options.afterEach) {
options.afterEach.apply(this, arguments);
}
destroyApp(this.application);
}
});
}
import Resolver from '../../resolver';
import config from '../../config/environment';
const resolver = Resolver.create();
resolver.namespace = {
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix
};
export default resolver;
import Ember from 'ember';
import Application from '../../app';
import config from '../../config/environment';
export default function startApp(attrs) {
let application;
let attributes = Ember.merge({rootElement: "#test-root"}, config.APP);
attributes = Ember.merge(attributes, attrs); // use defaults, but you can override;
Ember.run(() => {
application = Application.create(attributes);
application.setupForTesting();
application.injectTestHelpers();
});
return application;
}
import resolver from './helpers/resolver';
import {
setResolver
} from 'ember-qunit';
setResolver(resolver);
{
"version": "0.10.7",
"ENV": {
"ember-cli-mirage": {
"enabled": true
}
},
"EmberENV": {
"FEATURES": {
"ds-finder-include": true
}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.10.0",
"ember-data": "2.10.0",
"ember-template-compiler": "2.10.0",
"ember-testing": "2.10.0"
},
"addons": {
"ember-cli-mirage": "0.3.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment