mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 09:41:49 +08:00
23 lines
561 B
JavaScript
23 lines
561 B
JavaScript
/**
|
|
* The `mapRoutes` utility converts a map of named application routes into a
|
|
* format that can be understood by Mithril.
|
|
*
|
|
* @see https://lhorie.github.io/mithril/mithril.route.html#defining-routes
|
|
* @param {Object} routes
|
|
* @param {String} [basePath]
|
|
* @return {Object}
|
|
*/
|
|
export default function mapRoutes(routes, basePath = '') {
|
|
const map = {};
|
|
|
|
for (const key in routes) {
|
|
const route = routes[key];
|
|
|
|
if (route.component) route.component.props.routeName = key;
|
|
|
|
map[basePath + route.path] = route.component;
|
|
}
|
|
|
|
return map;
|
|
}
|