Skip to content

Instantly share code, notes, and snippets.

@baroquon
Forked from samselikoff/mirage.config.js
Created September 6, 2017 18:59
Show Gist options
  • Save baroquon/6db713dbbbd30b32b7b1c79c354a374c to your computer and use it in GitHub Desktop.
Save baroquon/6db713dbbbd30b32b7b1c79c354a374c to your computer and use it in GitHub Desktop.
Mirage dev boilerplate
import Ember from 'ember';
export default Ember.Controller.extend({
});
export default function() {
//window.server = this;
this.get('users/:id');
this.get('projects/:id');
};
import { Factory, faker } from 'ember-cli-mirage';
export default Factory.extend({
title() {
return faker.commerce.productName();
}
});
import { Factory, faker } from 'ember-cli-mirage';
export default Factory.extend({
title() {
return faker.commerce.productName();
}
});
import { Factory, faker } from 'ember-cli-mirage';
export default Factory.extend({
name() {
return faker.name.findName();
}
});
import { Model, hasMany } from 'ember-cli-mirage';
export default Model.extend({
rings: hasMany(),
});
import { Model, hasMany } from 'ember-cli-mirage';
export default Model.extend({
projects: hasMany(),
});
import { Model } from 'ember-cli-mirage';
export default Model.extend({
});
export default function(server) {
// added this line because global wasn't created otherwise.
server.create('user');
const projects = server.createList('project', 10);
const rings = server.createList('ring', 10);
projects.forEach((project, ind) => {
project.rings = [ rings[ind] ];
project.save();
});
}
import { JSONAPISerializer } from 'ember-cli-mirage';
export default JSONAPISerializer.extend({
});
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('string'),
rings: hasMany('ring')
});
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('string'),
projects: hasMany('project')
});
import DS from 'ember-data';
export default DS.Model.extend({
name: DS.attr()
});
import Ember from 'ember';
export default Ember.Route.extend({
model() {
return Ember.RSVP.hash({
user: this.store.findRecord('user', 1),
project: this.store.findRecord('project', 1,{include: 'rings'})
});
},
setupController(controller, model){
this._super(...arguments);
controller.set('ring', this.store.peekRecord('ring', 1));
}
});
import Ember from 'ember';
export default Ember.Route.extend({
model() {
}
});
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;
}
<h1>Mirage boilerplate</h1>
<div class='pa4'>
<p>Welcome <strong>{{model.user.name}}</strong></p>
<br>
<h3> Getting Rings from projects</h3>
{{model.project.title}}
<ul>
{{#each model.project.rings as |ring|}}
<li>{{ring.title}}</li>
{{/each}}
</ul>
<h3> Getting Projects from rings</h3>
{{ring.title}}
<ul>
{{#each ring.projects as |p|}}
<li>{{p.title}}</li>
{{/each}}
</ul>
</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.4",
"ENV": {
"ember-cli-mirage": {
"enabled": true
}
},
"EmberENV": {
"FEATURES": {
"ds-finder-include": true
}
},
"options": {
"use_pods": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.4.4/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.4.3/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.4.4/ember-template-compiler.js"
},
"addons": {
"ember-cli-mirage": "0.2.5"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment