szurubooru/client/js/controllers/help_controller.js
rr- 69fe8ec31a client/general: refactor all the things
- Move controls to the "controls/" directory
- Make controls interface look similar to each other
- Prefix "private" methods and attributes with underscore
2016-05-21 00:08:43 +02:00

33 lines
891 B
JavaScript

'use strict';
const page = require('page');
const topNavController = require('../controllers/top_nav_controller.js');
const HelpView = require('../views/help_view.js');
class HelpController {
constructor() {
this._helpView = new HelpView();
}
registerRoutes() {
page('/help', () => { this._showHelpRoute(); });
page(
'/help/:section',
(ctx, next) => { this._showHelpRoute(ctx.params.section); });
page(
'/help/:section/:subsection',
(ctx, next) => {
this._showHelpRoute(ctx.params.section, ctx.params.subsection);
});
}
_showHelpRoute(section, subsection) {
topNavController.activate('help');
this._helpView.render({
section: section,
subsection: subsection,
});
}
}
module.exports = new HelpController();