diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-10-22 18:08:39 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-10-22 18:13:16 +0200 |
commit | b9d20e04f2f6307c0e708e56d05e25ebc942d2df (patch) | |
tree | 80c729c7f97677377edf86a9c78c01af15da6d91 /client/config | |
parent | aa974aa54ab6e5b7db7450206d12b44ffb3a0306 (diff) | |
download | wekan-b9d20e04f2f6307c0e708e56d05e25ebc942d2df.tar.gz wekan-b9d20e04f2f6307c0e708e56d05e25ebc942d2df.tar.bz2 wekan-b9d20e04f2f6307c0e708e56d05e25ebc942d2df.zip |
Display the board name in the page title
Fixes #364
Diffstat (limited to 'client/config')
-rw-r--r-- | client/config/router.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/client/config/router.js b/client/config/router.js index 1cac43a0..0a6958d0 100644 --- a/client/config/router.js +++ b/client/config/router.js @@ -88,3 +88,26 @@ _.each(redirections, (newPath, oldPath) => { }], }); }); + +// As it is not possible to use template helpers in the page <head> we create a +// reactive function whose role is to set any page-specific tag in the <head> +// using the `kadira:dochead` package. Currently we only use it to display the +// board title if we are in a board page (see #364) but we may want to support +// some <meta> tags in the future. +const appTitle = 'Wekan'; + +// XXX The `Meteor.startup` should not be necessary -- we don't need to wait for +// the complete DOM to be ready to call `DocHead.setTitle`. But the problem is +// that the global variable `Boards` is undefined when this file loads so we +// wait a bit until hopefully all files are loaded. This will be fixed in a +// clean way once Meteor will support ES6 modules -- hopefully in Meteor 1.3. +Meteor.startup(() => { + Tracker.autorun(() => { + const currentBoard = Boards.findOne(Session.get('currentBoard')); + const titleStack = [appTitle]; + if (currentBoard) { + titleStack.push(currentBoard.title); + } + DocHead.setTitle(titleStack.reverse().join(' - ')); + }); +}); |