Files
discourse/app/assets/javascripts/discourse/routes/application.js.es6

221 lines
7.0 KiB
JavaScript

import { ajax } from 'discourse/lib/ajax';
import { setting } from 'discourse/lib/computed';
import logout from 'discourse/lib/logout';
import showModal from 'discourse/lib/show-modal';
import OpenComposer from "discourse/mixins/open-composer";
import Category from 'discourse/models/category';
import mobile from 'discourse/lib/mobile';
import { findAll } from 'discourse/models/login-method';
import { getOwner } from 'discourse-common/lib/get-owner';
import { userPath } from 'discourse/lib/url';
import Composer from 'discourse/models/composer';
function unlessReadOnly(method, message) {
return function() {
if (this.site.get("isReadOnly")) {
bootbox.alert(message);
} else {
this[method]();
}
};
}
const ApplicationRoute = Discourse.Route.extend(OpenComposer, {
siteTitle: setting('title'),
actions: {
toggleAnonymous() {
ajax(userPath("toggle-anon"), {method: 'POST'}).then(() => {
window.location.reload();
});
},
toggleMobileView() {
mobile.toggleMobileView();
},
logout: unlessReadOnly('_handleLogout', I18n.t("read_only_mode.logout_disabled")),
_collectTitleTokens(tokens) {
tokens.push(this.get('siteTitle'));
Discourse.set('_docTitle', tokens.join(' - '));
},
// Ember doesn't provider a router `willTransition` event so let's make one
willTransition() {
var router = getOwner(this).lookup('router:main');
Ember.run.once(router, router.trigger, 'willTransition');
return this._super();
},
postWasEnqueued(details) {
const title = details.reason ? 'queue_reason.' + details.reason + '.title' : 'queue.approval.title';
showModal('post-enqueued', {model: details, title });
},
composePrivateMessage(user, post) {
const recipient = user ? user.get('username') : '',
reply = post ? window.location.protocol + "//" + window.location.host + post.get("url") : null;
// used only once, one less dependency
return this.controllerFor('composer').open({
action: Composer.PRIVATE_MESSAGE,
usernames: recipient,
archetypeId: 'private_message',
draftKey: 'new_private_message',
reply: reply
});
},
error(err, transition) {
let xhr = {};
if (err.jqXHR) {
xhr = err.jqXHR;
}
const xhrOrErr = err.jqXHR ? xhr : err;
const exceptionController = this.controllerFor('exception');
const c = window.console;
if (c && c.error) {
c.error(xhrOrErr);
}
exceptionController.setProperties({ lastTransition: transition, thrown: xhrOrErr });
this.intermediateTransitionTo('exception');
return true;
},
showLogin: unlessReadOnly('handleShowLogin', I18n.t("read_only_mode.login_disabled")),
showCreateAccount: unlessReadOnly('handleShowCreateAccount', I18n.t("read_only_mode.login_disabled")),
showForgotPassword() {
this.controllerFor('forgot-password').setProperties({ offerHelp: null, helpSeen: false });
showModal('forgotPassword', { title: 'forgot_password.title' });
},
showNotActivated(props) {
showModal('not-activated', {title: 'log_in' }).setProperties(props);
},
showUploadSelector(toolbarEvent) {
showModal('uploadSelector').setProperties({ toolbarEvent, imageUrl: null, imageLink: null });
},
showKeyboardShortcutsHelp() {
showModal('keyboard-shortcuts-help', { title: 'keyboard_shortcuts_help.title'});
},
// Close the current modal, and destroy its state.
closeModal() {
this.render('hide-modal', { into: 'modal', outlet: 'modalBody' });
},
/**
Hide the modal, but keep it with all its state so that it can be shown again later.
This is useful if you want to prompt for confirmation. hideModal, ask "Are you sure?",
user clicks "No", reopenModal. If user clicks "Yes", be sure to call closeModal.
**/
hideModal() {
$('.d-modal.fixed-modal').modal('hide');
},
reopenModal() {
$('.d-modal.fixed-modal').modal('show');
},
editCategory(category) {
Category.reloadById(category.get('id')).then(atts => {
const model = this.store.createRecord('category', atts.category);
model.setupGroupsAndPermissions();
this.site.updateCategory(model);
showModal('edit-category', { model });
this.controllerFor('edit-category').set('selectedTab', 'general');
});
},
deleteSpammer(user) {
this.send('closeModal');
user.deleteAsSpammer(function() { window.location.reload(); });
},
checkEmail(user) {
user.checkEmail();
},
changeBulkTemplate(w) {
const controllerName = w.replace('modal/', '');
const controller = getOwner(this).lookup('controller:' + controllerName);
this.render(w, {into: 'modal/topic-bulk-actions', outlet: 'bulkOutlet', controller: controller ? controllerName : 'topic-bulk-actions'});
},
createNewTopicViaParams(title, body, category_id, category, tags) {
this.openComposerWithTopicParams(this.controllerFor('discovery/topics'), title, body, category_id, category, tags);
},
createNewMessageViaParams(username, title, body) {
this.openComposerWithMessageParams(username, title, body);
}
},
activate() {
this._super();
Em.run.next(function() {
// Support for callbacks once the application has activated
ApplicationRoute.trigger('activate');
});
},
renderTemplate() {
this.render('application');
this.render('user-card', { into: 'application', outlet: 'user-card' });
this.render('modal', { into: 'application', outlet: 'modal' });
this.render('composer', { into: 'application', outlet: 'composer' });
},
handleShowLogin() {
if (this.siteSettings.enable_sso) {
const returnPath = encodeURIComponent(window.location.pathname);
window.location = Discourse.getURL('/session/sso?return_path=' + returnPath);
} else {
this._autoLogin('login', 'login-modal', () => this.controllerFor('login').resetForm());
}
},
handleShowCreateAccount() {
if (this.siteSettings.enable_sso) {
const returnPath = encodeURIComponent(window.location.pathname);
window.location = Discourse.getURL('/session/sso?return_path=' + returnPath);
} else {
this._autoLogin('createAccount', 'create-account');
}
},
_autoLogin(modal, modalClass, notAuto) {
const methods = findAll(this.siteSettings,
getOwner(this).lookup('capabilities:main'),
this.site.isMobileDevice);
if (!this.siteSettings.enable_local_logins && methods.length === 1) {
this.controllerFor('login').send('externalLogin', methods[0]);
} else {
showModal(modal);
this.controllerFor('modal').set('modalClass', modalClass);
if (notAuto) { notAuto(); }
}
},
_handleLogout() {
if (this.currentUser) {
this.currentUser.destroySession().then(() => logout(this.siteSettings, this.keyValueStore));
}
},
});
RSVP.EventTarget.mixin(ApplicationRoute);
export default ApplicationRoute;