Add in quill WYSIWYG

This commit is contained in:
Matthew Dillon 2015-07-20 11:03:03 -08:00
parent da4ebc9b29
commit c276cdc74c
6 changed files with 55 additions and 2 deletions

View file

@ -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);
},
});

View file

@ -0,0 +1,11 @@
<div class="ql-toolbar toolbar">
<span class="ql-format-group">
<span title="Bold" class="ql-format-button ql-bold"></span>
<span class="ql-format-separator"></span>
<span title="Italic" class="ql-format-button ql-italic"></span>
<span class="ql-format-separator"></span>
<span title="Underline" class="ql-format-button ql-underline"></span>
</span>
</div>
<div class="ql-editor editor"></div>

View file

@ -1,3 +1,7 @@
.ql-editor {
font-size: 18px;
}
.overflow-div { .overflow-div {
white-space: nowrap; white-space: nowrap;
overflow: auto; overflow: auto;

View file

@ -18,6 +18,7 @@
"select2": "3.5.2", "select2": "3.5.2",
"antiscroll": "git://github.com/azirbel/antiscroll.git#90391fb371c7be769bc32e7287c5271981428356", "antiscroll": "git://github.com/azirbel/antiscroll.git#90391fb371c7be769bc32e7287c5271981428356",
"jquery-mousewheel": "~3.1.4", "jquery-mousewheel": "~3.1.4",
"jquery-ui": "~1.11.4" "jquery-ui": "~1.11.4",
"quill": "~0.19.14"
} }
} }

View file

@ -32,7 +32,7 @@ module.exports = function(environment) {
'default-src': "'none'", 'default-src': "'none'",
'script-src': "'self'", 'script-src': "'self'",
'font-src': "'self'", 'font-src': "'self'",
'img-src': "'self'", 'img-src': "'self' data:",
'style-src': "'self' 'unsafe-inline'", 'style-src': "'self' 'unsafe-inline'",
'media-src': "'self'" 'media-src': "'self'"
}, },

View file

@ -10,6 +10,9 @@ module.exports = function(defaults) {
// flakes (and deps) // flakes (and deps)
app.import('bower_components/flakes/css/all.css'); app.import('bower_components/flakes/css/all.css');
app.import('bower_components/gridforms/gridforms/gridforms.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 //////////////////////////////////////////////////////////////////////// // LIBS ////////////////////////////////////////////////////////////////////////
// flakes (and deps) // flakes (and deps)
@ -19,6 +22,8 @@ module.exports = function(defaults) {
app.import('bower_components/flakes/js/base.js'); app.import('bower_components/flakes/js/base.js');
// moment // moment
app.import('bower_components/moment/moment.js'); app.import('bower_components/moment/moment.js');
// quill
app.import('bower_components/quill/dist/quill.min.js');
return app.toTree(); return app.toTree();
}; };