forked from outline/outline
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathInVision.js
39 lines (34 loc) · 905 Bytes
/
InVision.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// @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 = {
url: string,
};
export default class InVision extends React.Component<Props> {
static ENABLED = [IFRAME_REGEX, IMAGE_REGEX];
render() {
if (IMAGE_REGEX.test(this.props.url)) {
return (
<ImageZoom
image={{
src: this.props.url,
alt: 'InVision Embed',
style: {
maxWidth: '100%',
maxHeight: '75vh',
},
}}
shouldRespectMaxDimension
/>
);
}
return <Frame src={this.props.url} title="InVision Embed" />;
}
}