Ghost/ghost/admin/lib/koenig-editor/addon/components/koenig-card-markdown.js
Kevin Ansfield cfc32f2539 Koenig - Remove old Koenig alpha code
refs https://github.com/TryGhost/Ghost/issues/9311
- old code is no longer needed for reference so cleaning up
2018-02-15 10:46:23 +00:00

61 lines
1.5 KiB
JavaScript

import Component from '@ember/component';
import formatMarkdown from 'ghost-admin/utils/format-markdown';
import layout from '../templates/components/koenig-card-markdown';
import {computed} from '@ember/object';
import {htmlSafe} from '@ember/string';
import {run} from '@ember/runloop';
import {set} from '@ember/object';
export default Component.extend({
layout,
// attrs
payload: null,
isSelected: false,
isEditing: false,
// properties
toolbar: null,
// closure actions
saveCard: null,
selectCard: null,
renderedMarkdown: computed('payload.markdown', function () {
return htmlSafe(formatMarkdown(this.get('payload.markdown')));
}),
init() {
this._super(...arguments);
this.set('toolbar', {
items: [{
icon: 'trash',
title: 'Delete',
action: () => {}
}]
});
},
actions: {
enterEditMode() {
// this action is called before the component is rendered so we
// need to wait to ensure that the textarea element is present
run.scheduleOnce('afterRender', this, this._focusTextarea);
},
updateMarkdown(markdown) {
let payload = this.get('payload');
let save = this.get('saveCard');
set(payload, 'markdown', markdown);
// update the mobiledoc and stay in edit mode
save(payload, false);
}
},
_focusTextarea() {
this.element.querySelector('textarea').focus();
}
});