Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Moor <tom.moor@gmail.com>
21 lines
540 B
TypeScript
21 lines
540 B
TypeScript
import * as React from "react";
|
|
import Frame from "../components/Frame";
|
|
import { EmbedProps as Props } from ".";
|
|
|
|
const URL_REGEX =
|
|
/(?:https?:\/\/)?(www\.bilibili\.com)\/video\/([\w\d]+)?(\?\S+)?/i;
|
|
|
|
export default function Bilibili(props: Props) {
|
|
const { matches } = props.attrs;
|
|
const videoId = matches[2];
|
|
return (
|
|
<Frame
|
|
{...props}
|
|
src={`https://player.bilibili.com/player.html?bvid=${videoId}&page=1&high_quality=1`}
|
|
title={`Bilibili Embed (${videoId})`}
|
|
/>
|
|
);
|
|
}
|
|
|
|
Bilibili.ENABLED = [URL_REGEX];
|