Files
freeCodeCamp/client/utils/gatsby/layoutSelector.js

46 lines
1.1 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';
import { isChallenge } from '../../src/utils/path-parsers';
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} showFooter={true}>
{element}
</DefaultLayout>
);
} else if (/\/certification\//.test(pathname)) {
return (
<CertificationLayout pathname={pathname}>{element}</CertificationLayout>
);
} else if (isChallenge(pathname)) {
2019-02-28 15:44:35 +00:00
return (
<DefaultLayout pathname={pathname} showFooter={false}>
{element}
</DefaultLayout>
);
} else {
return (
<DefaultLayout pathname={pathname} showFooter={true}>
{element}
</DefaultLayout>
);
2019-02-28 15:44:35 +00:00
}
}
layoutSelector.propTypes = {
element: PropTypes.any,
location: PropTypes.objectOf({ pathname: PropTypes.string }),
props: PropTypes.any
};