mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
48e3bf003d
no issue - https://github.com/ember-cli/eslint-plugin-ember/blob/master/docs/rules/order-in-components.md - https://github.com/ember-cli/eslint-plugin-ember/blob/master/docs/rules/order-in-controllers.md - https://github.com/ember-cli/eslint-plugin-ember/blob/master/docs/rules/order-in-routes.md
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
import Component from '@ember/component';
|
|
import Ember from 'ember';
|
|
import {computed} from '@ember/object';
|
|
import {reads} from '@ember/object/computed';
|
|
import {task, timeout} from 'ember-concurrency';
|
|
|
|
export default Component.extend({
|
|
post: null,
|
|
isSaving: false,
|
|
|
|
'data-test-editor-post-status': true,
|
|
|
|
_isSaving: false,
|
|
|
|
isNew: reads('post.isNew'),
|
|
isScheduled: reads('post.isScheduled'),
|
|
|
|
isPublished: computed('post.{isPublished,pastScheduledTime}', function () {
|
|
let isPublished = this.get('post.isPublished');
|
|
let pastScheduledTime = this.get('post.pastScheduledTime');
|
|
|
|
return isPublished || pastScheduledTime;
|
|
}),
|
|
|
|
// isSaving will only be true briefly whilst the post is saving,
|
|
// we want to ensure that the "Saving..." message is shown for at least
|
|
// a few seconds so that it's noticeable
|
|
didReceiveAttrs() {
|
|
if (this.get('isSaving')) {
|
|
this.get('showSavingMessage').perform();
|
|
}
|
|
},
|
|
|
|
showSavingMessage: task(function* () {
|
|
this.set('_isSaving', true);
|
|
yield timeout(Ember.testing ? 0 : 3000); // eslint-disable-line
|
|
this.set('_isSaving', false);
|
|
}).drop()
|
|
});
|