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/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 122e534..1910ae0 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 daba50a..2c4384f 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(); };