Refractor Abstract class component to functional (#4216)

This commit is contained in:
pbkompasz
2022-10-03 16:15:37 +03:00
committed by GitHub
parent 55e622e22f
commit 4df0d06eb2

View File

@@ -2,21 +2,21 @@ import * as React from "react";
import Frame from "../components/Frame";
import { EmbedProps as Props } from ".";
export default class Abstract extends React.Component<Props> {
static ENABLED = [
new RegExp("https?://share\\.(?:go)?abstract\\.com/(.*)$"),
new RegExp("https?://app\\.(?:go)?abstract\\.com/(?:share|embed)/(.*)$"),
];
render() {
const { matches } = this.props.attrs;
const shareId = matches[1];
return (
<Frame
{...this.props}
src={`https://app.goabstract.com/embed/${shareId}`}
title={`Abstract (${shareId})`}
/>
);
}
function Abstract(props: Props) {
const { matches } = props.attrs;
const shareId = matches[1];
return (
<Frame
{...props}
src={`https://app.goabstract.com/embed/${shareId}`}
title={`Abstract (${shareId})`}
/>
);
}
Abstract.ENABLED = [
new RegExp("https?://share\\.(?:go)?abstract\\.com/(.*)$"),
new RegExp("https?://app\\.(?:go)?abstract\\.com/(?:share|embed)/(.*)$"),
];
export default Abstract;