Functional Component Refactor: Pitch, Prezi, Spotify, Trello (#4264)

This commit is contained in:
mastqe
2022-10-15 10:02:02 -04:00
committed by GitHub
parent 7b69f7a6e2
commit ca31823228
4 changed files with 77 additions and 86 deletions

View File

@@ -2,22 +2,22 @@ import * as React from "react";
import Frame from "../components/Frame";
import { EmbedProps as Props } from ".";
const URL_REGEX = new RegExp(
"^https?://app\\.pitch\\.com/app/(?:presentation/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}|public/player)/(.*)$"
);
export default class Pitch extends React.Component<Props> {
static ENABLED = [URL_REGEX];
render() {
const shareId = this.props.attrs.matches[1];
return (
<Frame
{...this.props}
src={`https://pitch.com/embed/${shareId}`}
title="Pitch Embed"
height="414px"
/>
);
}
function Pitch(props: Props) {
const shareId = props.attrs.matches[1];
return (
<Frame
{...props}
src={`https://pitch.com/embed/${shareId}`}
title="Pitch Embed"
height="414px"
/>
);
}
Pitch.ENABLED = [
new RegExp(
"^https?://app\\.pitch\\.com/app/(?:presentation/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}|public/player)/(.*)$"
),
];
export default Pitch;