2017-10-19 15:51:08 -04:00
|
|
|
import { CLOSE_STATUS_TYPE } from "discourse/controllers/edit-topic-timer";
|
2019-10-30 16:13:48 -04:00
|
|
|
import Mixin from "@ember/object/mixin";
|
2019-11-08 14:00:19 -05:00
|
|
|
import { isNone } from "@ember/utils";
|
2017-11-21 05:53:09 -05:00
|
|
|
import { timeframeDetails } from "select-kit/components/future-date-input-selector";
|
2017-10-19 15:51:08 -04:00
|
|
|
|
2019-10-30 15:03:08 -04:00
|
|
|
export default Mixin.create({
|
2017-11-21 05:53:09 -05:00
|
|
|
_computeIconsForValue(value) {
|
2017-10-19 15:51:08 -04:00
|
|
|
let { icon } = this._updateAt(value);
|
|
|
|
|
|
|
|
if (icon) {
|
2017-11-21 05:53:09 -05:00
|
|
|
return icon.split(",");
|
2017-10-19 15:51:08 -04:00
|
|
|
}
|
|
|
|
|
2017-11-21 05:53:09 -05:00
|
|
|
return [];
|
2017-10-19 15:51:08 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_computeDatetimeForValue(value) {
|
2019-11-08 14:00:19 -05:00
|
|
|
if (isNone(value)) {
|
2017-10-19 15:51:08 -04:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
let { time } = this._updateAt(value);
|
|
|
|
if (time) {
|
2017-10-26 13:50:31 -04:00
|
|
|
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
|
|
|
}
|
2017-10-26 13:50:31 -04:00
|
|
|
return time;
|
2017-10-19 15:51:08 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_updateAt(selection) {
|
2020-02-03 08:22:14 -05:00
|
|
|
const details = timeframeDetails(selection);
|
2017-11-21 05:53:09 -05:00
|
|
|
|
2017-10-26 13:50:31 -04:00
|
|
|
if (details) {
|
|
|
|
return {
|
|
|
|
time: details.when(
|
|
|
|
moment(),
|
2019-05-27 04:15:39 -04:00
|
|
|
this.statusType !== CLOSE_STATUS_TYPE ? 8 : 18
|
2017-10-26 13:50:31 -04:00
|
|
|
),
|
|
|
|
icon: details.icon,
|
|
|
|
};
|
2017-10-19 15:51:08 -04:00
|
|
|
}
|
|
|
|
|
2017-10-26 13:50:31 -04:00
|
|
|
return { time: moment() };
|
2017-10-19 15:51:08 -04:00
|
|
|
},
|
|
|
|
});
|