Refactor Airtable class component to functional (#4226)

This commit is contained in:
pbkompasz
2022-10-04 16:35:44 +03:00
committed by GitHub
parent 8417818528
commit db47b643be

View File

@@ -4,19 +4,19 @@ import { EmbedProps as Props } from ".";
const URL_REGEX = new RegExp("https://airtable.com/(?:embed/)?(shr.*)$");
export default class Airtable extends React.Component<Props> {
static ENABLED = [URL_REGEX];
render() {
const { matches } = this.props.attrs;
const shareId = matches[1];
return (
<Frame
{...this.props}
src={`https://airtable.com/embed/${shareId}`}
title={`Airtable (${shareId})`}
border
/>
);
}
function Airtable(props: Props) {
const { matches } = props.attrs;
const shareId = matches[1];
return (
<Frame
{...props}
src={`https://airtable.com/embed/${shareId}`}
title={`Airtable (${shareId})`}
border
/>
);
}
Airtable.ENABLED = [URL_REGEX];
export default Airtable;