You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/services/routes.ts

37 lines
842 B

2 years ago
/**
* This file provides the paths to the pages
*/
import { NextRouter } from 'next/router';
import { getWindowUrl, displayRef, getLocaleShort } from './utils';
export enum RouteTypes {
ADMIN = 'admin',
BALLOT = 'ballot',
1 year ago
CREATE_ELECTION = 'admin/new',
ENDED_VOTE = 'end',
1 year ago
FAQ = 'faq',
HOME = '',
RESULTS = 'results',
VOTE = 'votes',
}
export const getUrl = (
type: RouteTypes,
router: NextRouter,
ref?: string,
token?: string
): URL => {
const locale = getLocaleShort(router);
if (ref) {
if (token) {
const path = `/${locale}/${type}/${displayRef(ref)}/${token}`;
return new URL(path, getWindowUrl());
}
1 year ago
const path = `/${locale}/${type}/${displayRef(ref)}`;
return new URL(path, getWindowUrl());
}
const path = `/${locale}/${type}`;
return new URL(path, getWindowUrl());
};