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

36 lines
794 B

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