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.
|
|
|
import React from 'react';
|
|
|
|
import { Route, IndexRedirect } from 'react-router';
|
|
|
|
import Article from '../component/Article';
|
|
|
|
|
|
|
|
function dashed(name) {
|
|
|
|
return name.toLowerCase().trim().replace(/\s+/g, '-');
|
|
|
|
}
|
|
|
|
|
|
|
|
export function generateChildren(pagesData) {
|
|
|
|
const children = pagesData.map((pageData, index) => {
|
|
|
|
const ArticleWrapper = () => <Article content={pageData} />;
|
|
|
|
return (
|
|
|
|
<Route key={index}
|
|
|
|
path={dashed(pageData.meta.english)}
|
|
|
|
component={ArticleWrapper} />
|
|
|
|
);
|
|
|
|
});
|
|
|
|
const firstChild = pagesData.find((pageData) => {
|
|
|
|
return pageData.meta.disabled !== 'true';
|
|
|
|
});
|
|
|
|
children.unshift(
|
|
|
|
<IndexRedirect key="index"
|
|
|
|
to={dashed(firstChild.meta.english)} />
|
|
|
|
);
|
|
|
|
return children;
|
|
|
|
}
|