discourse/app/assets/javascripts/discourse/controllers/feature-topic.js.es6
2018-06-15 17:03:24 +02:00

171 lines
4.5 KiB
JavaScript

import { ajax } from "discourse/lib/ajax";
import ModalFunctionality from "discourse/mixins/modal-functionality";
import { categoryLinkHTML } from "discourse/helpers/category-link";
import computed from "ember-addons/ember-computed-decorators";
import InputValidation from "discourse/models/input-validation";
export default Ember.Controller.extend(ModalFunctionality, {
topicController: Ember.inject.controller("topic"),
loading: true,
pinnedInCategoryCount: 0,
pinnedGloballyCount: 0,
bannerCount: 0,
reset() {
this.setProperties({
"model.pinnedInCategoryUntil": null,
"model.pinnedGloballyUntil": null,
pinInCategoryTipShownAt: false,
pinGloballyTipShownAt: false
});
},
@computed("model.category")
categoryLink(category) {
return categoryLinkHTML(category, { allowUncategorized: true });
},
@computed("categoryLink", "model.pinned_globally", "model.pinned_until")
unPinMessage(categoryLink, pinnedGlobally, pinnedUntil) {
let name = "topic.feature_topic.unpin";
if (pinnedGlobally) name += "_globally";
if (moment(pinnedUntil) > moment()) name += "_until";
const until = moment(pinnedUntil).format("LL");
return I18n.t(name, { categoryLink, until });
},
@computed("categoryLink")
pinMessage(categoryLink) {
return I18n.t("topic.feature_topic.pin", { categoryLink });
},
@computed("categoryLink", "pinnedInCategoryCount")
alreadyPinnedMessage(categoryLink, count) {
const key =
count === 0
? "topic.feature_topic.not_pinned"
: "topic.feature_topic.already_pinned";
return I18n.t(key, { categoryLink, count });
},
@computed("parsedPinnedInCategoryUntil")
pinDisabled(parsedPinnedInCategoryUntil) {
return !this._isDateValid(parsedPinnedInCategoryUntil);
},
@computed("parsedPinnedGloballyUntil")
pinGloballyDisabled(parsedPinnedGloballyUntil) {
return !this._isDateValid(parsedPinnedGloballyUntil);
},
@computed("model.pinnedInCategoryUntil")
parsedPinnedInCategoryUntil(pinnedInCategoryUntil) {
return this._parseDate(pinnedInCategoryUntil);
},
@computed("model.pinnedGloballyUntil")
parsedPinnedGloballyUntil(pinnedGloballyUntil) {
return this._parseDate(pinnedGloballyUntil);
},
@computed("pinDisabled")
pinInCategoryValidation(pinDisabled) {
if (pinDisabled) {
return InputValidation.create({
failed: true,
reason: I18n.t("topic.feature_topic.pin_validation")
});
}
},
@computed("pinGloballyDisabled")
pinGloballyValidation(pinGloballyDisabled) {
if (pinGloballyDisabled) {
return InputValidation.create({
failed: true,
reason: I18n.t("topic.feature_topic.pin_validation")
});
}
},
_parseDate(date) {
return moment(date, ["YYYY-MM-DD", "YYYY-MM-DD HH:mm"]);
},
_isDateValid(parsedDate) {
return parsedDate.isValid() && parsedDate > moment();
},
onShow() {
this.set("loading", true);
return ajax("/topics/feature_stats.json", {
data: { category_id: this.get("model.category.id") }
})
.then(result => {
if (result) {
this.setProperties({
pinnedInCategoryCount: result.pinned_in_category_count,
pinnedGloballyCount: result.pinned_globally_count,
bannerCount: result.banner_count
});
}
})
.finally(() => this.set("loading", false));
},
_forwardAction(name) {
this.get("topicController").send(name);
this.send("closeModal");
},
_confirmBeforePinning(count, name, action) {
if (count < 4) {
this._forwardAction(action);
} else {
this.send("hideModal");
bootbox.confirm(
I18n.t("topic.feature_topic.confirm_" + name, { count }),
I18n.t("no_value"),
I18n.t("yes_value"),
confirmed =>
confirmed ? this._forwardAction(action) : this.send("reopenModal")
);
}
},
actions: {
pin() {
if (this.get("pinDisabled")) {
this.set("pinInCategoryTipShownAt", Date.now());
} else {
this._forwardAction("togglePinned");
}
},
pinGlobally() {
if (this.get("pinGloballyDisabled")) {
this.set("pinGloballyTipShownAt", Date.now());
} else {
this._confirmBeforePinning(
this.get("pinnedGloballyCount"),
"pin_globally",
"pinGlobally"
);
}
},
unpin() {
this._forwardAction("togglePinned");
},
makeBanner() {
this._forwardAction("makeBanner");
},
removeBanner() {
this._forwardAction("removeBanner");
}
}
});