next
Version:
The React Framework
19 lines (18 loc) • 798 B
JavaScript
import { DEFAULT_SEGMENT_KEY } from '../../shared/lib/segment';
export function parseLoaderTree(tree) {
const [segment, parallelRoutes, modules] = tree;
const { layout, template } = modules;
let { page } = modules;
// a __DEFAULT__ segment means that this route didn't match any of the
// segments in the route, so we should use the default page
page = segment === DEFAULT_SEGMENT_KEY ? modules.defaultPage : page;
const conventionPath = (layout == null ? void 0 : layout[1]) || (template == null ? void 0 : template[1]) || (page == null ? void 0 : page[1]);
return {
page,
segment,
modules,
/* it can be either layout / template / page */ conventionPath,
parallelRoutes
};
}
//# sourceMappingURL=parse-loader-tree.js.map