interweave
Version:
React library to safely render HTML, filter attributes, autowrap text, autolink, and much more.
89 lines (72 loc) • 2.52 kB
text/typescript
import React from 'react';
import { match } from './match';
import { ChildrenNode, MatchCallback, MatcherInterface, MatchResponse, Node } from './types';
export abstract class Matcher<Props extends object = {}, Options extends object = {}>
implements MatcherInterface<Props> {
greedy: boolean = false;
options: Options;
propName: string;
inverseName: string;
factory: React.ComponentType<Props> | null;
constructor(name: string, options?: Options, factory?: React.ComponentType<Props> | null) {
if (__DEV__ && (!name || name.toLowerCase() === 'html')) {
throw new Error(`The matcher name "${name}" is not allowed.`);
}
// @ts-expect-error Allow override
this.options = { ...options };
this.propName = name;
this.inverseName = `no${name.charAt(0).toUpperCase() + name.slice(1)}`;
this.factory = factory ?? null;
}
/**
* Attempts to create a React element using a custom user provided factory,
* or the default matcher factory.
*/
createElement(children: ChildrenNode, props: Props): Node {
const element = this.factory
? React.createElement(this.factory, props, children)
: this.replaceWith(children, props);
if (__DEV__ && typeof element !== 'string' && !React.isValidElement(element)) {
throw new Error(`Invalid React element created from ${this.constructor.name}.`);
}
return element;
}
/**
* Trigger the actual pattern match and package the matched
* response through a callback.
*/
doMatch<T>(
string: string,
pattern: RegExp | string,
callback: MatchCallback<T>,
isVoid: boolean = false,
): MatchResponse<T> | null {
return match(string, pattern, callback, isVoid);
}
/**
* Callback triggered before parsing.
*/
onBeforeParse(content: string, props: Props): string {
return content;
}
/**
* Callback triggered after parsing.
*/
onAfterParse(content: Node[], props: Props): Node[] {
return content;
}
/**
* Replace the match with a React element based on the matched token and optional props.
*/
abstract replaceWith(children: ChildrenNode, props: Props): Node;
/**
* Defines the HTML tag name that the resulting React element will be.
*/
abstract asTag(): string;
/**
* Attempt to match against the defined string. Return `null` if no match found,
* else return the `match` and any optional props to pass along.
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-redundant-type-constituents
abstract match(string: string): MatchResponse<any> | null;
}