Ghost/ghost/admin/lib/koenig-editor/addon/components/koenig-card-html.js
Kevin Ansfield 1be7dd1770 Ran native classes codemod for lib/koenig-editor/addon/components
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
```
2022-02-03 18:57:21 +00:00

95 lines
2.3 KiB
JavaScript

import Component from '@ember/component';
import classic from 'ember-classic-decorator';
import {action, computed, set} from '@ember/object';
import {utils as ghostHelperUtils} from '@tryghost/helpers';
import {isBlank} from '@ember/utils';
import {run} from '@ember/runloop';
const {countWords, countImages} = ghostHelperUtils;
@classic
export default class KoenigCardHtml extends Component {
// attrs
payload = null;
isSelected = false;
isEditing = false;
headerOffset = 0;
// closure actions
selectCard() {}
deselectCard() {}
editCard() {}
saveCard() {}
deleteCard() {}
registerComponent() {}
@computed('payload.html')
get isEmpty() {
return isBlank(this.payload.html);
}
@computed('payload.html')
get counts() {
return {
wordCount: countWords(this.payload.html),
imageCount: countImages(this.payload.html)
};
}
@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)
}]
};
}
init() {
super.init(...arguments);
let payload = this.payload || {};
// CodeMirror errors on a `null` or `undefined` value
if (!payload.html) {
set(payload, 'html', '');
}
this.set('payload', payload);
this.registerComponent(this);
}
@action
updateHtml(html) {
this._updatePayloadAttr('html', html);
}
@action
leaveEditMode() {
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);
}
}