freeCodeCamp/client/utils/gatsby/layoutSelector.js

38 lines
1.0 KiB
JavaScript
Raw Normal View History

2019-02-28 15:44:35 +00:00
import React from 'react';
import PropTypes from 'prop-types';
import {
CertificationLayout,
DefaultLayout
2019-02-28 15:44:35 +00:00
} from '../../src/components/layouts';
import FourOhFourPage from '../../src/pages/404';
2019-02-28 15:44:35 +00:00
export default function layoutSelector({ element, props }) {
const {
location: { pathname }
} = props;
if (element.type === FourOhFourPage) {
return <DefaultLayout pathname={pathname}>{element}</DefaultLayout>;
}
2019-02-28 15:44:35 +00:00
if (/^\/certification(\/.*)*/.test(pathname)) {
return <CertificationLayout>{element}</CertificationLayout>;
}
if (/^\/guide(\/.*)*/.test(pathname)) {
console.log('Hitting guide for some reason. Need a redirect.');
2019-02-28 15:44:35 +00:00
}
if (/^\/learn(\/.*)*/.test(pathname)) {
return (
<DefaultLayout pathname={pathname} showFooter={false}>
{element}
</DefaultLayout>
);
}
return <DefaultLayout pathname={pathname}>{element}</DefaultLayout>;
}
layoutSelector.propTypes = {
element: PropTypes.any,
location: PropTypes.objectOf({ pathname: PropTypes.string }),
props: PropTypes.any
};