rsnext/examples/cms-agilitycms/lib/dependancies.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.5 KiB
TypeScript
Raw Permalink Normal View History

import { convertPascalToKebabCase } from "./utils";
const path = require("path");
const userComponentsPath = path.resolve("./components");
const libComponentsPath = path.resolve("./lib/components");
const requireComponent = (name) => {
let Component = null;
try {
//check the user path first (must be relative paths)
Component = require(`../components/${name}.tsx`).default;
} catch {}
if (!Component)
try {
//fallback to lib path (must be relative paths)
Component = require(`./components/${name}.tsx`).default;
} catch {}
return Component;
};
//Bug: when dynamic imports are used within the module, it doest not get outputted server-side
//let AgilityModule = dynamic(() => import ('../components/' + m.moduleName));
export const requireComponentDependancyByName = (name) => {
let pascalCaseName = name;
let kebabCaseName = convertPascalToKebabCase(name);
let Component = null;
try {
Component = requireComponent(kebabCaseName);
} catch {}
if (!Component) {
try {
Component = requireComponent(pascalCaseName);
} catch {}
}
if (!Component) {
// eslint-disable-next-line no-throw-literal
throw `Could not find a component with the name ${name}. Tried searching:
${userComponentsPath}/${kebabCaseName}.tsx',
${libComponentsPath}/${kebabCaseName}.tsx',
${userComponentsPath}/${pascalCaseName}.tsx',
${libComponentsPath}/${pascalCaseName}.tsx'.`;
}
return Component;
};