diff --git a/README.md b/README.md index 8b0239abafad720515789b060861b26462e111ce..4da211bfd01aae1ba7de4f58461ab970dfd3f769 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ It also guide you to set up a JSON-API server on top of AWS API Gateway, Lambda It could also be seen as a starter for setting up Mirage, allowing the developper to build a full working application (using mock data) entirely running on the client. Once the development is over, the persistance can be delegated to an AWS API Gateway using a lambda function storing objects in DynamoDB. +Complete code is available at https://gitlab.ippon.fr/bpinel/ember-aws-ehipster + Installation ------------------------------------------------------------------------------ diff --git a/app/adapters/application.js b/app/adapters/application.js deleted file mode 100644 index 3fc80e2b39b1c86914154216e94e09f7670be152..0000000000000000000000000000000000000000 --- a/app/adapters/application.js +++ /dev/null @@ -1 +0,0 @@ -export { default } from 'ember-aws-ehipster/adapters/application'; diff --git a/blueprints/ember-aws-ehipster/index.js b/blueprints/ember-aws-ehipster/index.js index f651c312066de07e93944f387e0f49a281b32a5d..d5c32047068f9b97a7abf74a441b3d2b49c47ba2 100644 --- a/blueprints/ember-aws-ehipster/index.js +++ b/blueprints/ember-aws-ehipster/index.js @@ -51,7 +51,7 @@ module.exports = { '\t\t\t\tlabel: "col-form-label",\n\t\t\t\thelp: "small form-text text-danger",'+ '\n\t\t\t\thint: "small form-text text-muted",\n\t\t\t\tcheckbox: "checkbox",\n\t\t\t\tbutton: "btn btn-default",'+ '\n\t\t\t\tsubmit: "btn btn-primary",\n\t\t\t\tloading: "loading",\n\t\t\t\tvalid: "is-valid",'+ - '\n\t\t\t\terror: "is-invalid"\n\t\t\t}\n\t\t},\n'; + '\n\t\t\t\terror: "is-invalid"\n\t\t\t}\n\t\t},\n\t\tgatewayURL: "",\n'; addLineToFile(this, configPath, /let ENV = {/, validatedFormConfig); // Add import of ember_aws_ehipster.css to apps.css diff --git a/addon/adapters/application.js b/blueprints/entity-factory/files/__root__/adapters/__name__.js similarity index 63% rename from addon/adapters/application.js rename to blueprints/entity-factory/files/__root__/adapters/__name__.js index 098a237ce4a39b17a22d1d11d789599c6d660faf..afc48bac4aa9a9536d7106f19e09910844edad76 100644 --- a/addon/adapters/application.js +++ b/blueprints/entity-factory/files/__root__/adapters/__name__.js @@ -1,7 +1,9 @@ import DS from 'ember-data'; +import config from '../config/environment'; export default DS.JSONAPIAdapter.extend({ headers: { "Content-Type": "application/json; charset=utf-8" - } -}); + }, + host: config.gatewayURL +}); \ No newline at end of file diff --git a/jdl/jhipster-jdl.jh b/jdl/jhipster-jdl.jh new file mode 100644 index 0000000000000000000000000000000000000000..a7bfd9b8dafaf8dd2007415345df83fed120fb37 --- /dev/null +++ b/jdl/jhipster-jdl.jh @@ -0,0 +1,31 @@ +entity User { + login String required minlength(4), + passwordHash String required minlength(8), + firstName String, + lastName String, + email String, + imageUrl String, + activated Boolean, + createdBy String, + createdDate LocalDate, + lastModifiedBy String, + lastModifiedDate Instant +} + +entity Authority { + name String required +} + +entity Todo { + title String required, + completed Boolean +} + +relationship ManyToMany { + User{user(login)} to Authority{authority(name)} +} + +relationship OneToMany { + User{user(login)} to Todo{todo} +} + diff --git a/jdl/user.jh b/jdl/user.jh new file mode 100644 index 0000000000000000000000000000000000000000..aa93534bb406bb95f5a5896f784ed49f9e0a2dfe --- /dev/null +++ b/jdl/user.jh @@ -0,0 +1,23 @@ +entity User { + login String required, + passwordHash String required minlength(8), + firstName String, + lastName String, + email String, + imageUrl String, + activated Boolean, + createdBy String, + createdDate LocalDate, + lastModifiedBy String, + lastModifiedDate Instant +} + +entity Authority { + name String required +} + +relationship ManyToMany { + User{user(id)} to Authority{authorityName} +} + + diff --git a/mirage/scenarios/default.js b/mirage/scenarios/default.js index 1b5dd13ef9f678a10b2ff495eaf699106231adb4..c0ed64285b91bb4bcb20cdaebd060b2dbc762948 100644 --- a/mirage/scenarios/default.js +++ b/mirage/scenarios/default.js @@ -1,2 +1,3 @@ export default function(server) { + } diff --git a/package.json b/package.json index 0c653bcbc99610ad2c64e0ba5316d41ce86e80d4..a42cb1464933c5261cfa270123a4fc03ab46c737 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ember-aws-ehipster", - "version": "0.3.26", + "version": "0.4.3", "description": "Attempt to build a complete web application using serverless architecture on AWS", "keywords": [ "ember-addon", diff --git a/tests/dummy/app/components/todo-item.js b/tests/dummy/app/components/todo-item.js new file mode 100644 index 0000000000000000000000000000000000000000..b5643e17a14788612e82e9b5644aa90ec69b17d5 --- /dev/null +++ b/tests/dummy/app/components/todo-item.js @@ -0,0 +1,49 @@ +import Ember from 'ember'; + +export default Ember.Component.extend({ + store: Ember.inject.service(), + tagName: 'li', + editing: false, + classNameBindings: ['todo.completed', 'editing'], + + actions: { + startEditing() { + this.get('onStartEdit')(); + this.set('editing', true); + Ember.run.scheduleOnce('afterRender', this, 'focusInput'); + }, + + doneEditing(todoTitle) { + if (!this.get('editing')) { return; } + if (Ember.isBlank(todoTitle)) { + this.send('removeTodo'); + } else { + this.set('todo.title', todoTitle.trim()); + this.set('editing', false); + this.get('onEndEdit')(); + this.get('todo').save(); + } + }, + + handleKeydown(e) { + if (e.keyCode === 13) { + e.target.blur(); + } else if (e.keyCode === 27) { + this.set('editing', false); + } + }, + + toggleCompleted(e) { + let todo = this.get('todo'); + Ember.set(todo, 'completed', e.target.checked); + todo.save(); + }, + removeTodo() { + this.get('store').deleteRecord(this.get('todo')); + } + }, + + focusInput() { + this.element.querySelector('input.edit').focus(); + } +}); diff --git a/tests/dummy/app/components/todo-list.js b/tests/dummy/app/components/todo-list.js new file mode 100644 index 0000000000000000000000000000000000000000..fb2fc083f7dccbfd66bbdb56e261816c95bd3bf7 --- /dev/null +++ b/tests/dummy/app/components/todo-list.js @@ -0,0 +1,27 @@ +import Ember from 'ember'; + +export default Ember.Component.extend({ + store: Ember.inject.service(), + tagName: 'section', + elementId: 'main', + canToggle: true, + allCompleted: Ember.computed('todos.@each.completed', function () { + return this.get('todos').isEvery('completed'); + }), + + actions: { + enableToggle() { + this.set('canToggle', true); + }, + + disableToggle() { + this.set('canToggle', false); + }, + + toggleAll() { + let allCompleted = this.get('allCompleted'); + this.get('todos').forEach(todo => Ember.set(todo, 'completed', !allCompleted)); + this.get('store').save(); + } + } +}); diff --git a/tests/dummy/app/controllers/active.js b/tests/dummy/app/controllers/active.js new file mode 100644 index 0000000000000000000000000000000000000000..4d148bd8f25a1778852f480e9d110d14a704e334 --- /dev/null +++ b/tests/dummy/app/controllers/active.js @@ -0,0 +1,6 @@ +import Controller from '@ember/controller'; +import { computed } from '@ember/object'; + +export default Controller.extend({ + todos: computed.filterBy('model', 'completed', false) +}); diff --git a/tests/dummy/app/controllers/application.js b/tests/dummy/app/controllers/application.js new file mode 100644 index 0000000000000000000000000000000000000000..d31b99ee70ca6a81ca0ac74c9af014608d6d09dc --- /dev/null +++ b/tests/dummy/app/controllers/application.js @@ -0,0 +1,20 @@ +import Controller from '@ember/controller'; +import { computed } from '@ember/object'; +import { isBlank } from '@ember/utils'; + +export default Controller.extend({ + remaining: computed.filterBy('model', 'completed', false), + completed: computed.filterBy('model', 'completed'), + actions: { + createTodo(e) { + if (e.keyCode === 13 && !isBlank(e.target.value)) { + let newEntity = this.store.createRecord('todo',{ title: e.target.value.trim(), completed: false }); + newEntity.save().then(() => { e.target.value = ''; }); + } + }, + + clearCompleted() { + this.get('completed').forEach((record) => record.destroyRecord()); + } + } +}); diff --git a/tests/dummy/app/controllers/completed.js b/tests/dummy/app/controllers/completed.js new file mode 100644 index 0000000000000000000000000000000000000000..a8d9933b3b3f8068dc74b4d776c19b2c95ce66ff --- /dev/null +++ b/tests/dummy/app/controllers/completed.js @@ -0,0 +1,6 @@ +import Controller from '@ember/controller'; +import { computed } from '@ember/object'; + +export default Controller.extend({ + todos: computed.filterBy('model', 'completed', true) +}); diff --git a/tests/dummy/app/controllers/entity-factory.js b/tests/dummy/app/controllers/entity-factory.js new file mode 100644 index 0000000000000000000000000000000000000000..12960fb2d7003a3d34018d0b5a7d9149baac6807 --- /dev/null +++ b/tests/dummy/app/controllers/entity-factory.js @@ -0,0 +1,16 @@ +import Controller from '@ember/controller'; + +export default Controller.extend({ + entities: [ +'todo', +'authority', +'user', + ], + entity: '', + actions: { + selectEntity(entity) { + this.set('entity', entity); + this.transitionToRoute('entity-factory.'+entity); + } + } +}); \ No newline at end of file diff --git a/tests/dummy/app/controllers/entity-factory/authority.js b/tests/dummy/app/controllers/entity-factory/authority.js new file mode 100644 index 0000000000000000000000000000000000000000..0a1a3ea4e976da11c8cf12d38f25b5a73e153c84 --- /dev/null +++ b/tests/dummy/app/controllers/entity-factory/authority.js @@ -0,0 +1,51 @@ +import Controller from '@ember/controller'; +import { computed } from '@ember/object'; +import { A } from '@ember/array'; +import EmberObject from '@ember/object'; +import AuthorityValidations from "../../validations/authority"; +import { task } from "ember-concurrency"; + +export default Controller.extend({ + isAddingEntry: false, + newEntry: EmberObject.create({name: '',users: []}), + + AuthorityValidations, + + userList: computed('users', function() { + this.store.findAll('user'); + }), + + name: null, + users: null, +authorityTableColumns: computed(function() { + var col = A([ + EmberObject.create({ + propertyName: "name", + title: "name" + })]); + col.pushObject({ + title: 'Delete', + component: 'delete-row' + }); + return col; }), +authorityTableContent: computed(function() { + return this.get('authorities'); +}), + + actions: { + submit() { + console.log("action submit"); + }, + deleteRecord (record) { + console.log('record is '+ record); + record.destroyRecord(); + } + }, + submitEntry: task(function*(model) { + yield model.save(); + let newEntity = this.store.createRecord('authority',yield model.get('data')); + yield newEntity.save(); + console.log("new entry of id "+newEntity.get('id')+" created"); + this.set('addEntryModal', false); + }) +}); \ No newline at end of file diff --git a/tests/dummy/app/controllers/entity-factory/todo.js b/tests/dummy/app/controllers/entity-factory/todo.js new file mode 100644 index 0000000000000000000000000000000000000000..263aebf6f9a87b8d23df16c8e184acf201063da0 --- /dev/null +++ b/tests/dummy/app/controllers/entity-factory/todo.js @@ -0,0 +1,56 @@ +import Controller from '@ember/controller'; +import { computed } from '@ember/object'; +import { A } from '@ember/array'; +import EmberObject from '@ember/object'; +import TodoValidations from "../../validations/todo"; +import { task } from "ember-concurrency"; + +export default Controller.extend({ + isAddingEntry: false, + newEntry: EmberObject.create({title: '',completed: 'false',user: []}), + + TodoValidations, + + userList: computed('user', function() { + this.store.findAll('user'); + }), + + title: null, + completed: null, + user: null, +todoTableColumns: computed(function() { + var col = A([ + EmberObject.create({ + propertyName: "title", + title: "title" + }), + EmberObject.create({ + propertyName: "completed", + title: "completed" + })]); + col.pushObject({ + title: 'Delete', + component: 'delete-row' + }); + return col; }), +todoTableContent: computed(function() { + return this.get('todos'); +}), + + actions: { + submit() { + console.log("action submit"); + }, + deleteRecord (record) { + console.log('record is '+ record); + record.destroyRecord(); + } + }, + submitEntry: task(function*(model) { + yield model.save(); + let newEntity = this.store.createRecord('todo',yield model.get('data')); + yield newEntity.save(); + console.log("new entry of id "+newEntity.get('id')+" created"); + this.set('addEntryModal', false); + }) +}); \ No newline at end of file diff --git a/tests/dummy/app/controllers/entity-factory/user.js b/tests/dummy/app/controllers/entity-factory/user.js new file mode 100644 index 0000000000000000000000000000000000000000..087d198ff35123d00534e0679e05f87ad60c7468 --- /dev/null +++ b/tests/dummy/app/controllers/entity-factory/user.js @@ -0,0 +1,105 @@ +import Controller from '@ember/controller'; +import { computed } from '@ember/object'; +import { A } from '@ember/array'; +import EmberObject from '@ember/object'; +import UserValidations from "../../validations/user"; +import { task } from "ember-concurrency"; + +export default Controller.extend({ + isAddingEntry: false, + newEntry: EmberObject.create({login: '',passwordHash: '',firstName: '',lastName: '',email: '',imageUrl: '',activated: 'false',createdBy: '',createdDate: new Date(),lastModifiedBy: '',lastModifiedDate: new Date(),authorities: [],todos: []}), + + UserValidations, + + authorityList: computed('authorities', function() { + this.store.findAll('authority'); + }), + todoList: computed('todos', function() { + this.store.findAll('todo'); + }), + + login: null, + passwordHash: null, + firstName: null, + lastName: null, + email: null, + imageUrl: null, + activated: null, + createdBy: null, + createdDate: null, + lastModifiedBy: null, + lastModifiedDate: null, + authorities: null, + todos: null, +userTableColumns: computed(function() { + var col = A([ + EmberObject.create({ + propertyName: "login", + title: "login" + }), + EmberObject.create({ + propertyName: "passwordHash", + title: "passwordHash" + }), + EmberObject.create({ + propertyName: "firstName", + title: "firstName" + }), + EmberObject.create({ + propertyName: "lastName", + title: "lastName" + }), + EmberObject.create({ + propertyName: "email", + title: "email" + }), + EmberObject.create({ + propertyName: "imageUrl", + title: "imageUrl" + }), + EmberObject.create({ + propertyName: "activated", + title: "activated" + }), + EmberObject.create({ + propertyName: "createdBy", + title: "createdBy" + }), + EmberObject.create({ + propertyName: "createdDate", + title: "createdDate" + }), + EmberObject.create({ + propertyName: "lastModifiedBy", + title: "lastModifiedBy" + }), + EmberObject.create({ + propertyName: "lastModifiedDate", + title: "lastModifiedDate" + })]); + col.pushObject({ + title: 'Delete', + component: 'delete-row' + }); + return col; }), +userTableContent: computed(function() { + return this.get('users'); +}), + + actions: { + submit() { + console.log("action submit"); + }, + deleteRecord (record) { + console.log('record is '+ record); + record.destroyRecord(); + } + }, + submitEntry: task(function*(model) { + yield model.save(); + let newEntity = this.store.createRecord('user',yield model.get('data')); + yield newEntity.save(); + console.log("new entry of id "+newEntity.get('id')+" created"); + this.set('addEntryModal', false); + }) +}); \ No newline at end of file diff --git a/tests/dummy/app/helpers/pluralize.js b/tests/dummy/app/helpers/pluralize.js new file mode 100644 index 0000000000000000000000000000000000000000..a4dd59c33fa1c52bae3d9e4f72dab56ad623d3a6 --- /dev/null +++ b/tests/dummy/app/helpers/pluralize.js @@ -0,0 +1,8 @@ +import Ember from 'ember'; +import { pluralize } from 'ember-inflector'; + +export function pluralizeHelper([singular, count]/*, hash*/) { + return count === 1 ? singular : pluralize(singular); +} + +export default Ember.Helper.helper(pluralizeHelper); \ No newline at end of file diff --git a/tests/dummy/app/models/authority.js b/tests/dummy/app/models/authority.js new file mode 100644 index 0000000000000000000000000000000000000000..70a5d90d0a03ea3060838327fcc05afdb5ae76f5 --- /dev/null +++ b/tests/dummy/app/models/authority.js @@ -0,0 +1,6 @@ +import DS from 'ember-data'; + +export default DS.Model.extend({ + name: DS.attr('string'), + users: DS.hasMany('user') +}); diff --git a/tests/dummy/app/models/todo.js b/tests/dummy/app/models/todo.js new file mode 100644 index 0000000000000000000000000000000000000000..d53c584ad07f25c0892ee319b7e7ba1ea3f68d32 --- /dev/null +++ b/tests/dummy/app/models/todo.js @@ -0,0 +1,7 @@ +import DS from 'ember-data'; + +export default DS.Model.extend({ + title: DS.attr('string'), + completed: DS.attr('boolean'), + user: DS.hasMany('user') +}); diff --git a/tests/dummy/app/models/user.js b/tests/dummy/app/models/user.js new file mode 100644 index 0000000000000000000000000000000000000000..f4f1abb60dd1e5f743c0a3720cc27bfdf08568bc --- /dev/null +++ b/tests/dummy/app/models/user.js @@ -0,0 +1,17 @@ +import DS from 'ember-data'; + +export default DS.Model.extend({ + login: DS.attr('string'), + passwordHash: DS.attr('string'), + firstName: DS.attr('string'), + lastName: DS.attr('string'), + email: DS.attr('string'), + imageUrl: DS.attr('string'), + activated: DS.attr('boolean'), + createdBy: DS.attr('string'), + createdDate: DS.attr('date'), + lastModifiedBy: DS.attr('string'), + lastModifiedDate: DS.attr('date'), + authorities: DS.hasMany('authority'), + todos: DS.hasMany('todo') +}); diff --git a/tests/dummy/app/router.js b/tests/dummy/app/router.js index 1552e4aea97b7e7a54705e9424b17961f2ee7c2a..81771fe7b428315c8831b062399f9ae7d70d0e8e 100644 --- a/tests/dummy/app/router.js +++ b/tests/dummy/app/router.js @@ -7,7 +7,13 @@ const Router = EmberRouter.extend({ }); Router.map(function() { - + this.route('entity-factory', function() { + this.route('todo'); + this.route('authority'); + this.route('user'); + }); + this.route('active'); + this.route('completed'); }); export default Router; diff --git a/tests/dummy/app/routes/application.js b/tests/dummy/app/routes/application.js new file mode 100644 index 0000000000000000000000000000000000000000..8ad4539c7844cb3e193b15134ba163dc872f9c96 --- /dev/null +++ b/tests/dummy/app/routes/application.js @@ -0,0 +1,7 @@ +import Route from '@ember/routing/route'; + +export default Route.extend({ + model() { + return this.store.findAll("todo"); + } +}); diff --git a/tests/dummy/app/routes/entity-factory/authority.js b/tests/dummy/app/routes/entity-factory/authority.js new file mode 100644 index 0000000000000000000000000000000000000000..6b20e2e6e963cd359fe60dd5e857c8adea7c8d86 --- /dev/null +++ b/tests/dummy/app/routes/entity-factory/authority.js @@ -0,0 +1,15 @@ +import Route from '@ember/routing/route'; + +export default Route.extend({ + model() { + return Ember.RSVP.hash({ + authorities: this.store.findAll('authority'), + users: this.store.findAll('user') + }); + }, + + setupController(controller, models) { + controller.setProperties(models); + } + +}); \ No newline at end of file diff --git a/tests/dummy/app/routes/entity-factory/todo.js b/tests/dummy/app/routes/entity-factory/todo.js new file mode 100644 index 0000000000000000000000000000000000000000..909e42ac819c5dcb1c827fcf5b4d30e09a09fccf --- /dev/null +++ b/tests/dummy/app/routes/entity-factory/todo.js @@ -0,0 +1,15 @@ +import Route from '@ember/routing/route'; + +export default Route.extend({ + model() { + return Ember.RSVP.hash({ + todos: this.store.findAll('todo'), + users: this.store.findAll('user') + }); + }, + + setupController(controller, models) { + controller.setProperties(models); + } + +}); \ No newline at end of file diff --git a/tests/dummy/app/routes/entity-factory/user.js b/tests/dummy/app/routes/entity-factory/user.js new file mode 100644 index 0000000000000000000000000000000000000000..d60c2e8e51346bc6d614cfb2f1eeeecbd92925ec --- /dev/null +++ b/tests/dummy/app/routes/entity-factory/user.js @@ -0,0 +1,16 @@ +import Route from '@ember/routing/route'; + +export default Route.extend({ + model() { + return Ember.RSVP.hash({ + users: this.store.findAll('user'), + authorities: this.store.findAll('authority'), + todos: this.store.findAll('todo') + }); + }, + + setupController(controller, models) { + controller.setProperties(models); + } + +}); \ No newline at end of file diff --git a/tests/dummy/app/styles/app.css b/tests/dummy/app/styles/app.css index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..8e35abc263538a72e77fec58fd0374527181864b 100644 --- a/tests/dummy/app/styles/app.css +++ b/tests/dummy/app/styles/app.css @@ -0,0 +1,11 @@ +@import 'ember-aws-ehipster.css'; +@import 'todo-base.css'; +@import 'todo-index.css'; + +footer p { + font-size: 25px; + } + + #new-todo { + background-color: #ffffff; + } \ No newline at end of file diff --git a/tests/dummy/app/styles/ember-aws-ehipster.css b/tests/dummy/app/styles/ember-aws-ehipster.css new file mode 100644 index 0000000000000000000000000000000000000000..f344568f9b12e72950fd6056b587a814640a7779 --- /dev/null +++ b/tests/dummy/app/styles/ember-aws-ehipster.css @@ -0,0 +1,39 @@ +a:hover { + text-decoration: none; +} +a.active { + font-weight: 700; +} +pre { + text-align: left; + white-space: pre-line; +} +.table-footer { + border: 1px solid #ddd; + padding: 5px 0; +} + +.models-table-wrapper { + margin-bottom: 20px; +} + +.btn-default { + background-image: none !important; +} + +.columns-dropdown { + margin-bottom: 20px; +} + +.table-column-options.table > tbody > tr > td { + border-top-width: 0; +} + +tr.selected-row>td:not(.grouping-cell), tr.selected-expand>td:not(.grouping-cell) { + background: #C6E746; +} + +.navbar-text.gh { + margin-top: 13px !important; + margin-bottom: 11px !important; +} \ No newline at end of file diff --git a/tests/dummy/app/styles/todo-base.css b/tests/dummy/app/styles/todo-base.css new file mode 100644 index 0000000000000000000000000000000000000000..da65968a7347fa325c9e59c125be2a2538a2e8ac --- /dev/null +++ b/tests/dummy/app/styles/todo-base.css @@ -0,0 +1,141 @@ +hr { + margin: 20px 0; + border: 0; + border-top: 1px dashed #c5c5c5; + border-bottom: 1px dashed #f7f7f7; +} + +.learn a { + font-weight: normal; + text-decoration: none; + color: #b83f45; +} + +.learn a:hover { + text-decoration: underline; + color: #787e7e; +} + +.learn h3, +.learn h4, +.learn h5 { + margin: 10px 0; + font-weight: 500; + line-height: 1.2; + color: #000; +} + +.learn h3 { + font-size: 24px; +} + +.learn h4 { + font-size: 18px; +} + +.learn h5 { + margin-bottom: 0; + font-size: 14px; +} + +.learn ul { + padding: 0; + margin: 0 0 30px 25px; +} + +.learn li { + line-height: 20px; +} + +.learn p { + font-size: 15px; + font-weight: 300; + line-height: 1.3; + margin-top: 0; + margin-bottom: 0; +} + +#issue-count { + display: none; +} + +.quote { + border: none; + margin: 20px 0 60px 0; +} + +.quote p { + font-style: italic; +} + +.quote p:before { + content: '“'; + font-size: 50px; + opacity: .15; + position: absolute; + top: -20px; + left: 3px; +} + +.quote p:after { + content: 'â€'; + font-size: 50px; + opacity: .15; + position: absolute; + bottom: -42px; + right: 3px; +} + +.quote footer { + position: absolute; + bottom: -40px; + right: 0; +} + +.quote footer img { + border-radius: 3px; +} + +.quote footer a { + margin-left: 5px; + vertical-align: middle; +} + +.speech-bubble { + position: relative; + padding: 10px; + background: rgba(0, 0, 0, .04); + border-radius: 5px; +} + +.speech-bubble:after { + content: ''; + position: absolute; + top: 100%; + right: 30px; + border: 13px solid transparent; + border-top-color: rgba(0, 0, 0, .04); +} + +.learn-bar > .learn { + position: absolute; + width: 272px; + top: 8px; + left: -300px; + padding: 10px; + border-radius: 5px; + background-color: rgba(255, 255, 255, .6); + transition-property: left; + transition-duration: 500ms; +} + +@media (min-width: 899px) { + .learn-bar { + width: auto; + padding-left: 300px; + } + + .learn-bar > .learn { + left: 8px; + } +} diff --git a/tests/dummy/app/styles/todo-index.css b/tests/dummy/app/styles/todo-index.css new file mode 100644 index 0000000000000000000000000000000000000000..0ad8b279c6c4968aaf2f6410192415077116d9a7 --- /dev/null +++ b/tests/dummy/app/styles/todo-index.css @@ -0,0 +1,382 @@ +html, +body { + margin: 0; + padding: 0; +} + +button { + margin: 0; + padding: 0; + border: 0; + background: none; + font-size: 100%; + vertical-align: baseline; + font-family: inherit; + font-weight: inherit; + color: inherit; + -webkit-appearance: none; + appearance: none; + -webkit-font-smoothing: antialiased; + -moz-font-smoothing: antialiased; + font-smoothing: antialiased; +} + +body { + font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif; + line-height: 1.4em; + background: #f5f5f5; + color: #4d4d4d; + min-width: 230px; + max-width: 550px; + margin: 0 auto; + -webkit-font-smoothing: antialiased; + -moz-font-smoothing: antialiased; + font-smoothing: antialiased; + font-weight: 300; +} + +button, +input[type="checkbox"] { + outline: none; +} + +.hidden { + display: none; +} + +#todoapp { + background: #fff; + margin: 130px 0 40px 0; + position: relative; + box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), + 0 25px 50px 0 rgba(0, 0, 0, 0.1); +} + +#todoapp input::-webkit-input-placeholder { + font-style: italic; + font-weight: 300; + color: #e6e6e6; +} + +#todoapp input::-moz-placeholder { + font-style: italic; + font-weight: 300; + color: #e6e6e6; +} + +#todoapp input::input-placeholder { + font-style: italic; + font-weight: 300; + color: #e6e6e6; +} + +#todoapp h1 { + position: absolute; + top: -155px; + width: 100%; + font-size: 100px; + font-weight: 100; + text-align: center; + color: rgba(175, 47, 47, 0.15); + -webkit-text-rendering: optimizeLegibility; + -moz-text-rendering: optimizeLegibility; + text-rendering: optimizeLegibility; +} + +#new-todo, +.edit { + position: relative; + margin: 0; + width: 100%; + font-size: 24px; + font-family: inherit; + font-weight: inherit; + line-height: 1.4em; + border: 0; + outline: none; + color: inherit; + padding: 6px; + border: 1px solid #999; + box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2); + box-sizing: border-box; + -webkit-font-smoothing: antialiased; + -moz-font-smoothing: antialiased; + font-smoothing: antialiased; +} + +#new-todo { + padding: 16px 16px 16px 60px; + border: none; + background: rgba(0, 0, 0, 0.003); + box-shadow: inset 0 -2px 1px rgba(0,0,0,0.03); +} + +#main { + position: relative; + z-index: 2; + border-top: 1px solid #e6e6e6; +} + +label[for='toggle-all'] { + display: none; +} + +#toggle-all { + position: absolute; + top: -55px; + left: -12px; + width: 60px; + height: 34px; + text-align: center; + border: none; /* Mobile Safari */ +} + +#toggle-all:before { + content: 'â¯'; + font-size: 22px; + color: #e6e6e6; + padding: 10px 27px 10px 27px; +} + +#toggle-all:checked:before { + color: #737373; +} + +#todo-list { + margin: 0; + padding: 0; + list-style: none; +} + +#todo-list li { + position: relative; + font-size: 24px; + border-bottom: 1px solid #ededed; +} + +#todo-list li:last-child { + border-bottom: none; +} + +#todo-list li.editing { + border-bottom: none; + padding: 0; +} + +#todo-list li.editing .edit { + display: block; + width: 506px; + padding: 13px 17px 12px 17px; + margin: 0 0 0 43px; +} + +#todo-list li.editing .view { + display: none; +} + +#todo-list li .toggle { + text-align: center; + width: 40px; + /* auto, since non-WebKit browsers doesn't support input styling */ + height: auto; + position: absolute; + top: 0; + bottom: 0; + margin: auto 0; + border: none; /* Mobile Safari */ + -webkit-appearance: none; + appearance: none; +} + +#todo-list li .toggle:after { + content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="#ededed" stroke-width="3"/></svg>'); +} + +#todo-list li .toggle:checked:after { + content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="#bddad5" stroke-width="3"/><path fill="#5dc2af" d="M72 25L42 71 27 56l-4 4 20 20 34-52z"/></svg>'); +} + +#todo-list li label { + white-space: pre; + word-break: break-word; + padding: 15px 60px 15px 15px; + margin-left: 45px; + display: block; + line-height: 1.2; + transition: color 0.4s; +} + +#todo-list li.completed label { + color: #d9d9d9; + text-decoration: line-through; +} + +#todo-list li .destroy { + display: none; + position: absolute; + top: 0; + right: 10px; + bottom: 0; + width: 40px; + height: 40px; + margin: auto 0; + font-size: 30px; + color: #cc9a9a; + margin-bottom: 11px; + transition: color 0.2s ease-out; +} + +#todo-list li .destroy:hover { + color: #af5b5e; +} + +#todo-list li .destroy:after { + content: '×'; +} + +#todo-list li:hover .destroy { + display: block; +} + +#todo-list li .edit { + display: none; +} + +#todo-list li.editing:last-child { + margin-bottom: -1px; +} + +#footer { + color: #777; + padding: 10px 15px; + height: 20px; + text-align: center; + border-top: 1px solid #e6e6e6; +} + +#footer:before { + content: ''; + position: absolute; + right: 0; + bottom: 0; + left: 0; + height: 50px; + overflow: hidden; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), + 0 8px 0 -3px #f6f6f6, + 0 9px 1px -3px rgba(0, 0, 0, 0.2), + 0 16px 0 -6px #f6f6f6, + 0 17px 2px -6px rgba(0, 0, 0, 0.2); +} + +#todo-count { + float: left; + text-align: left; +} + +#todo-count strong { + font-weight: 300; +} + +#filters { + margin: 0; + padding: 0; + list-style: none; + position: absolute; + right: 0; + left: 0; +} + +#filters li { + display: inline; +} + +#filters li a { + color: inherit; + margin: 3px; + padding: 3px 7px; + text-decoration: none; + border: 1px solid transparent; + border-radius: 3px; +} + +#filters li a.selected, +#filters li a:hover { + border-color: rgba(175, 47, 47, 0.1); +} + +#filters li a.selected { + border-color: rgba(175, 47, 47, 0.2); +} + +#clear-completed, +html #clear-completed:active { + float: right; + position: relative; + line-height: 20px; + text-decoration: none; + cursor: pointer; + position: relative; +} + +#clear-completed:hover { + text-decoration: underline; +} + +#info { + margin: 65px auto 0; + color: #bfbfbf; + font-size: 10px; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); + text-align: center; +} + +#info p { + line-height: 1; +} + +#info a { + color: inherit; + text-decoration: none; + font-weight: 400; +} + +#info a:hover { + text-decoration: underline; +} + +/* + Hack to remove background from Mobile Safari. + Can't use it globally since it destroys checkboxes in Firefox +*/ +@media screen and (-webkit-min-device-pixel-ratio:0) { + #toggle-all, + #todo-list li .toggle { + background: none; + } + + #todo-list li .toggle { + height: 40px; + } + + #toggle-all { + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + -webkit-appearance: none; + appearance: none; + } + + #footer { + height: 40px; + } +} + +@media (max-width: 430px) { + #footer { + height: 40px; + } + + #filters { + bottom: 10px; + } +} diff --git a/tests/dummy/app/templates/active.hbs b/tests/dummy/app/templates/active.hbs new file mode 100644 index 0000000000000000000000000000000000000000..de244f487d2383448a42a59df0bf42564e21f573 --- /dev/null +++ b/tests/dummy/app/templates/active.hbs @@ -0,0 +1 @@ +{{todo-list todos=todos}} \ No newline at end of file diff --git a/tests/dummy/app/templates/application.hbs b/tests/dummy/app/templates/application.hbs index 2f5796789cc4f5634aea020d5b9ff42f384d54ad..10ced9ff39621da87a42c895f6eb817ab1fdcee7 100644 --- a/tests/dummy/app/templates/application.hbs +++ b/tests/dummy/app/templates/application.hbs @@ -1,3 +1,32 @@ -<h2 id="title">A Guinea Pig in the Cloud</h2> - -{{outlet}} \ No newline at end of file +<section id="todoapp"> + <header id="header"> + <h1>todos</h1> + <input type="text" id="new-todo" onkeydown={{action 'createTodo'}} placeholder="What needs to be done?" autofocus> + </header> + {{outlet}} + {{#if (gt model.length 0)}} + <footer id="footer"> + <span id="todo-count"><strong>{{remaining.length}}</strong> {{pluralize 'item' remaining.length}} left</span> + <ul id="filters"> + <li>{{#link-to "index" activeClass="selected"}}All{{/link-to}}</li> + <li>{{#link-to "active" activeClass="selected"}}Active{{/link-to}}</li> + <li>{{#link-to "completed" activeClass="selected"}}Completed{{/link-to}}</li> + </ul> + {{#if completed.length}} + <button id="clear-completed" onclick={{action 'clearCompleted'}}>Clear completed</button> + {{/if}} + </footer> + {{/if}} +</section> +<footer id="info"> + <p>Double-click to edit a todo</p> + <p> + Created by + <a href="http://github.com/cibernox">Miguel Camba</a>, + <a href="http://github.com/addyosmani">Addy Osmani</a> + </p> + <p>Part of <a href="http://todomvc.com">TodoMVC</a></p> + <p>Modified for Ember Data by + <a href="https://gitlab.ippon.fr/bpinel">Bertrand Pinel</a>, + </p> +</footer> \ No newline at end of file diff --git a/tests/dummy/app/templates/completed.hbs b/tests/dummy/app/templates/completed.hbs new file mode 100644 index 0000000000000000000000000000000000000000..de244f487d2383448a42a59df0bf42564e21f573 --- /dev/null +++ b/tests/dummy/app/templates/completed.hbs @@ -0,0 +1 @@ +{{todo-list todos=todos}} \ No newline at end of file diff --git a/tests/dummy/app/templates/components/todo-item.hbs b/tests/dummy/app/templates/components/todo-item.hbs new file mode 100644 index 0000000000000000000000000000000000000000..c06975e865e7b9a042785e8b38977f34aad3dbc6 --- /dev/null +++ b/tests/dummy/app/templates/components/todo-item.hbs @@ -0,0 +1,6 @@ +<div class="view"> + <input type="checkbox" class="toggle" checked={{todo.completed}} onchange={{action 'toggleCompleted'}}> + <label ondblclick={{action 'startEditing'}}>{{todo.title}}</label> + <button onclick={{action 'removeTodo'}} class="destroy"></button> +</div> +<input type="text" class="edit" value={{todo.title}} onblur={{action 'doneEditing' value='target.value'}} onkeydown={{action 'handleKeydown'}} autofocus> \ No newline at end of file diff --git a/tests/dummy/app/templates/components/todo-list.hbs b/tests/dummy/app/templates/components/todo-list.hbs new file mode 100644 index 0000000000000000000000000000000000000000..309d07a1f417cf1c188930c5cbfb33a7051c7866 --- /dev/null +++ b/tests/dummy/app/templates/components/todo-list.hbs @@ -0,0 +1,10 @@ +{{#if todos.length}} + {{#if canToggle}} + <input type="checkbox" id="toggle-all" checked={{allCompleted}} onchange={{action 'toggleAll'}}> + {{/if}} + <ul id="todo-list" class="todo-list"> + {{#each todos as |todo|}} + {{todo-item todo=todo onStartEdit=(action 'disableToggle') onEndEdit=(action 'enableToggle')}} + {{/each}} + </ul> +{{/if}} diff --git a/tests/dummy/app/templates/entity-factory.hbs b/tests/dummy/app/templates/entity-factory.hbs new file mode 100644 index 0000000000000000000000000000000000000000..4626840297cdd123e5f526b47b34b4b72c6e8ffc --- /dev/null +++ b/tests/dummy/app/templates/entity-factory.hbs @@ -0,0 +1,9 @@ +<div class="container"> + Available entities : + <select class="ember-select" onchange={{action "selectEntity" value="target.value"}}> + {{#each entities as |entityChoice|}} + <option value={{entityChoice}} selected={{eq entity entityChoice}}>{{entityChoice}}</option> + {{/each}} + </select> +</div> +{{outlet}} \ No newline at end of file diff --git a/tests/dummy/app/templates/entity-factory/authority.hbs b/tests/dummy/app/templates/entity-factory/authority.hbs new file mode 100644 index 0000000000000000000000000000000000000000..4335d211c8d051bd947ef296024121f689a8d776 --- /dev/null +++ b/tests/dummy/app/templates/entity-factory/authority.hbs @@ -0,0 +1,32 @@ +{{outlet}} +<div class="container-fluid"> + +<h3>List of authority entities</h3> + +{{#models-table data=authorityTableContent columns=authorityTableColumns delete="deleteRecord" as |mt|}} + {{mt.global-filter}} + {{mt.table}} + {{mt.footer}} +{{/models-table}} + +{{#bs-button onClick=(action (mut addEntryModal) true)}} + Add new entry +{{/bs-button}} + +{{#bs-modal open=addEntryModal onSubmit=(action "submit") onHidden=(action (mut addEntryModal) false) as |modal|}} + {{#modal.header}} + <h4 class="modal-title"> + Add a new Entry + </h4> + {{/modal.header}} + {{#modal.body}} + {{#validated-form model = (changeset newEntry AuthorityValidations) on-submit = (perform submitEntry) as |f|}} + {{f.input label="name" name="name" }} + {{f.input type="select" label="users" name="users" multiple=true +options=users optionLabelPath="name" optionValuePath="id" +includeBlank= "Please choose..." promptIsSelectable=false}} + {{f.submit class="btn btn-primary" label="Save"}} + {{/validated-form}} + {{/modal.body}} +{{/bs-modal}} +</div> \ No newline at end of file diff --git a/tests/dummy/app/templates/entity-factory/todo.hbs b/tests/dummy/app/templates/entity-factory/todo.hbs new file mode 100644 index 0000000000000000000000000000000000000000..72f4d84fc8c08162b0dba7d726a06c9e3733754a --- /dev/null +++ b/tests/dummy/app/templates/entity-factory/todo.hbs @@ -0,0 +1,33 @@ +{{outlet}} +<div class="container-fluid"> + +<h3>List of todo entities</h3> + +{{#models-table data=todoTableContent columns=todoTableColumns delete="deleteRecord" as |mt|}} + {{mt.global-filter}} + {{mt.table}} + {{mt.footer}} +{{/models-table}} + +{{#bs-button onClick=(action (mut addEntryModal) true)}} + Add new entry +{{/bs-button}} + +{{#bs-modal open=addEntryModal onSubmit=(action "submit") onHidden=(action (mut addEntryModal) false) as |modal|}} + {{#modal.header}} + <h4 class="modal-title"> + Add a new Entry + </h4> + {{/modal.header}} + {{#modal.body}} + {{#validated-form model = (changeset newEntry TodoValidations) on-submit = (perform submitEntry) as |f|}} + {{f.input label="title" name="title" }} + {{f.input type="checkbox" label="completed" name="completed" }} + {{f.input type="select" label="user" name="user" multiple=true +options=users optionLabelPath="id" optionValuePath="id" +includeBlank= "Please choose..." promptIsSelectable=false}} + {{f.submit class="btn btn-primary" label="Save"}} + {{/validated-form}} + {{/modal.body}} +{{/bs-modal}} +</div> \ No newline at end of file diff --git a/tests/dummy/app/templates/entity-factory/user.hbs b/tests/dummy/app/templates/entity-factory/user.hbs new file mode 100644 index 0000000000000000000000000000000000000000..ce64e51837816d0d021d7f9a481f2f9a58ed1dcc --- /dev/null +++ b/tests/dummy/app/templates/entity-factory/user.hbs @@ -0,0 +1,49 @@ +{{outlet}} +<div class="container-fluid"> + +<h3>List of user entities</h3> + +{{#models-table data=userTableContent columns=userTableColumns delete="deleteRecord" as |mt|}} + {{mt.global-filter}} + {{mt.table}} + {{mt.footer}} +{{/models-table}} + +{{#bs-button onClick=(action (mut addEntryModal) true)}} + Add new entry +{{/bs-button}} + +{{#bs-modal open=addEntryModal onSubmit=(action "submit") onHidden=(action (mut addEntryModal) false) as |modal|}} + {{#modal.header}} + <h4 class="modal-title"> + Add a new Entry + </h4> + {{/modal.header}} + {{#modal.body}} + {{#validated-form model = (changeset newEntry UserValidations) on-submit = (perform submitEntry) as |f|}} + {{f.input label="login" name="login" }} + {{f.input label="passwordHash" name="passwordHash" }} + {{f.input label="firstName" name="firstName" }} + {{f.input label="lastName" name="lastName" }} + {{f.input label="email" name="email" }} + {{f.input label="imageUrl" name="imageUrl" }} + {{f.input type="checkbox" label="activated" name="activated" }} + {{f.input label="createdBy" name="createdBy" }} + {{#f.input label="createdDate" name="createdDate" as |fi|}} + {{pikaday-input useUTC=true format="DD/MM/YYYY" onSelection=fi.update}} + {{/f.input}} + {{f.input label="lastModifiedBy" name="lastModifiedBy" }} + {{#f.input label="lastModifiedDate" name="lastModifiedDate" as |fi|}} + {{pikaday-input useUTC=true format="DD/MM/YYYY" onSelection=fi.update}} + {{/f.input}} + {{f.input type="select" label="authorities" name="authorities" multiple=true +options=authorities optionLabelPath="name" optionValuePath="id" +includeBlank= "Please choose..." promptIsSelectable=false}} + {{f.input type="select" label="todos" name="todos" multiple=true +options=todos optionLabelPath="id" optionValuePath="id" +includeBlank= "Please choose..." promptIsSelectable=false}} + {{f.submit class="btn btn-primary" label="Save"}} + {{/validated-form}} + {{/modal.body}} +{{/bs-modal}} +</div> \ No newline at end of file diff --git a/tests/dummy/app/templates/index.hbs b/tests/dummy/app/templates/index.hbs new file mode 100644 index 0000000000000000000000000000000000000000..9694e18e25c04ca73c9b611e5ccba3d1194b78ca --- /dev/null +++ b/tests/dummy/app/templates/index.hbs @@ -0,0 +1,3 @@ +{{#if model.length}} + {{todo-list todos=model}} +{{/if}} \ No newline at end of file diff --git a/tests/dummy/app/validations/authority.js b/tests/dummy/app/validations/authority.js new file mode 100644 index 0000000000000000000000000000000000000000..4e89422a83000f82cddbf4e22c11775b7381d058 --- /dev/null +++ b/tests/dummy/app/validations/authority.js @@ -0,0 +1,5 @@ +import {validatePresence, validateLength, validateFormat} from 'ember-changeset-validations/validators'; + +export default { + name: [validatePresence(true)], +} diff --git a/tests/dummy/app/validations/todo.js b/tests/dummy/app/validations/todo.js new file mode 100644 index 0000000000000000000000000000000000000000..c3a5a9bcad0ca9c59fb81b9ed3ee8cc85a4b103b --- /dev/null +++ b/tests/dummy/app/validations/todo.js @@ -0,0 +1,5 @@ +import {validatePresence, validateLength, validateFormat} from 'ember-changeset-validations/validators'; + +export default { + title: [validatePresence(true)], +} diff --git a/tests/dummy/app/validations/user.js b/tests/dummy/app/validations/user.js new file mode 100644 index 0000000000000000000000000000000000000000..0a3e27bed0137a84144971ea4459afd7f68f0178 --- /dev/null +++ b/tests/dummy/app/validations/user.js @@ -0,0 +1,6 @@ +import {validatePresence, validateLength, validateFormat} from 'ember-changeset-validations/validators'; + +export default { + login: [validatePresence(true),validateLength({min: 4})], + passwordHash: [validatePresence(true),validateLength({min: 8})], +} diff --git a/tests/dummy/config/environment.js b/tests/dummy/config/environment.js index 182d3fcbfa04ea4a73696722c400e89e443959d7..e4e58f70312c34675cbcaeaa72be7e88b9544f9b 100644 --- a/tests/dummy/config/environment.js +++ b/tests/dummy/config/environment.js @@ -1,10 +1,57 @@ 'use strict'; +function usingProxy() { + var usingProxyArg = !!process.argv.filter(function (arg) { + return arg.indexOf('--proxy') === 0 || arg.indexOf('-pr') === 0 || arg.indexOf('-pxy') === 0; + }).length; + + var hasGeneratedProxies = false; + var proxiesDir = process.env.PWD + '/server/proxies'; + try { + fs.lstatSync(proxiesDir); + hasGeneratedProxies = true; + } catch (e) {} + + return usingProxyArg || hasGeneratedProxies; +} + +function findGatewayURL() { + let gatewayURL='http://localhost'; + for (var i=0;i<process.argv.length;i++) { + if (process.argv[i].indexOf('--proxy') === 0 || process.argv[i].indexOf('-pr') === 0 || process.argv[i].indexOf('-pxy') === 0) { + gatewayURL = process.argv[i+1]; + break; + } + } + return gatewayURL; +} + module.exports = function(environment) { let ENV = { + "ember-validated-form": { + label: { + submit: "label.save" + }, + css: { + group: "form-group", + radio: "radio", + control: "form-control", + label: "col-form-label", + help: "small form-text text-danger", + hint: "small form-text text-muted", + checkbox: "checkbox", + button: "btn btn-default", + submit: "btn btn-primary", + loading: "loading", + valid: "is-valid", + error: "is-invalid" + } + }, + modulePrefix: 'dummy', environment, rootURL: '/', + gatewayURL: findGatewayURL(), locationType: 'auto', EmberENV: { FEATURES: { @@ -20,6 +67,7 @@ module.exports = function(environment) { APP: { // Here you can pass flags/options to your application instance // when it is created + proxy: usingProxy(), } }; @@ -44,6 +92,7 @@ module.exports = function(environment) { } if (environment === 'production') { + ENV.gatewayURL = 'https://dcftkivcqe.execute-api.us-east-1.amazonaws.com/staging'; // here you can enable a production-specific feature } diff --git a/tests/dummy/mirage/config.js b/tests/dummy/mirage/config.js index 16cf48b7acc641d14a8eca91b44f43ae0f5b2a7e..a93c7e0099fdaeb9b6321b9cde8f65e7bae7a893 100644 --- a/tests/dummy/mirage/config.js +++ b/tests/dummy/mirage/config.js @@ -1,3 +1,23 @@ +import ENV from './../config/environment'; export default function() { this.namespace = ''; + if (!ENV.APP.proxy) { + this.get('/todos'); + this.get('/todos/:id'); + this.delete('/todos/:id'); + this.patch('/todos/:id'); + this.post('/todos'); + this.get('/authorities'); + this.get('/authorities/:id'); + this.delete('/authorities/:id'); + this.patch('/authorities/:id'); + this.post('/authorities'); + this.get('/users'); + this.get('/users/:id'); + this.delete('/users/:id'); + this.patch('/users/:id'); + this.post('/users'); + } else { + this.passthrough(); + } } diff --git a/tests/dummy/mirage/factories/authority.js b/tests/dummy/mirage/factories/authority.js new file mode 100644 index 0000000000000000000000000000000000000000..e55d3669d7707b0a8d68ccd4c7e8ad3b99107fa1 --- /dev/null +++ b/tests/dummy/mirage/factories/authority.js @@ -0,0 +1,11 @@ +import { + Factory, + faker + } from 'ember-cli-mirage'; + +export default Factory.extend({ + name() { + return faker.lorem.word(); + } +}); + \ No newline at end of file diff --git a/tests/dummy/mirage/factories/todo.js b/tests/dummy/mirage/factories/todo.js new file mode 100644 index 0000000000000000000000000000000000000000..073f89bfdbaca34b4666fba2062a4e12344344df --- /dev/null +++ b/tests/dummy/mirage/factories/todo.js @@ -0,0 +1,14 @@ +import { + Factory, + faker + } from 'ember-cli-mirage'; + +export default Factory.extend({ + title() { + return faker.lorem.word(); + }, + completed() { + return faker.random.boolean(); + } +}); + \ No newline at end of file diff --git a/tests/dummy/mirage/factories/user.js b/tests/dummy/mirage/factories/user.js new file mode 100644 index 0000000000000000000000000000000000000000..d7d4cb12f1b2504b68ea6129094b68456c74d6e0 --- /dev/null +++ b/tests/dummy/mirage/factories/user.js @@ -0,0 +1,41 @@ +import { + Factory, + faker + } from 'ember-cli-mirage'; + +export default Factory.extend({ + login() { + return faker.lorem.word(); + }, + passwordHash() { + return faker.lorem.word(); + }, + firstName() { + return faker.name.firstName(); + }, + lastName() { + return faker.name.lastName(); + }, + email() { + return faker.internet.email(); + }, + imageUrl() { + return faker.lorem.word(); + }, + activated() { + return faker.random.boolean(); + }, + createdBy() { + return faker.lorem.word(); + }, + createdDate() { + return faker.date.past(); + }, + lastModifiedBy() { + return faker.lorem.word(); + }, + lastModifiedDate() { + return faker.date.past(); + } +}); + \ No newline at end of file diff --git a/tests/dummy/mirage/models/authority.js b/tests/dummy/mirage/models/authority.js new file mode 100644 index 0000000000000000000000000000000000000000..9c231ea42bb9f8be65565bfc7b329c02273e28be --- /dev/null +++ b/tests/dummy/mirage/models/authority.js @@ -0,0 +1,5 @@ +import { Model, belongsTo, hasMany} from 'ember-cli-mirage'; + +export default Model.extend({ + users: hasMany() +}); \ No newline at end of file diff --git a/tests/dummy/mirage/models/todo.js b/tests/dummy/mirage/models/todo.js new file mode 100644 index 0000000000000000000000000000000000000000..9629371ec3b3287b42cfbf856b639caf197d052c --- /dev/null +++ b/tests/dummy/mirage/models/todo.js @@ -0,0 +1,5 @@ +import { Model, belongsTo, hasMany} from 'ember-cli-mirage'; + +export default Model.extend({ + user: hasMany() +}); \ No newline at end of file diff --git a/tests/dummy/mirage/models/user.js b/tests/dummy/mirage/models/user.js new file mode 100644 index 0000000000000000000000000000000000000000..97005203ed4d97370ccb59ab0c2150388ba392fd --- /dev/null +++ b/tests/dummy/mirage/models/user.js @@ -0,0 +1,6 @@ +import { Model, belongsTo, hasMany} from 'ember-cli-mirage'; + +export default Model.extend({ + authorities: hasMany(), + todos: hasMany() +}); \ No newline at end of file diff --git a/tests/dummy/mirage/scenarios/default.js b/tests/dummy/mirage/scenarios/default.js index c0ed64285b91bb4bcb20cdaebd060b2dbc762948..149fe922d4a21b15ad91817cc6d6daf9ff4119c3 100644 --- a/tests/dummy/mirage/scenarios/default.js +++ b/tests/dummy/mirage/scenarios/default.js @@ -1,3 +1,9 @@ export default function(server) { + server.createList('todo', 6); + + server.createList('authority', 6); + + server.createList('user', 6); + } diff --git a/tests/dummy/mirage/scenarios/tobedeleted.txt b/tests/dummy/mirage/scenarios/tobedeleted.txt new file mode 100644 index 0000000000000000000000000000000000000000..f203f9671e5b9b5e204b165ccb06a56bb8f4eeb9 --- /dev/null +++ b/tests/dummy/mirage/scenarios/tobedeleted.txt @@ -0,0 +1 @@ +To be sure that the directory exists... \ No newline at end of file diff --git a/tests/dummy/mirage/serializers/tobedeleted.txt b/tests/dummy/mirage/serializers/tobedeleted.txt new file mode 100644 index 0000000000000000000000000000000000000000..f203f9671e5b9b5e204b165ccb06a56bb8f4eeb9 --- /dev/null +++ b/tests/dummy/mirage/serializers/tobedeleted.txt @@ -0,0 +1 @@ +To be sure that the directory exists... \ No newline at end of file diff --git a/tests/unit/adapters/application-test.js b/tests/unit/adapters/application-test.js deleted file mode 100644 index eff23bb94216c88b2504a7fdf7b32b07bc484ce1..0000000000000000000000000000000000000000 --- a/tests/unit/adapters/application-test.js +++ /dev/null @@ -1,12 +0,0 @@ -import { module, test } from 'qunit'; -import { setupTest } from 'ember-qunit'; - -module('Unit | Adapter | application', function(hooks) { - setupTest(hooks); - - // Replace this with your real tests. - test('it exists', function(assert) { - let adapter = this.owner.lookup('adapter:application'); - assert.ok(adapter); - }); -});