* First try

* Support old embeds
This commit is contained in:
Limezy
2023-03-03 23:28:16 +07:00
committed by GitHub
parent bef9673530
commit e4fadd01d9
6 changed files with 47 additions and 40 deletions

View File

@@ -0,0 +1,32 @@
import * as React from "react";
import Frame from "../components/Frame";
import Image from "../components/Image";
import { EmbedProps as Props } from ".";
function GoogleLookerStudio(props: Props) {
return (
<Frame
{...props}
src={props.attrs.href.replace("u/0", "embed").replace("/edit", "")}
icon={
<Image
src="/images/google-lookerstudio.png"
alt="Google Looker Studio Icon"
width={16}
height={16}
/>
}
canonicalUrl={props.attrs.href}
title="Google Looker Studio"
border
/>
);
}
GoogleLookerStudio.ENABLED = [
new RegExp(
"^https?://(lookerstudio|datastudio)\\.google\\.com/(embed|u/0)/reporting/(.*)/page/(.*)(/edit)?$"
),
];
export default GoogleLookerStudio;