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
Matthew Dillon dbcc573f69 Quill DDAU
2015-11-04 11:35:31 -07:00

32 lines
701 B
JavaScript

import Ember from 'ember';
/* global Quill */
export default Ember.Component.extend({
quill: null,
value: null,
update: null,
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.attrs['update'](Ember.$(quill.getHTML()).html());
}
});
this.set('quill', quill);
},
});