2017-10-20 03:51:08 +08:00
|
|
|
import { iconHTML } from 'discourse-common/lib/icon-library';
|
|
|
|
import { CLOSE_STATUS_TYPE } from 'discourse/controllers/edit-topic-timer';
|
2017-10-27 01:50:31 +08:00
|
|
|
import { timeframeDetails } from 'select-box-kit/components/future-date-input-selector';
|
2017-10-20 03:51:08 +08:00
|
|
|
|
|
|
|
export default Ember.Mixin.create({
|
|
|
|
_computeIconForValue(value) {
|
|
|
|
let {icon} = this._updateAt(value);
|
|
|
|
|
|
|
|
if (icon) {
|
|
|
|
return icon.split(",").map(i => iconHTML(i)).join(" ");
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
|
|
|
_computeDatetimeForValue(value) {
|
|
|
|
if (Ember.isNone(value)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
let {time} = this._updateAt(value);
|
|
|
|
if (time) {
|
|
|
|
|
2017-10-27 01:50:31 +08:00
|
|
|
let details = timeframeDetails(value);
|
|
|
|
if (!details.displayWhen) {
|
|
|
|
time = null;
|
|
|
|
}
|
|
|
|
if (time && details.format) {
|
|
|
|
return time.format(details.format);
|
|
|
|
}
|
2017-10-20 03:51:08 +08:00
|
|
|
}
|
2017-10-27 01:50:31 +08:00
|
|
|
return time;
|
2017-10-20 03:51:08 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
_updateAt(selection) {
|
2017-10-27 01:50:31 +08:00
|
|
|
let details = timeframeDetails(selection);
|
|
|
|
if (details) {
|
|
|
|
return {
|
|
|
|
time: details.when(moment(), this.get('statusType') !== CLOSE_STATUS_TYPE ? 8 : 18),
|
|
|
|
icon: details.icon
|
|
|
|
};
|
2017-10-20 03:51:08 +08:00
|
|
|
}
|
|
|
|
|
2017-10-27 01:50:31 +08:00
|
|
|
return { time: moment() };
|
2017-10-20 03:51:08 +08:00
|
|
|
},
|
|
|
|
});
|