2015-02-13 07:22:32 +03:00
|
|
|
import Ember from 'ember';
|
2015-08-19 14:55:40 +03:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
const {Route, Router, isArray, on} = Ember;
|
|
|
|
|
2015-08-19 14:55:40 +03:00
|
|
|
export default function () {
|
2015-10-28 14:36:45 +03:00
|
|
|
Route.reopen({
|
2014-11-25 23:56:08 +03:00
|
|
|
// `titleToken` can either be a static string or a function
|
|
|
|
// that accepts a model object and returns a string (or array
|
|
|
|
// of strings if there are multiple tokens).
|
|
|
|
titleToken: null,
|
|
|
|
|
|
|
|
// `title` can either be a static string or a function
|
|
|
|
// that accepts an array of tokens and returns a string
|
|
|
|
// that will be the document title. The `collectTitleTokens` action
|
|
|
|
// stops bubbling once a route is encountered that has a `title`
|
|
|
|
// defined.
|
|
|
|
title: null,
|
|
|
|
|
2015-11-30 21:23:47 +03:00
|
|
|
actions: {
|
2015-10-28 14:36:45 +03:00
|
|
|
collectTitleTokens(tokens) {
|
|
|
|
let {titleToken} = this;
|
|
|
|
let finalTitle;
|
2014-11-25 23:56:08 +03:00
|
|
|
|
|
|
|
if (typeof this.titleToken === 'function') {
|
|
|
|
titleToken = this.titleToken(this.currentModel);
|
|
|
|
}
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
if (isArray(titleToken)) {
|
2014-11-25 23:56:08 +03:00
|
|
|
tokens.unshift.apply(this, titleToken);
|
|
|
|
} else if (titleToken) {
|
|
|
|
tokens.unshift(titleToken);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.title) {
|
|
|
|
if (typeof this.title === 'function') {
|
|
|
|
finalTitle = this.title(tokens);
|
|
|
|
} else {
|
|
|
|
finalTitle = this.title;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.router.setTitle(finalTitle);
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
Router.reopen({
|
|
|
|
updateTitle: on('didTransition', function () {
|
2014-11-25 23:56:08 +03:00
|
|
|
this.send('collectTitleTokens', []);
|
2015-09-03 14:06:50 +03:00
|
|
|
}),
|
2014-11-25 23:56:08 +03:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
setTitle(title) {
|
2015-10-15 15:03:26 +03:00
|
|
|
window.document.title = title;
|
2014-11-25 23:56:08 +03:00
|
|
|
}
|
|
|
|
});
|
2015-08-19 14:55:40 +03:00
|
|
|
}
|