mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
7ab0db9be7
no issue - converted publish menu and `gh-tags-list-item` components to glimmer syntax so data attributes can be passed in via `...attributes` - added explicit `data-test-button` bound attribute to `gh-task-button` component - moved `modal-theme-warnings` auto-bound data attribute from JS file to explicit html attribute in template
71 lines
1.8 KiB
JavaScript
71 lines
1.8 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import moment from 'moment';
|
|
import {action} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
export default class GhPublishmenuScheduledComponent extends Component {
|
|
@service clock;
|
|
@service session;
|
|
@service feature;
|
|
@service settings;
|
|
@service config;
|
|
|
|
// used to set minDate in datepicker
|
|
@tracked minDate = null;
|
|
|
|
get timeToPublished() {
|
|
let publishedAtUTC = this.args.post.publishedAtUTC;
|
|
|
|
if (!publishedAtUTC) {
|
|
return null;
|
|
}
|
|
|
|
this.clock.get('second');
|
|
|
|
return publishedAtUTC.toNow(true);
|
|
}
|
|
|
|
constructor() {
|
|
super(...arguments);
|
|
this.minDate = new Date();
|
|
}
|
|
|
|
@action
|
|
setSaveType(type) {
|
|
if (this.saveType !== type) {
|
|
this.minDate = new Date();
|
|
this.args.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.args.post.set('publishedAtBlogTZ', new Date());
|
|
} else {
|
|
this.args.post.set('publishedAtBlogTZ', this.args.post.publishedAtUTC);
|
|
}
|
|
|
|
this.args.post.validate();
|
|
}
|
|
}
|
|
|
|
@action
|
|
setDate(date) {
|
|
let post = this.args.post;
|
|
let dateString = moment(date).format('YYYY-MM-DD');
|
|
|
|
post.set('publishedAtBlogDate', dateString);
|
|
return post.validate();
|
|
}
|
|
|
|
@action
|
|
setTime(time) {
|
|
let post = this.args.post;
|
|
|
|
if (!this.args.isClosing) {
|
|
post.set('publishedAtBlogTime', time);
|
|
return post.validate();
|
|
}
|
|
}
|
|
}
|