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