2014-05-15 05:56:43 +04:00
|
|
|
var makeRoute = function (root, args) {
|
|
|
|
var parts = Array.prototype.slice.call(args, 0).join('/'),
|
|
|
|
route = [root, parts].join('/');
|
|
|
|
|
|
|
|
if (route.slice(-1) !== '/') {
|
|
|
|
route += '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
return route;
|
|
|
|
};
|
|
|
|
|
2014-06-09 15:02:51 +04:00
|
|
|
function ghostPaths() {
|
2014-05-15 05:56:43 +04:00
|
|
|
var path = window.location.pathname,
|
|
|
|
subdir = path.substr(0, path.search('/ghost/'));
|
|
|
|
|
|
|
|
return {
|
|
|
|
subdir: subdir,
|
2014-06-24 03:24:13 +04:00
|
|
|
blogRoot: subdir + '/',
|
2014-05-15 05:56:43 +04:00
|
|
|
adminRoot: subdir + '/ghost',
|
|
|
|
apiRoot: subdir + '/ghost/api/v0.1',
|
2014-06-24 03:52:10 +04:00
|
|
|
userImage: subdir + '/assets/img/user-image.png',
|
|
|
|
errorImageSrc: subdir + '/ghost/img/404-ghost@2x.png',
|
|
|
|
errorImageSrcSet: subdir + '/ghost/img/404-ghost.png 1x, ' + subdir + '/ghost/img/404-ghost@2x.png 2x',
|
2014-05-15 05:56:43 +04:00
|
|
|
|
|
|
|
adminUrl: function () {
|
|
|
|
return makeRoute(this.adminRoot, arguments);
|
|
|
|
},
|
|
|
|
|
|
|
|
apiUrl: function () {
|
|
|
|
return makeRoute(this.apiRoot, arguments);
|
|
|
|
}
|
|
|
|
};
|
2014-06-09 15:02:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
export default ghostPaths;
|