discourse/app/assets/javascripts/select-kit/components/future-date-input-selector/mixin.js.es6

49 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import { CLOSE_STATUS_TYPE } from "discourse/controllers/edit-topic-timer";
import { timeframeDetails } from "select-kit/components/future-date-input-selector";
2017-10-19 15:51:08 -04:00
export default Ember.Mixin.create({
_computeIconsForValue(value) {
2018-06-15 11:03:24 -04:00
let { icon } = this._updateAt(value);
2017-10-19 15:51:08 -04:00
if (icon) {
return icon.split(",");
2017-10-19 15:51:08 -04:00
}
return [];
2017-10-19 15:51:08 -04:00
},
_computeDatetimeForValue(value) {
if (Ember.isNone(value)) {
return null;
}
2018-06-15 11:03:24 -04:00
let { time } = this._updateAt(value);
2017-10-19 15:51:08 -04:00
if (time) {
let details = timeframeDetails(value);
if (!details.displayWhen) {
time = null;
}
if (time && details.format) {
return time.format(details.format);
}
2017-10-19 15:51:08 -04:00
}
return time;
2017-10-19 15:51:08 -04:00
},
_updateAt(selection) {
let details = timeframeDetails(selection);
if (details) {
return {
2018-06-15 11:03:24 -04:00
time: details.when(
moment(),
this.get("statusType") !== CLOSE_STATUS_TYPE ? 8 : 18
),
icon: details.icon
};
2017-10-19 15:51:08 -04:00
}
return { time: moment() };
2018-06-15 11:03:24 -04:00
}
2017-10-19 15:51:08 -04:00
});