diff --git a/addon/adapters/application.js b/addon/adapters/application.js new file mode 100644 index 0000000000000000000000000000000000000000..098a237ce4a39b17a22d1d11d789599c6d660faf --- /dev/null +++ b/addon/adapters/application.js @@ -0,0 +1,7 @@ +import DS from 'ember-data'; + +export default DS.JSONAPIAdapter.extend({ + headers: { + "Content-Type": "application/json; charset=utf-8" + } +}); diff --git a/app/adapters/application.js b/app/adapters/application.js new file mode 100644 index 0000000000000000000000000000000000000000..3fc80e2b39b1c86914154216e94e09f7670be152 --- /dev/null +++ b/app/adapters/application.js @@ -0,0 +1 @@ +export { default } from 'ember-aws-ehipster/adapters/application'; diff --git a/blueprints/entity-factory/files/__root__/__mirage__/factories/__name__.js b/blueprints/entity-factory/files/__root__/__mirage__/factories/__name__.js index 09a958f85bfd638f42197d880ac842fffdfb4068..68ead114232d71fa47b2697238c824d6209a09ec 100644 --- a/blueprints/entity-factory/files/__root__/__mirage__/factories/__name__.js +++ b/blueprints/entity-factory/files/__root__/__mirage__/factories/__name__.js @@ -4,6 +4,6 @@ import { } from 'ember-cli-mirage'; export default Factory.extend({ - <%= fact.length ? '//default generated factory\n\t' + fact + '\n' : '' %> + <%= factories.length ? '//default generated factory\n\t' + factories + '\n' : '' %> }) \ No newline at end of file diff --git a/blueprints/entity-factory/files/__root__/controllers/entity-factory/__name__.js b/blueprints/entity-factory/files/__root__/controllers/entity-factory/__name__.js index 29bd1b3de7ab708ccdfdf7a9c06a0c7fa3751c52..b24e04104b45edc090563e04b8da94ad34f17855 100644 --- a/blueprints/entity-factory/files/__root__/controllers/entity-factory/__name__.js +++ b/blueprints/entity-factory/files/__root__/controllers/entity-factory/__name__.js @@ -1,25 +1,30 @@ import Controller from '@ember/controller'; import { computed } from '@ember/object'; import { A } from '@ember/array'; +import EmberObject from '@ember/object'; export default Controller.extend({ isAddingEntry: false, <%=ctrlVars%> -<%=entity%>TableColumns: computed(function() { +<%=singularEntityName%>TableColumns: computed(function() { var col = A([ - <%=cols%> + <%=tableCols%> ]); return col; }), -<%=entity%>TableContent: computed(function() { +<%=singularEntityName%>TableContent: computed(function() { return this.get("model"); }), actions: { submit() { - this.set('addEntryModal', false); - console.log("Adding new entry"); - }, + event.preventDefault(); + let newEntity = this.store.createRecord('<%=singularEntityName%>',<%=toCreateEntity%>); + newEntity.save(); + this.set('addEntryModal', false).then((entry) => { + console.log("new entry of id "+entry.get('id')+" created"); + }); + } } }); \ No newline at end of file diff --git a/blueprints/entity-factory/files/__root__/routes/entity-factory/__name__.js b/blueprints/entity-factory/files/__root__/routes/entity-factory/__name__.js index b1804cad181a905713a666a8840931ae5b42db20..c52f4ffd187907eb7324ce60d0b704f5eb512237 100644 --- a/blueprints/entity-factory/files/__root__/routes/entity-factory/__name__.js +++ b/blueprints/entity-factory/files/__root__/routes/entity-factory/__name__.js @@ -2,7 +2,7 @@ import Route from '@ember/routing/route'; export default Route.extend({ model() { - return this.store.findAll('<%=entity%>'); + return this.store.findAll('<%=singularEntityName%>'); } }); \ No newline at end of file diff --git a/blueprints/entity-factory/files/__root__/templates/entity-factory/__name__.hbs b/blueprints/entity-factory/files/__root__/templates/entity-factory/__name__.hbs index 65fd2a426b6375c341de805638d28b7cbd4b2fd5..25bb1d2f9bb1a4f66c45aa4f94763a202ed792ac 100644 --- a/blueprints/entity-factory/files/__root__/templates/entity-factory/__name__.hbs +++ b/blueprints/entity-factory/files/__root__/templates/entity-factory/__name__.hbs @@ -1,10 +1,10 @@ {{outlet}} <div class="container-fluid"> -<h2>List of <%=entity%></h2> +<h2>List of <%=singularEntityName%> Entities</h2> {{models-table - data=<%=entity%>TableContent - columns=<%=entity%>TableColumns}} + data=<%=singularEntityName%>TableContent + columns=<%=singularEntityName%>TableColumns}} {{#bs-button onClick=(action (mut addEntryModal) true)}} Add new entry @@ -14,7 +14,6 @@ {{#modal.header}} <h4 class="modal-title"> Add a new Entry - <div class="badge">2</div> </h4> {{/modal.header}} {{#modal.body}} diff --git a/blueprints/entity-factory/index.js b/blueprints/entity-factory/index.js index dde2216f112c9551639ab40b44b1c206f7e006fb..6d629b137a6f35a6bf21a4c990d6ff3f394ba56f 100644 --- a/blueprints/entity-factory/index.js +++ b/blueprints/entity-factory/index.js @@ -3,6 +3,7 @@ const stringUtils = require('ember-cli-string-utils'); const EOL = require('os').EOL; const path = require('path'); const fs = require('fs'); +const nbFakeData = 8; module.exports = { description: 'Generates an ember-data model and the associated Mirage couterpart and screens.', @@ -37,15 +38,30 @@ module.exports = { }, locals(options) { - let attrs = [], cols = [], needs = [], fact = [], form = [], imports = {}, ctrlVars= [], paramObject = []; + // Used in app/models/__name__.js + let attrs = []; // list the entity attributes with their types + // Used in app/controllers/entity-factories/__name__.js + let tableCols = []; // list the colums to be display in the table + let ctrlVars= []; // list the attributes to be mapped to the form for creating new entity + let toCreateEntity = []; // Map attribute to value collected in the form + // Used in app/controllers/entity-factories/__name__.js and app/routes/__name__.js + let singularEntityName = options.entity.name; + // Used in app/templates/__name__hbs + let form = ['{{#bs-form formLayout="vertical" model=this onSubmit=(action "submit") as |form|}}']; + //let form = []; + + // Used in mirage/factories/__name__.js + let factories = []; + + // Used in mirage/models/__name__.js + let imports = {}; let entityOptions = options.entity.options; - let entityName = options.entity.name; - let capitalizeEntityName = entityName.capitalize() ; + const rel = Object.keys(entityOptions).filter(key => + (/has-many/.test(entityOptions[key]) || /belongs-to/.test(entityOptions[key]))) + .map(key => '\n\t\t' + stringUtils.camelize(key) + relFunction(entityOptions[key])) - const rel = Object.keys(entityOptions) - .filter(key => (/has-many/.test(entityOptions[key]) || /belongs-to/.test(entityOptions[key]))) - .map(key => '\n\t\t' + stringUtils.camelize(key) + relFunction(entityOptions[key])) + let needs = []; // Object.values(entityOptions).forEach(value => { if (/has-many/.test(value)) { imports.hasMany = true @@ -79,34 +95,40 @@ module.exports = { } else { attr = dsAttr(dasherizedName, dasherizedType); attrs.push(camelizedName + ': ' + attr); - cols.push("Ember.Object.create({\n\tpropertyName: \""+camelizedName+"\",\n\ttitle: \""+name+"\"\n}),"); + tableCols.push("EmberObject.create({\n\tpropertyName: \""+camelizedName+"\",\n\ttitle: \""+name+"\"\n}),"); } if (/has-many|belongs-to/.test(dasherizedType)) { needs.push("'model:" + dasherizedForeignModelSingular + "'"); } if (!/has-many/.test(dasherizedType) && !/belongs-to/.test(dasherizedType)) { - fact.push('\n\t' + camelizedName + fakerize(dasherizedType)); + factories.push('\n\t' + camelizedName + fakerize(dasherizedType)); // todo Generate input form for creating entity (without any relationship) - form.push('{{input type="text" name="'+camelizedName+'" value='+camelizedName+' placeholder="'+camelizedName+'"}}'); + let buttonType = "text"; + if (type === 'boolean') { + buttonType = "checkbox"; + } + form.push('{{form.element controlType="'+buttonType+'" label="'+camelizedName+'" value='+camelizedName+' onChange=(action (mut '+camelizedName+')) placeholder="'+camelizedName+'"}}'); ctrlVars.push(camelizedName+': null,'); + toCreateEntity.push(camelizedName+": this."+camelizedName); } } - + form.push('{{/bs-form}}'); let needsDeduplicated = needs.filter(function(need, i) { return needs.indexOf(need) === i; }); attrs = attrs.join(',' + EOL + ' '); needs = ' needs: [' + needsDeduplicated.join(', ') + ']'; - cols = cols.join(EOL); + tableCols = tableCols.join(EOL); + toCreateEntity = '{'+toCreateEntity.join(',')+'}'; return { - entity: entityName, + singularEntityName: singularEntityName, attrs: attrs, - cols: cols, - needs: needs, - fact: fact, + tableCols: tableCols, + toCreateEntity: toCreateEntity, + factories: factories, rel: rel, ctrlVars: ctrlVars.join(EOL), form: form.join(EOL), @@ -128,7 +150,7 @@ module.exports = { // Complete /mirage/scenarios/default.js let mirageScenarioPath = (options.dummy) ? "tests/dummy/mirage/scenarios/default.js" : "mirage/scenarios/default.js"; - let scenarioLine = '\tserver.createList\(\''+entityName+'\', 15\);\n'; + let scenarioLine = '\tserver.createList\(\''+entityName+'\', '+nbFakeData+'\);\n'; if (!fs.existsSync(mirageScenarioPath)) { this.ui.writeLine("Creating file "+mirageScenarioPath); let scenarioContent = "export default function(server) {\n"+scenarioLine+"}\n"; @@ -139,13 +161,18 @@ module.exports = { // Complete /mirage/config.js let mirageConfigPath = (options.dummy) ? "tests/dummy/mirage/config.js" : "mirage/config.js"; - let configLine = "this.get('/"+inflection.pluralize(entityName)+"', '"+inflection.pluralize(entityName)+"');\n" + let configLine = "\t\tthis.get('/"+inflection.pluralize(entityName)+"', '"+inflection.pluralize(entityName)+"');" if (!fs.existsSync(mirageConfigPath)) { this.ui.writeLine("Creating file "+mirageConfigPath); - let configContent = "export default function() {\n\tthis.namespace = '';\n"+configLine+"}\n"; + let configContent = "import ENV from './../config/environment';\n"+ + "export default function() {\n"+ + "\tthis.namespace = '';\n"+ + "\tif (!ENV.APP.proxy) {\n"+configLine+"\n\t} else {\n"+ + "\t\tthis.passthrough();\n\t}\n}\n"; fs.writeFileSync(mirageConfigPath, configContent, 'utf-8','w+'); } else { - addLineToFile(this, mirageConfigPath, /this\.namespace = \'\';/, configLine); + //addLineToFile(this, mirageConfigPath, /this\.namespace = \'\';/, configLine); + addLineToFile(this, mirageConfigPath, /if \(ENV\.APP\.proxy\) {/, configLine); } // Add route in router.js for the entity page diff --git a/cloud/xmind/API Gateway.xmind b/cloud/xmind/API Gateway.xmind index c939d5e7dcee43dfcc2be868ef53157f35f8479d..b23a3cc360c485de2f0e0902e22fbe8aefb568f5 100644 Binary files a/cloud/xmind/API Gateway.xmind and b/cloud/xmind/API Gateway.xmind differ diff --git a/package.json b/package.json index 153cd6e7dcab5f276aed726797e6025f117cff6f..e1f9e36584e5f856d3ec7a4a4c47e31929136811 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ember-aws-ehipster", - "version": "0.0.4", + "version": "0.0.6", "description": "The default blueprint for ember-cli addons.", "keywords": [ "ember-addon" diff --git a/tests/unit/adapters/application-test.js b/tests/unit/adapters/application-test.js new file mode 100644 index 0000000000000000000000000000000000000000..eff23bb94216c88b2504a7fdf7b32b07bc484ce1 --- /dev/null +++ b/tests/unit/adapters/application-test.js @@ -0,0 +1,12 @@ +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); + }); +});