Ghost/ghost/admin/app/utils/ghost-paths.js
Kevin Ansfield 27dadcf1c4 Switched from v3 to canary API
refs https://github.com/TryGhost/Team/issues/221

- we're getting ready for the 4.0 API version so we should be using canary to fully test the changes
- changed from `v3` to `canary` in `utils/ghost-paths.js`
- updated mirage and tests to use `ghostPaths` util so we only need to change the version in one place in the future
2021-02-05 09:12:26 +00:00

57 lines
1.4 KiB
JavaScript

let makeRoute = function (root, args) {
let slashAtStart = /^\//;
let slashAtEnd = /\/$/;
let parts = Array.prototype.slice.call(args, 0);
let route = root.replace(slashAtEnd, '');
parts.forEach((part) => {
if (part) {
route = [route, part.replace(slashAtStart, '').replace(slashAtEnd, '')].join('/');
}
});
return route += '/';
};
export default function () {
let path = window.location.pathname;
let subdir = path.substr(0, path.search('/ghost/'));
let adminRoot = `${subdir}/ghost/`;
let assetRoot = `${subdir}/ghost/assets/`;
let apiRoot = `${subdir}/ghost/api/canary/admin`;
function assetUrl(src) {
return subdir + src;
}
return {
adminRoot,
assetRoot,
apiRoot,
subdir,
blogRoot: `${subdir}/`,
url: {
admin() {
return makeRoute(adminRoot, arguments);
},
api() {
return makeRoute(apiRoot, arguments);
},
join() {
if (arguments.length > 1) {
return makeRoute(arguments[0], Array.prototype.slice.call(arguments, 1));
} else if (arguments.length === 1) {
let [arg] = arguments;
return arg.slice(-1) === '/' ? arg : `${arg}/`;
}
return '/';
},
asset: assetUrl
}
};
}