2016-06-30 13:21:47 +03:00
|
|
|
import Router from 'ember-router';
|
|
|
|
import injectService from 'ember-service/inject';
|
|
|
|
import on from 'ember-evented/on';
|
2016-05-24 15:06:59 +03:00
|
|
|
import ghostPaths from 'ghost-admin/utils/ghost-paths';
|
|
|
|
import documentTitle from 'ghost-admin/utils/document-title';
|
2015-10-05 09:07:44 +03:00
|
|
|
import config from './config/environment';
|
2014-02-26 08:58:00 +04:00
|
|
|
|
2016-06-11 19:52:36 +03:00
|
|
|
const GhostRouter = Router.extend({
|
2015-10-05 09:07:44 +03:00
|
|
|
location: config.locationType, // use HTML5 History API instead of hash-tag based URLs
|
2014-08-10 21:10:29 +04:00
|
|
|
rootURL: ghostPaths().adminRoot, // admin interface lives under sub-directory /ghost
|
2014-06-24 14:00:28 +04:00
|
|
|
|
2016-06-30 13:21:47 +03:00
|
|
|
notifications: injectService(),
|
2015-05-26 05:10:50 +03:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
displayDelayedNotifications: on('didTransition', function () {
|
2015-08-24 17:46:18 +03:00
|
|
|
this.get('notifications').displayDelayed();
|
2014-11-28 02:45:34 +03:00
|
|
|
})
|
2014-03-02 18:30:35 +04:00
|
|
|
});
|
|
|
|
|
2014-11-28 02:45:34 +03:00
|
|
|
documentTitle();
|
|
|
|
|
2016-06-11 19:52:36 +03:00
|
|
|
GhostRouter.map(function () {
|
2015-05-27 23:10:47 +03:00
|
|
|
this.route('setup', function () {
|
2015-03-29 21:10:53 +03:00
|
|
|
this.route('one');
|
|
|
|
this.route('two');
|
|
|
|
this.route('three');
|
|
|
|
});
|
|
|
|
|
2014-03-10 07:44:08 +04:00
|
|
|
this.route('signin');
|
2014-06-01 23:30:50 +04:00
|
|
|
this.route('signout');
|
2014-10-25 01:09:50 +04:00
|
|
|
this.route('signup', {path: '/signup/:token'});
|
|
|
|
this.route('reset', {path: '/reset/:token'});
|
2015-05-25 19:00:42 +03:00
|
|
|
this.route('about', {path: '/about'});
|
2014-10-25 01:09:50 +04:00
|
|
|
|
2015-05-25 21:17:10 +03:00
|
|
|
this.route('posts', {path: '/'}, function () {
|
2014-10-25 01:09:50 +04:00
|
|
|
this.route('post', {path: ':post_id'});
|
2014-03-02 18:30:35 +04:00
|
|
|
});
|
2014-10-25 01:09:50 +04:00
|
|
|
|
2015-05-25 21:17:10 +03:00
|
|
|
this.route('editor', function () {
|
2014-10-25 01:09:50 +04:00
|
|
|
this.route('new', {path: ''});
|
|
|
|
this.route('edit', {path: ':post_id'});
|
2014-06-10 08:44:29 +04:00
|
|
|
});
|
2014-10-25 01:09:50 +04:00
|
|
|
|
2015-06-18 13:59:08 +03:00
|
|
|
this.route('team', {path: '/team'}, function () {
|
2015-11-23 16:48:08 +03:00
|
|
|
this.route('user', {path: ':user_slug'});
|
2013-07-11 23:02:18 +04:00
|
|
|
});
|
2015-06-18 13:59:08 +03:00
|
|
|
|
|
|
|
this.route('settings.general', {path: '/settings/general'});
|
2015-10-15 15:03:26 +03:00
|
|
|
this.route('settings.tags', {path: '/settings/tags'}, function () {
|
2015-10-23 20:18:39 +03:00
|
|
|
this.route('tag', {path: ':tag_slug'});
|
2015-10-15 15:03:26 +03:00
|
|
|
this.route('new');
|
|
|
|
});
|
2015-05-25 21:17:10 +03:00
|
|
|
this.route('settings.labs', {path: '/settings/labs'});
|
|
|
|
this.route('settings.code-injection', {path: '/settings/code-injection'});
|
|
|
|
this.route('settings.navigation', {path: '/settings/navigation'});
|
2016-03-29 11:40:44 +03:00
|
|
|
this.route('settings.apps', {path: '/settings/apps'}, function () {
|
|
|
|
this.route('slack', {path: 'slack'});
|
|
|
|
});
|
2014-06-24 03:52:10 +04:00
|
|
|
|
2016-04-15 17:45:50 +03:00
|
|
|
this.route('subscribers', function() {
|
|
|
|
this.route('new');
|
|
|
|
this.route('import');
|
|
|
|
});
|
|
|
|
|
2014-10-25 01:09:50 +04:00
|
|
|
this.route('error404', {path: '/*path'});
|
2014-02-26 08:58:00 +04:00
|
|
|
});
|
2014-02-27 08:45:45 +04:00
|
|
|
|
2016-06-11 19:52:36 +03:00
|
|
|
export default GhostRouter;
|