Refactor DBDiagram class component to functional (#4228)
This commit is contained in:
@@ -4,19 +4,17 @@ import { EmbedProps as Props } from ".";
|
||||
|
||||
const URL_REGEX = new RegExp("https?://cawemo.com/(?:share|embed)/(.*)$");
|
||||
|
||||
export default class Cawemo extends React.Component<Props> {
|
||||
static ENABLED = [URL_REGEX];
|
||||
|
||||
render() {
|
||||
const { matches } = this.props.attrs;
|
||||
const shareId = matches[1];
|
||||
return (
|
||||
<Frame
|
||||
{...this.props}
|
||||
src={`https://cawemo.com/embed/${shareId}`}
|
||||
title={"Cawemo Embed"}
|
||||
border
|
||||
/>
|
||||
);
|
||||
}
|
||||
export default function Cawemo(props: Props) {
|
||||
const { matches } = props.attrs;
|
||||
const shareId = matches[1];
|
||||
return (
|
||||
<Frame
|
||||
{...props}
|
||||
src={`https://cawemo.com/embed/${shareId}`}
|
||||
title={"Cawemo Embed"}
|
||||
border
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
Cawemo.ENABLED = [URL_REGEX];
|
||||
|
||||
Reference in New Issue
Block a user