1.0.2 • Published 3 months ago

recma-escape-missing-components v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

recma-escape-missing-components

NPM version Build npm-typescriptLicense]github-license-url

This package provides escaping the components in the MDX, which are missing or not provided.

It is compatible with MDX version 3.

This plugin is a recma plugin that transforms the ESAST which stands for Ecma Script Abstract Syntax Tree (AST) that is used in production of compiled source for the MDX.

When should I use this?

This plugin is useful if you want to escape the components you did not provide in MDX. You don't receive an error for missing / not provided components since the recma-escape-missing-components sets the default value () => null for the components.

Installation

This package is suitable for ESM only. In Node.js (version 16+), install with npm:

npm install recma-escape-missing-components

or

yarn add recma-escape-missing-components

Usage

Say we have the following file, example.mdx, which consists some Components.

# Hi

<Component1 />

<Component2 />

And our module, example.js, looks as follows:

import { read } from "to-vfile";
import { compile } from "@mdx-js/mdx";
import recmaEscapeMissingComponents from "recma-escape-missing-components";

main();

async function main() {
  const source = await read("example.mdx");

  const compiledSource = await compile(source, {
    recmaPlugins: [recmaEscapeMissingComponents],
  });

  return String(compiledSource);
}

Now, running node example.js produces the compiled source which contains the statement below:

const _EmptyComponent = () => null;
function _createMdxContent(props) {
  ...
  const {Component1 = _EmptyComponent, Component2 = _EmptyComponent} = _components;
  ...
}

Without the recma-escape-missing-components, you’d not get any Empty Component definition and default value for the components:

function _createMdxContent(props) {
  ...
  const {Component1, Component2} = _components;
  ...
}

Basically, the recma-escape-missing-components;

inserts the Empty Component definition into the code above the function _createMdxContent(props){}

const _EmptyComponent = () => null;

looks for a declaration statement in an object pattern initiated by the _components

const {Component1, Component2} = _components;

converts it as the destructed properties (Components) having a default value _EmptyComponent

const {Component1 = _EmptyComponent, Component2 = _EmptyComponent} = _components;

Options

type TestFunction = (componentName: string) => boolean | undefined | null;

function RecmaEscapeMissingComponents(test?: string | string[] | TestFunction)

test

  • if "undefined", all components pass the check.
  • if "string", check the component name matches with the string.
  • if "string[]", check the component name is included in the string array.
  • if "TestFunction", check the test function returns true.
  • if check is true/pass, set the default value () => null for that component.

Examples:

# Hi

<Component1 />

Wellcome

<Component2 />

Without the test option

use(RecmaEscapeMissingComponents);

is going to produce the compiled source has the statement for all components have the default value:

const {Component1 = _EmptyComponent, Component2 = _EmptyComponent} = _components;

With the test option (string)

use(RecmaEscapeMissingComponents, "Component1");

is going to produce the compiled source has the statement for only the Component1 has the default value:

const {Component1 = _EmptyComponent, Component2} = _components;

With the test option (string array)

use(RecmaEscapeMissingComponents, ["Component1"]);

is going to produce the compiled source has the statement for only the Component1 has the default value:

const {Component1 = _EmptyComponent, Component2} = _components;

With the test option (function)

use(RecmaEscapeMissingComponents, ((name) => name.endsWith("2")) as TestFunction);

is going to produce the compiled source has the statement for only the Component2 has the default value:

const {Component1, Component2 = _EmptyComponent} = _components;

Syntax tree

This plugin only modifies the ESAST (Ecma Script Abstract Syntax Tree) as explained.

Types

This package is fully typed with TypeScript. Function type for the test option is exported as TestFunction.

Compatibility

This plugin works with unified version 6+ and estree version 2+. It is compatible with mdx version 3.

Security

Use of recma-escape-missing-components does not involve user content so there are no openings for cross-site scripting (XSS) attacks.

License

MIT © ipikuka

Keywords

unified recma recma-plugin esast MDX