feat: Additional embed integrations (#3398)
* feat: Gliffy integration * feat: JSFiddle integration * feat: Otter.ai integration * Optimised images with calibre/image-actions Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
25
shared/editor/embeds/JSFiddle.tsx
Normal file
25
shared/editor/embeds/JSFiddle.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import * as React from "react";
|
||||
import { useTheme } from "styled-components";
|
||||
import Frame from "../components/Frame";
|
||||
import { EmbedProps as Props } from ".";
|
||||
|
||||
function JSFiddle(props: Props) {
|
||||
const normalizedUrl = props.attrs.href.replace(/(\/embedded)?\/$/, "");
|
||||
const theme = useTheme();
|
||||
|
||||
return (
|
||||
<Frame
|
||||
{...props}
|
||||
src={`${normalizedUrl}/embedded/result,js,css,html/${
|
||||
theme.isDark ? "dark/" : ""
|
||||
}`}
|
||||
title="JSFiddle Embed"
|
||||
referrerPolicy="origin"
|
||||
border
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
JSFiddle.ENABLED = [new RegExp("https?://jsfiddle.net/(.*)/(.*)$")];
|
||||
|
||||
export default JSFiddle;
|
||||
Reference in New Issue
Block a user