mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
352c4af1d7
no issue - ran [es5-getter-ember-codemod](https://github.com/rondale-sc/es5-getter-ember-codemod) - [es5 getters RFC](https://github.com/emberjs/rfcs/blob/master/text/0281-es5-getters.md) - updates the majority of `object.get('property')` with `object.property` with exceptions: - `.get('nested.property')` - it's not possible to determine if this is relying on "safe" path chaining for when `nested` doesn't exist - `.get('config.x')` and `.get('settings.x')` - both our `config` and `settings` services are proxy objects which do not support es5 getters - this PR is not exhaustive, there are still a number of places where `.get('service.foo')` and similar could be replaced but it gets us a long way there in a quick and automated fashion
71 lines
1.9 KiB
JavaScript
71 lines
1.9 KiB
JavaScript
import Component from '@ember/component';
|
|
import moment from 'moment';
|
|
import {computed} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default Component.extend({
|
|
clock: service(),
|
|
|
|
post: null,
|
|
saveType: null,
|
|
isClosing: null,
|
|
|
|
// used to set minDate in datepicker
|
|
_minDate: null,
|
|
|
|
'data-test-publishmenu-scheduled': true,
|
|
|
|
timeToPublished: computed('post.publishedAtUTC', 'clock.second', function () {
|
|
let publishedAtUTC = this.get('post.publishedAtUTC');
|
|
|
|
if (!publishedAtUTC) {
|
|
return null;
|
|
}
|
|
|
|
this.get('clock.second');
|
|
|
|
return publishedAtUTC.toNow(true);
|
|
}),
|
|
|
|
didInsertElement() {
|
|
this.set('_minDate', new Date());
|
|
this.setSaveType('schedule');
|
|
},
|
|
|
|
actions: {
|
|
setSaveType(type) {
|
|
if (this.saveType !== type) {
|
|
this.set('_minDate', new Date());
|
|
this.setSaveType(type);
|
|
|
|
// when draft switch to now to avoid validation errors
|
|
// when schedule switch back to saved date to avoid unnecessary re-scheduling
|
|
if (type === 'draft') {
|
|
this.post.set('publishedAtBlogTZ', new Date());
|
|
} else {
|
|
this.post.set('publishedAtBlogTZ', this.get('post.publishedAtUTC'));
|
|
}
|
|
|
|
this.post.validate();
|
|
}
|
|
},
|
|
|
|
setDate(date) {
|
|
let post = this.post;
|
|
let dateString = moment(date).format('YYYY-MM-DD');
|
|
|
|
post.set('publishedAtBlogDate', dateString);
|
|
return post.validate();
|
|
},
|
|
|
|
setTime(time) {
|
|
let post = this.post;
|
|
|
|
if (!this.isClosing) {
|
|
post.set('publishedAtBlogTime', time);
|
|
return post.validate();
|
|
}
|
|
}
|
|
}
|
|
});
|