discourse/plugins/discourse-narrative-bot/assets/javascripts/initializers/new-user-narrative.js.es6

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

65 lines
1.9 KiB
Plaintext
Raw Normal View History

2018-06-15 12:42:20 -04:00
import { withPluginApi } from "discourse/lib/plugin-api";
import { ajax } from "discourse/lib/ajax";
function initialize(api) {
2018-06-15 12:42:20 -04:00
const messageBus = api.container.lookup("message-bus:main");
const currentUser = api.getCurrentUser();
const appEvents = api.container.lookup("service:app-events");
2018-06-15 12:42:20 -04:00
api.modifyClass("component:site-header", {
didInsertElement() {
this._super(...arguments);
2018-06-15 12:42:20 -04:00
this.dispatch("header:search-context-trigger", "header");
},
});
api.modifyClass("model:post", {
toggleBookmark() {
// if we are talking to discobot then any bookmarks should just
// be created without reminder options, to streamline the new user
// narrative.
const discobotUserId = -2;
if (this.user_id === discobotUserId && !this.bookmarked) {
return ajax("/bookmarks", {
type: "POST",
data: { post_id: this.id },
}).then((response) => {
this.setProperties({
"topic.bookmarked": true,
bookmarked: true,
bookmark_id: response.id,
});
this.appEvents.trigger("post-stream:refresh", { id: this.id });
});
}
return this._super();
},
});
2018-06-15 12:42:20 -04:00
api.attachWidgetAction("header", "headerSearchContextTrigger", function () {
if (this.site.mobileView) {
this.state.skipSearchContext = false;
} else {
this.state.contextEnabled = true;
2018-06-15 12:42:20 -04:00
this.state.searchContextType = "topic";
}
});
if (messageBus && currentUser) {
messageBus.subscribe(`/new_user_narrative/tutorial_search`, () => {
2018-06-15 12:42:20 -04:00
appEvents.trigger("header:search-context-trigger");
});
}
}
export default {
name: "new-user-narratve",
initialize(container) {
2018-06-15 12:42:20 -04:00
const siteSettings = container.lookup("site-settings:main");
if (siteSettings.discourse_narrative_bot_enabled) {
2018-06-15 12:42:20 -04:00
withPluginApi("0.8.7", initialize);
}
},
};