lint, tsc
This commit is contained in:
@@ -1,16 +1,10 @@
|
||||
import * as React from "react";
|
||||
import ImageZoom from "react-medium-image-zoom";
|
||||
import Frame from "./components/Frame";
|
||||
import { EmbedProps as Props } from ".";
|
||||
|
||||
const IFRAME_REGEX = /^https:\/\/(invis\.io\/.*)|(projects\.invisionapp\.com\/share\/.*)$/;
|
||||
const IMAGE_REGEX = /^https:\/\/(opal\.invisionapp\.com\/static-signed\/live-embed\/.*)$/;
|
||||
type Props = {
|
||||
isSelected: boolean;
|
||||
attrs: {
|
||||
href: string;
|
||||
matches: string[];
|
||||
};
|
||||
};
|
||||
|
||||
export default class InVision extends React.Component<Props> {
|
||||
static ENABLED = [IFRAME_REGEX, IMAGE_REGEX];
|
||||
@@ -37,7 +31,6 @@ export default class InVision extends React.Component<Props> {
|
||||
return (
|
||||
<Frame
|
||||
{...this.props}
|
||||
// @ts-expect-error ts-migrate(2322) FIXME: Type '{ src: string; title: string; isSelected: bo... Remove this comment to see the full error message
|
||||
src={this.props.attrs.href}
|
||||
title="InVision Embed"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user