Last active
February 12, 2026 18:33
-
-
Save sglanzer-fire/f51b548e37252344a6c0ddf639fe4e96 to your computer and use it in GitHub Desktop.
JSONAPISerializer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import JSONAPIAdapter from 'ember-data/adapters/json-api'; | |
| export default JSONAPIAdapter.extend({ | |
| // Application specific overrides go here | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import JSONAPIAdapter from 'ember-data/adapters/json-api'; | |
| export default JSONAPIAdapter.extend({ | |
| // Application specific overrides go here | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| actions: { | |
| save(name) { | |
| this.store.createRecord('user', { | |
| name | |
| }).save() | |
| } | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export default function() { | |
| this.get('/users', (schema) => { | |
| return { | |
| data: schema.db.users.map(attrs => ( | |
| { type: 'users', id: attrs.id, attributes: attrs } | |
| )) | |
| } | |
| }); | |
| this.post('/users', (schema, request) => { | |
| const params = JSON.parse(request.requestBody); | |
| alert(JSON.stringify(params)) | |
| return schema.db.users.insert(params); | |
| }) | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Mirage from 'ember-cli-mirage'; | |
| export default Mirage.Factory.extend({ | |
| name: function(i) { | |
| return 'User ' + i | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export default function(server) { | |
| window.server = server; | |
| // added this line because global wasn't created otherwise. | |
| server.createList('user', 10); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Model from "ember-data/model"; | |
| import attr from "ember-data/attr"; | |
| import { belongsTo, hasMany } from "ember-data/relationships"; | |
| export default DS.Model.extend({ | |
| name: attr('string') | |
| }); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Ember from 'ember'; | |
| export default Ember.Route.extend({ | |
| model() { | |
| return this.store.findAll('user'); | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import DS from 'ember-data'; | |
| export default DS.JSONAPISerializer.extend(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import DS from 'ember-data'; | |
| export default DS.JSONAPISerializer.extend({ | |
| serialize(snapshot, options) { | |
| let json = this._super(...arguments); | |
| // delete json.data.attributes.amount; | |
| return json; | |
| }, | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "0.10.4", | |
| "EmberENV": { | |
| "FEATURES": {} | |
| }, | |
| "ENV": { | |
| "ember-cli-mirage": { | |
| "enabled": true, | |
| "directory": "app/mirage" | |
| } | |
| }, | |
| "options": { | |
| "use_pods": false, | |
| "enable-testing": false | |
| }, | |
| "dependencies": { | |
| "jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
| "ember": "2.6.2", | |
| "ember-data": "2.6.2", | |
| "ember-template-compiler": "2.6.2" | |
| }, | |
| "addons": { | |
| "ember-cli-mirage": "0.2.0" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment