Refactor DBDiagram class component to functional (#4228)

This commit is contained in:
pbkompasz
2022-10-08 16:50:08 +03:00
committed by GitHub
parent 013a134084
commit c8f990018c
7 changed files with 68 additions and 70 deletions

View File

@@ -2,21 +2,11 @@ import * as React from "react";
import Frame from "../components/Frame";
import { EmbedProps as Props } from ".";
export default class ClickUp extends React.Component<Props> {
static ENABLED = [
new RegExp("^https?://share\\.clickup\\.com/[a-z]/[a-z]/(.*)/(.*)$"),
new RegExp(
"^https?://sharing\\.clickup\\.com/[0-9]+/[a-z]/[a-z]/(.*)/(.*)$"
),
];
render() {
return (
<Frame
{...this.props}
src={this.props.attrs.href}
title="ClickUp Embed"
/>
);
}
export default function ClickUp(props: Props) {
return <Frame {...props} src={this.props.attrs.href} title="ClickUp Embed" />;
}
ClickUp.ENABLED = [
new RegExp("^https?://share\\.clickup\\.com/[a-z]/[a-z]/(.*)/(.*)$"),
new RegExp("^https?://sharing\\.clickup\\.com/[0-9]+/[a-z]/[a-z]/(.*)/(.*)$"),
];