diff --git a/app/pods/components/forms/species-form/template.hbs b/app/pods/components/forms/species-form/template.hbs index 132c089..011f62f 100644 --- a/app/pods/components/forms/species-form/template.hbs +++ b/app/pods/components/forms/species-form/template.hbs @@ -26,7 +26,7 @@
- {{textarea value=species.etymology cols="70" rows="5"}} + {{text-editor value=species.etymology}}
diff --git a/app/pods/components/forms/strain-form/template.hbs b/app/pods/components/forms/strain-form/template.hbs index e6b9ee4..79acd02 100644 --- a/app/pods/components/forms/strain-form/template.hbs +++ b/app/pods/components/forms/strain-form/template.hbs @@ -25,7 +25,7 @@
- {{textarea value=strain.isolatedFrom cols="70" rows="5"}} + {{text-editor value=strain.isolatedFrom}}
@@ -45,7 +45,7 @@
- {{textarea value=strain.notes cols="70" rows="5"}} + {{text-editor value=strain.notes}}
diff --git a/app/pods/components/text-editor/component.js b/app/pods/components/text-editor/component.js new file mode 100644 index 0000000..07c8f7a --- /dev/null +++ b/app/pods/components/text-editor/component.js @@ -0,0 +1,32 @@ +import Ember from 'ember'; +/* global Quill */ + +export default Ember.Component.extend({ + quill: null, + value: null, // passed in + + didInsertElement: function() { + let quill = new Quill(`#${this.get('elementId')} .editor`, { + formats: ['bold', 'italic', 'underline'], + modules: { + 'toolbar': { container: `#${this.get('elementId')} .toolbar` } + }, + theme: 'snow' + }); + + let val = this.get('value'); + if (!val) { + val = ''; + } + quill.setHTML(val); + + quill.on('text-change', (delta, source) => { + if (source === 'user') { + this.set('value', Ember.$(quill.getHTML()).html()); + } + }); + + this.set('quill', quill); + }, + +}); diff --git a/app/pods/components/text-editor/template.hbs b/app/pods/components/text-editor/template.hbs new file mode 100644 index 0000000..dfadffd --- /dev/null +++ b/app/pods/components/text-editor/template.hbs @@ -0,0 +1,11 @@ +
+ + + + + + + +
+ +
diff --git a/app/pods/protected/species/show/template.hbs b/app/pods/protected/species/show/template.hbs index fac3273..6d7252f 100644 --- a/app/pods/protected/species/show/template.hbs +++ b/app/pods/protected/species/show/template.hbs @@ -34,7 +34,7 @@
Etymology
- {{model.etymology}} + {{{model.etymology}}}
diff --git a/app/pods/protected/strains/edit/controller.js b/app/pods/protected/strains/edit/controller.js index e570dff..02e76a4 100644 --- a/app/pods/protected/strains/edit/controller.js +++ b/app/pods/protected/strains/edit/controller.js @@ -18,7 +18,7 @@ export default Ember.Controller.extend({ }, cancel: function() { - let strain = this.get('protected.strain'); + let strain = this.get('strain'); strain.get('errors').clear(); strain.rollback(); diff --git a/app/pods/protected/strains/show/template.hbs b/app/pods/protected/strains/show/template.hbs index 1ba5fe6..1b96c8a 100644 --- a/app/pods/protected/strains/show/template.hbs +++ b/app/pods/protected/strains/show/template.hbs @@ -49,7 +49,7 @@
Isolated From
- {{model.isolatedFrom}} + {{{model.isolatedFrom}}}
@@ -59,7 +59,7 @@
Notes
- {{model.notes}} + {{{model.notes}}}
diff --git a/app/styles/app.css b/app/styles/app.css index 2a02ea6..b6f0827 100644 --- a/app/styles/app.css +++ b/app/styles/app.css @@ -1,3 +1,7 @@ +.ql-editor { + font-size: 18px; +} + .overflow-div { white-space: nowrap; overflow: auto; diff --git a/bower.json b/bower.json index 14bce88..33331a1 100644 --- a/bower.json +++ b/bower.json @@ -18,6 +18,7 @@ "select2": "3.5.2", "antiscroll": "git://github.com/azirbel/antiscroll.git#90391fb371c7be769bc32e7287c5271981428356", "jquery-mousewheel": "~3.1.4", - "jquery-ui": "~1.11.4" + "jquery-ui": "~1.11.4", + "quill": "~0.19.14" } } diff --git a/config/environment.js b/config/environment.js index 5b6edc6..b869a30 100644 --- a/config/environment.js +++ b/config/environment.js @@ -32,7 +32,7 @@ module.exports = function(environment) { 'default-src': "'none'", 'script-src': "'self'", 'font-src': "'self'", - 'img-src': "'self'", + 'img-src': "'self' data:", 'style-src': "'self' 'unsafe-inline'", 'media-src': "'self'" }, diff --git a/ember-cli-build.js b/ember-cli-build.js index 8c5e8c0..995161c 100644 --- a/ember-cli-build.js +++ b/ember-cli-build.js @@ -10,6 +10,9 @@ module.exports = function(defaults) { // flakes (and deps) app.import('bower_components/flakes/css/all.css'); app.import('bower_components/gridforms/gridforms/gridforms.css'); + // quill + app.import('bower_components/quill/dist/quill.base.css'); + app.import('bower_components/quill/dist/quill.snow.css'); // LIBS //////////////////////////////////////////////////////////////////////// // flakes (and deps) @@ -19,6 +22,8 @@ module.exports = function(defaults) { app.import('bower_components/flakes/js/base.js'); // moment app.import('bower_components/moment/moment.js'); + // quill + app.import('bower_components/quill/dist/quill.min.js'); return app.toTree(); };