Refractor Abstract class component to functional (#4216)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user