90 lines
2.4 KiB
JavaScript
90 lines
2.4 KiB
JavaScript
import { isEmpty } from "@ember/utils";
|
|
import { equal, or, readOnly } from "@ember/object/computed";
|
|
import { schedule } from "@ember/runloop";
|
|
import Component from "@ember/component";
|
|
import discourseComputed, {
|
|
observes,
|
|
on
|
|
} from "discourse-common/utils/decorators";
|
|
import {
|
|
PUBLISH_TO_CATEGORY_STATUS_TYPE,
|
|
OPEN_STATUS_TYPE,
|
|
DELETE_STATUS_TYPE,
|
|
REMINDER_TYPE,
|
|
CLOSE_STATUS_TYPE,
|
|
BUMP_TYPE
|
|
} from "discourse/controllers/edit-topic-timer";
|
|
|
|
export default Component.extend({
|
|
selection: readOnly("topicTimer.status_type"),
|
|
autoOpen: equal("selection", OPEN_STATUS_TYPE),
|
|
autoClose: equal("selection", CLOSE_STATUS_TYPE),
|
|
autoDelete: equal("selection", DELETE_STATUS_TYPE),
|
|
autoBump: equal("selection", BUMP_TYPE),
|
|
publishToCategory: equal("selection", PUBLISH_TO_CATEGORY_STATUS_TYPE),
|
|
reminder: equal("selection", REMINDER_TYPE),
|
|
showTimeOnly: or("autoOpen", "autoDelete", "reminder", "autoBump"),
|
|
|
|
@discourseComputed(
|
|
"topicTimer.updateTime",
|
|
"publishToCategory",
|
|
"topicTimer.category_id"
|
|
)
|
|
saveDisabled(updateTime, publishToCategory, topicTimerCategoryId) {
|
|
return isEmpty(updateTime) || (publishToCategory && !topicTimerCategoryId);
|
|
},
|
|
|
|
@discourseComputed("topic.visible")
|
|
excludeCategoryId(visible) {
|
|
if (visible) return this.get("topic.category_id");
|
|
},
|
|
|
|
@on("init")
|
|
@observes("topicTimer", "topicTimer.execute_at", "topicTimer.duration")
|
|
_setUpdateTime() {
|
|
let time = null;
|
|
const executeAt = this.get("topicTimer.execute_at");
|
|
|
|
if (executeAt && this.get("topicTimer.based_on_last_post")) {
|
|
time = this.get("topicTimer.duration");
|
|
} else if (executeAt) {
|
|
const closeTime = moment(executeAt);
|
|
|
|
if (closeTime > moment()) {
|
|
time = closeTime.format("YYYY-MM-DD HH:mm");
|
|
}
|
|
}
|
|
|
|
this.set("topicTimer.updateTime", time);
|
|
},
|
|
|
|
@observes("selection")
|
|
_updateBasedOnLastPost() {
|
|
if (!this.autoClose) {
|
|
schedule("afterRender", () => {
|
|
this.set("topicTimer.based_on_last_post", false);
|
|
});
|
|
}
|
|
},
|
|
|
|
didReceiveAttrs() {
|
|
this._super(...arguments);
|
|
|
|
// TODO: get rid of this hack
|
|
schedule("afterRender", () => {
|
|
if (!this.get("topicTimer.status_type")) {
|
|
this.set(
|
|
"topicTimer.status_type",
|
|
this.get("timerTypes.firstObject.id")
|
|
);
|
|
}
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
onChangeTimerType(value) {
|
|
this.set("topicTimer.status_type", value);
|
|
}
|
|
}
|
|
});
|