import * as React from "react"; import Frame from "../components/Frame"; import { EmbedProps as Props } from "."; function Spotify(props: Props) { let pathname = ""; try { const parsed = new URL(props.attrs.href); pathname = parsed.pathname; } catch (err) { pathname = ""; } const normalizedPath = pathname.replace(/^\/embed/, "/"); let height; if (normalizedPath.includes("episode") || normalizedPath.includes("show")) { height = 232; } else if (normalizedPath.includes("track")) { height = 80; } else { height = 380; } return ( ); } Spotify.ENABLED = [new RegExp("https?://open\\.spotify\\.com/(.*)$")]; export default Spotify;