discourse-chat-integration/assets/javascripts/discourse/routes/transcript.js.es6

31 lines
886 B
Plaintext
Raw Normal View History

import { ajax } from "discourse/lib/ajax";
import { popupAjaxError } from "discourse/lib/ajax-error";
export default Discourse.Route.extend({
2017-10-03 05:42:07 -04:00
beforeModel(transition) {
if (this.currentUser) {
const secret = transition.params.transcript.secret;
this.replaceWith("discovery.latest").then(e => {
if (this.controllerFor("navigation/default").get("canCreateTopic")) {
Ember.run.next(() => {
2017-10-03 05:42:07 -04:00
ajax(`chat-transcript/${secret}`).then(result => {
e.send(
"createNewTopicViaParams",
null,
result["content"],
null,
null,
null
);
}, popupAjaxError);
});
}
});
} else {
this.session.set("shouldRedirectToUrl", window.location.href);
this.replaceWith("login");
}
}
2017-10-03 05:42:07 -04:00
});