import React from 'react';
import {
CertificationLayout,
DefaultLayout
} from '../../src/components/layouts';
import FourOhFourPage from '../../src/pages/404';
import { isChallenge } from '../../src/utils/path-parsers';
interface LayoutSelectorProps {
element: JSX.Element;
props: { location: { pathname: string } };
}
export default function layoutSelector({
element,
props
}: LayoutSelectorProps): JSX.Element {
const {
location: { pathname }
} = props;
if (element.type === FourOhFourPage) {
return (
{element}
);
} else if (/\/certification\//.test(pathname)) {
return (
{element}
);
} else if (isChallenge(pathname)) {
return (
{element}
);
} else {
return (
{element}
);
}
}