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.
42 lines
1.2 KiB
42 lines
1.2 KiB
import React from 'react';
|
|
import MainContent from './MainContent';
|
|
import Promise from 'bluebird';
|
|
import * as utils from '../utils';
|
|
|
|
export function collect(nextProps, callback) {
|
|
const componentsList = utils.collectDocs(nextProps.data.components);
|
|
|
|
const pathname = nextProps.location.pathname;
|
|
let moduleDocs;
|
|
if (/(docs\/react\/)|(components\/)|(changelog)/i.test(pathname)) {
|
|
moduleDocs = [
|
|
...utils.collectDocs(nextProps.data.docs.react),
|
|
...componentsList,
|
|
/* eslint-disable new-cap */
|
|
nextProps.data.CHANGELOG(),
|
|
/* eslint-enable new-cap */
|
|
];
|
|
} else {
|
|
moduleDocs = utils.collectDocs(
|
|
nextProps.utils.get(nextProps.data, pathname.split('/').slice(0, 2))
|
|
);
|
|
}
|
|
|
|
const demos = nextProps.utils.get(nextProps.data, [...pathname.split('/'), 'demo']);
|
|
|
|
const promises = [Promise.all(componentsList), Promise.all(moduleDocs)];
|
|
if (demos) {
|
|
promises.push(demos());
|
|
}
|
|
Promise.all(promises)
|
|
.then((list) => callback(null, {
|
|
...nextProps,
|
|
components: list[0],
|
|
moduleData: list[1],
|
|
demos: list[2],
|
|
}));
|
|
}
|
|
|
|
export default (props) => {
|
|
return <MainContent {...props} />;
|
|
};
|
|
|