szurubooru/static/js/controllers/top_navigation_controller.js
2016-03-31 21:15:05 +02:00

78 lines
2.7 KiB
JavaScript

'use strict';
class NavigationItem {
constructor(accessKey, name, url) {
this.accessKey = accessKey;
this.name = name;
this.url = url;
this.available = true;
}
}
class TopNavigationController {
constructor(topNavigationView, api) {
this.api = api;
this.topNavigationView = topNavigationView;
this.activeItem = null;
this.items = {
'home': new NavigationItem('H', 'Home', '/'),
'posts': new NavigationItem('P', 'Posts', '/posts'),
'upload': new NavigationItem('U', 'Upload', '/upload'),
'comments': new NavigationItem('C', 'Comments', '/comments'),
'tags': new NavigationItem('T', 'Tags', '/tags'),
'users': new NavigationItem('S', 'Users', '/users'),
'account': new NavigationItem('A', 'Account', '/user/{me}'),
'register': new NavigationItem('R', 'Register', '/register'),
'login': new NavigationItem('L', 'Log in', '/login'),
'logout': new NavigationItem('O', 'Logout', '/logout'),
'help': new NavigationItem('E', 'Help', '/help'),
};
this.api.authenticated.listen(() => {
this.updateVisibility();
this.topNavigationView.render(this.items, this.activeItem);
this.topNavigationView.activate(this.activeItem);
});
this.updateVisibility();
this.topNavigationView.render(this.items, this.activeItem);
this.topNavigationView.activate(this.activeItem);
}
updateVisibility() {
const b = Object.keys(this.items);
for (let key of b) {
this.items[key].available = true;
}
if (!this.api.hasPrivilege('posts:list')) {
this.items.posts.available = false;
}
if (!this.api.hasPrivilege('posts:create')) {
this.items.upload.available = false;
}
if (!this.api.hasPrivilege('comments:list')) {
this.items.comments.available = false;
}
if (!this.api.hasPrivilege('tags:list')) {
this.items.tags.available = false;
}
if (!this.api.hasPrivilege('users:list')) {
this.items.users.available = false;
}
if (this.api.isLoggedIn()) {
this.items.register.available = false;
this.items.login.available = false;
} else {
this.items.account.available = false;
this.items.logout.available = false;
}
}
activate(itemName) {
this.activeItem = itemName;
this.topNavigationView.activate(this.activeItem);
}
}
module.exports = TopNavigationController;