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 bb05e114d7 Clean up Quill Component
Fixes #54
2015-11-13 08:29:48 -07:00

44 lines
902 B
JavaScript

import Ember from 'ember';
/* global Quill */
const { Component } = Ember;
export default Component.extend({
// Passed in
value: null,
// Internal
quill: null,
didReceiveAttrs() {
this._super(...arguments);
if (!this.attrs.update) {
throw new Error(`You must provide an \`update\` action.`);
}
},
didInsertElement: function() {
const 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);
},
});