mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 16:23:37 +08:00
64 lines
1.9 KiB
JavaScript
64 lines
1.9 KiB
JavaScript
import HeaderPrimary from './components/HeaderPrimary';
|
|
import HeaderSecondary from './components/HeaderSecondary';
|
|
import routes from './routes';
|
|
import Application from '../common/Application';
|
|
import Navigation from '../common/components/Navigation';
|
|
import AdminNav from './components/AdminNav';
|
|
|
|
export default class AdminApplication extends Application {
|
|
extensionSettings = {};
|
|
|
|
history = {
|
|
canGoBack: () => true,
|
|
getPrevious: () => {},
|
|
backUrl: () => this.forum.attribute('baseUrl'),
|
|
back: function () {
|
|
window.location = this.backUrl();
|
|
},
|
|
};
|
|
|
|
constructor() {
|
|
super();
|
|
|
|
routes(this);
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
mount() {
|
|
m.mount(document.getElementById('app-navigation'), Navigation.component({ className: 'App-backControl', drawer: true }));
|
|
m.mount(document.getElementById('header-navigation'), Navigation.component());
|
|
m.mount(document.getElementById('header-primary'), HeaderPrimary.component());
|
|
m.mount(document.getElementById('header-secondary'), HeaderSecondary.component());
|
|
m.mount(document.getElementById('admin-navigation'), AdminNav.component());
|
|
|
|
m.route.mode = 'hash';
|
|
super.mount();
|
|
|
|
// If an extension has just been enabled, then we will run its settings
|
|
// callback.
|
|
const enabled = localStorage.getItem('enabledExtension');
|
|
if (enabled && this.extensionSettings[enabled]) {
|
|
this.extensionSettings[enabled]();
|
|
localStorage.removeItem('enabledExtension');
|
|
}
|
|
}
|
|
|
|
getRequiredPermissions(permission) {
|
|
const required = [];
|
|
|
|
if (permission === 'startDiscussion' || permission.indexOf('discussion.') === 0) {
|
|
required.push('viewDiscussions');
|
|
}
|
|
if (permission === 'discussion.delete') {
|
|
required.push('discussion.hide');
|
|
}
|
|
if (permission === 'discussion.deletePosts') {
|
|
required.push('discussion.hidePosts');
|
|
}
|
|
|
|
return required;
|
|
}
|
|
}
|