Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.1 KiB
JavaScript
Raw Normal View History

2017-10-19 12:51:08 -07:00
import { CLOSE_STATUS_TYPE } from "discourse/controllers/edit-topic-timer";
import Mixin from "@ember/object/mixin";
2019-11-08 13:00:19 -06:00
import { isNone } from "@ember/utils";
import { timeframeDetails } from "discourse/lib/timeframes-builder";
2017-10-19 12:51:08 -07:00
export default Mixin.create({
_computeIconsForValue(value) {
2017-10-19 12:51:08 -07:00
let { icon } = this._updateAt(value);
if (icon) {
return icon.split(",");
2017-10-19 12:51:08 -07:00
}
return [];
2017-10-19 12:51:08 -07:00
},
_computeDatetimeForValue(value) {
2019-11-08 13:00:19 -06:00
if (isNone(value)) {
2017-10-19 12:51:08 -07:00
return null;
}
let { time } = this._updateAt(value);
if (time) {
let details = timeframeDetails(value);
if (!details.displayWhen) {
time = null;
}
if (time && details.format) {
return time.format(details.format);
}
2017-10-19 12:51:08 -07:00
}
return time;
2017-10-19 12:51:08 -07:00
},
_updateAt(selection) {
const details = timeframeDetails(selection);
if (details) {
return {
time: details.when(
moment(),
this.statusType !== CLOSE_STATUS_TYPE ? 8 : 18
),
icon: details.icon,
};
2017-10-19 12:51:08 -07:00
}
return { time: moment() };
2017-10-19 12:51:08 -07:00
},
});