This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/app/embeds/InVision.js

43 lines
972 B
JavaScript

// @flow
import * as React from "react";
import ImageZoom from "react-medium-image-zoom";
import Frame from "./components/Frame";
const IFRAME_REGEX = new RegExp(
"^https://(invis.io/.*)|(projects.invisionapp.com/share/.*)$"
);
const IMAGE_REGEX = new RegExp(
"^https://(opal.invisionapp.com/static-signed/live-embed/.*)$"
);
type Props = {|
attrs: {|
href: string,
matches: string[],
|},
|};
export default class InVision extends React.Component<Props> {
static ENABLED = [IFRAME_REGEX, IMAGE_REGEX];
render() {
if (IMAGE_REGEX.test(this.props.attrs.href)) {
return (
<ImageZoom
image={{
src: this.props.attrs.href,
alt: "InVision Embed",
style: {
maxWidth: "100%",
maxHeight: "75vh",
},
}}
shouldRespectMaxDimension
/>
);
}
return <Frame src={this.props.attrs.href} title="InVision Embed" />;
}
}