22 lines
601 B
TypeScript
22 lines
601 B
TypeScript
import * as React from "react";
|
|
import Frame from "./components/Frame";
|
|
import { EmbedProps as Props } from ".";
|
|
|
|
const URL_REGEX = /(http|https)?:\/\/(www\.)?vimeo.com\/(?:channels\/(?:\w+\/)?|groups\/([^/]*)\/videos\/|)(\d+)(?:|\/\?)/;
|
|
|
|
export default class Vimeo extends React.Component<Props> {
|
|
static ENABLED = [URL_REGEX];
|
|
|
|
render() {
|
|
const { matches } = this.props.attrs;
|
|
const videoId = matches[4];
|
|
return (
|
|
<Frame
|
|
{...this.props}
|
|
src={`https://player.vimeo.com/video/${videoId}?byline=0`}
|
|
title={`Vimeo Embed (${videoId})`}
|
|
/>
|
|
);
|
|
}
|
|
}
|