discourse/app/assets/javascripts/discourse/routes/discovery.js.es6

77 lines
2.1 KiB
JavaScript

/**
The parent route for all discovery routes.
Handles the logic for showing the loading spinners.
**/
import DiscourseRoute from "discourse/routes/discourse";
import OpenComposer from "discourse/mixins/open-composer";
import { scrollTop } from "discourse/mixins/scroll-top";
import User from "discourse/models/user";
export default DiscourseRoute.extend(OpenComposer, {
redirect() {
return this.redirectIfLoginRequired();
},
beforeModel(transition) {
const user = User;
const url = transition.intent.url;
if (
(url === "/" || url === "/latest" || url === "/categories") &&
transition.targetName.indexOf("discovery.top") === -1 &&
user.currentProp("should_be_redirected_to_top")
) {
user.currentProp("should_be_redirected_to_top", false);
const period = user.currentProp("redirected_to_top.period") || "all";
this.replaceWith(`discovery.top${period.capitalize()}`);
}
},
actions: {
loading() {
this.controllerFor("discovery").set("loading", true);
return true;
},
loadingComplete() {
this.controllerFor("discovery").set("loading", false);
if (!this.session.get("topicListScrollPosition")) {
scrollTop();
}
return false;
},
didTransition() {
this.controllerFor("discovery")._showFooter();
this.send("loadingComplete");
return false;
},
// clear a pinned topic
clearPin(topic) {
topic.clearPin();
},
createTopic() {
const model = this.controllerFor("discovery/topics").get("model");
if (model.draft) {
this.openTopicDraft(model);
} else {
this.openComposer(this.controllerFor("discovery/topics"));
}
},
dismissReadTopics(dismissTopics) {
const operationType = dismissTopics ? "topics" : "posts";
this.send("dismissRead", operationType);
},
dismissRead(operationType) {
const controller = this.controllerFor("discovery/topics");
controller.send("dismissRead", operationType, {
includeSubcategories: !controller.noSubcategories
});
}
}
});