This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/components/text-editor/component.js
2015-07-20 12:17:32 -08:00

32 lines
696 B
JavaScript

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