25 lines
615 B
JavaScript
25 lines
615 B
JavaScript
import { match } from 'path-to-regexp';
|
|
// import { resolveRoute } from 'vike/routing'; // eslint-disable-line import/extensions
|
|
|
|
const path = '/stash/:username/:stashSlug/:domain(actors)/:page?';
|
|
const urlMatch = match(path, { decode: decodeURIComponent });
|
|
|
|
export default (pageContext) => {
|
|
const matched = urlMatch(pageContext.urlPathname);
|
|
|
|
if (matched) {
|
|
return {
|
|
routeParams: {
|
|
username: matched.params.username,
|
|
stashSlug: matched.params.stashSlug,
|
|
domain: matched.params.domain,
|
|
order: 'stashed.desc',
|
|
page: matched.params.page || '1',
|
|
path,
|
|
},
|
|
};
|
|
}
|
|
|
|
return false;
|
|
};
|