mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
1be7dd1770
refs https://github.com/TryGhost/Ghost/issues/14101 - ran native classes codemod for koenig-editor in-repo-addon components - added `ember-classic-decorator` to addon's package.json to fix errors when importing Some files failed to convert automatically: ``` ❯ grep -rL "@classic\|default class" lib/koenig-editor/addon/components/**/*.js lib/koenig-editor/addon/components/koenig-alt-input.js lib/koenig-editor/addon/components/koenig-card-image.js lib/koenig-editor/addon/components/koenig-editor.js lib/koenig-editor/addon/components/koenig-toolbar.js ```
163 lines
3.9 KiB
JavaScript
163 lines
3.9 KiB
JavaScript
import Component from '@ember/component';
|
|
import Ember from 'ember';
|
|
import classic from 'ember-classic-decorator';
|
|
import {action, computed, set} from '@ember/object';
|
|
import {utils as ghostHelperUtils} from '@tryghost/helpers';
|
|
import {htmlSafe} from '@ember/template';
|
|
import {isBlank} from '@ember/utils';
|
|
import {run} from '@ember/runloop';
|
|
|
|
const {Handlebars} = Ember;
|
|
const {countWords} = ghostHelperUtils;
|
|
|
|
const CM_MODE_MAP = {
|
|
html: 'htmlmixed',
|
|
xhtml: 'htmlmixed',
|
|
hbs: 'handlebars',
|
|
js: 'javascript'
|
|
};
|
|
|
|
@classic
|
|
export default class KoenigCardCode extends Component {
|
|
// attrs
|
|
payload = null;
|
|
isSelected = false;
|
|
isEditing = false;
|
|
headerOffset = 0;
|
|
showLanguageInput = true;
|
|
|
|
// closure actions
|
|
editCard() {}
|
|
saveCard() {}
|
|
selectCard() {}
|
|
deselectCard() {}
|
|
deleteCard() {}
|
|
registerComponent() {}
|
|
moveCursorToNextSection() {}
|
|
moveCursorToPrevSection() {}
|
|
addParagraphAfterCard() {}
|
|
|
|
@computed('payload.code')
|
|
get isEmpty() {
|
|
return isBlank(this.payload.code);
|
|
}
|
|
|
|
@computed('payload.code')
|
|
get counts() {
|
|
return {wordCount: countWords(this.payload.code)};
|
|
}
|
|
|
|
@computed('isEditing')
|
|
get toolbar() {
|
|
if (this.isEditing) {
|
|
return false;
|
|
}
|
|
|
|
return {
|
|
items: [{
|
|
buttonClass: 'fw4 flex items-center white',
|
|
icon: 'koenig/kg-edit',
|
|
iconClass: 'fill-white',
|
|
title: 'Edit',
|
|
text: '',
|
|
action: run.bind(this, this.editCard)
|
|
}]
|
|
};
|
|
}
|
|
|
|
@computed('payload.code')
|
|
get escapedCode() {
|
|
let escapedCode = Handlebars.Utils.escapeExpression(this.payload.code);
|
|
return htmlSafe(escapedCode);
|
|
}
|
|
|
|
@computed('payload.language')
|
|
get cmMode() {
|
|
let {language} = this.payload;
|
|
return CM_MODE_MAP[language] || language;
|
|
}
|
|
|
|
@computed('isEditing')
|
|
get cardStyle() {
|
|
let style = this.isEditing ? 'background-color: #f4f8fb; border-color: #f4f8fb' : '';
|
|
return htmlSafe(style);
|
|
}
|
|
|
|
@computed('showLanguageInput')
|
|
get languageInputStyle() {
|
|
let styles = ['top: 6px', 'right: 6px'];
|
|
if (!this.showLanguageInput) {
|
|
styles.push('opacity: 0');
|
|
}
|
|
return htmlSafe(styles.join('; '));
|
|
}
|
|
|
|
init() {
|
|
super.init(...arguments);
|
|
let payload = this.payload || {};
|
|
|
|
// CodeMirror errors on a `null` or `undefined` value
|
|
if (!payload.code) {
|
|
set(payload, 'code', '');
|
|
}
|
|
|
|
this.set('payload', payload);
|
|
|
|
this.registerComponent(this);
|
|
}
|
|
|
|
@action
|
|
updateCode(code) {
|
|
this._hideLanguageInput();
|
|
this._updatePayloadAttr('code', code);
|
|
}
|
|
|
|
@action
|
|
updateCaption(caption) {
|
|
this._updatePayloadAttr('caption', caption);
|
|
}
|
|
|
|
@action
|
|
enterEditMode() {
|
|
this._addMousemoveHandler();
|
|
}
|
|
|
|
@action
|
|
leaveEditMode() {
|
|
this._removeMousemoveHandler();
|
|
|
|
if (this.isEmpty) {
|
|
// afterRender is required to avoid double modification of `isSelected`
|
|
// TODO: see if there's a way to avoid afterRender
|
|
run.scheduleOnce('afterRender', this, this.deleteCard);
|
|
}
|
|
}
|
|
|
|
_updatePayloadAttr(attr, value) {
|
|
let payload = this.payload;
|
|
let save = this.saveCard;
|
|
|
|
set(payload, attr, value);
|
|
|
|
// update the mobiledoc and stay in edit mode
|
|
save(payload, false);
|
|
}
|
|
|
|
_hideLanguageInput() {
|
|
this.set('showLanguageInput', false);
|
|
}
|
|
|
|
_showLanguageInput() {
|
|
this.set('showLanguageInput', true);
|
|
}
|
|
|
|
_addMousemoveHandler() {
|
|
this._mousemoveHandler = run.bind(this, this._showLanguageInput);
|
|
window.addEventListener('mousemove', this._mousemoveHandler);
|
|
}
|
|
|
|
_removeMousemoveHandler() {
|
|
window.removeEventListener('mousemove', this._mousemoveHandler);
|
|
}
|
|
}
|