next.js/examples/cms-agilitycms/lib/dependencies.ts
dependencies.ts52 lines1.5 KB
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 requireComponentDependencyByName = (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;
};
Quest for Codev2.0.0
/
SIGN IN