Refactor DBDiagram class component to functional (#4228)
This commit is contained in:
@@ -4,11 +4,9 @@ import { EmbedProps as Props } from ".";
|
||||
|
||||
const URL_REGEX = new RegExp("^https://codepen.io/(.*?)/(pen|embed)/(.*)$");
|
||||
|
||||
export default class Codepen extends React.Component<Props> {
|
||||
static ENABLED = [URL_REGEX];
|
||||
|
||||
render() {
|
||||
const normalizedUrl = this.props.attrs.href.replace(/\/pen\//, "/embed/");
|
||||
return <Frame {...this.props} src={normalizedUrl} title="Codepen Embed" />;
|
||||
}
|
||||
export default function Codepen(props: Props) {
|
||||
const normalizedUrl = props.attrs.href.replace(/\/pen\//, "/embed/");
|
||||
return <Frame {...this.props} src={normalizedUrl} title="Codepen Embed" />;
|
||||
}
|
||||
|
||||
Codepen.ENABLED = [URL_REGEX];
|
||||
|
||||
Reference in New Issue
Block a user