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/components/Editor/Embed.js
Tom Moor 044b4f16bc Editor embeds (#680)
- [x] Make deleting an embed easier
- [x] Add document level ability to disable embeds
- [x] Add team level ability to disable embeds
- [x] GitHub
- [x] Numeracy
- [x] Mode Analytics
- [x] Figma
- [x] Airtable
- [x] Vimeo
- [x] RealtimeBoard
- [x] Loom
- [x] Lucidcharts
- [x] Framer
- [x] InVision
- [x] Typeform
- [x] Marvel
- [x] Spotify
- [x] Codepen
- [x] Trello
2018-12-15 14:06:29 -08:00

53 lines
1.2 KiB
JavaScript

// @flow
import * as React from 'react';
import styled from 'styled-components';
import { fadeIn } from 'shared/styles/animations';
import embeds from '../../embeds';
export default class Embed extends React.Component<*> {
get url(): string {
return this.props.node.data.get('href');
}
get matches(): ?{ component: *, matches: string[] } {
const keys = Object.keys(embeds);
for (const key of keys) {
const component = embeds[key];
for (const host of component.ENABLED) {
const matches = this.url.match(host);
if (matches) return { component, matches };
}
}
}
render() {
const result = this.matches;
if (!result) return null;
const { attributes, isSelected } = this.props;
const { component, matches } = result;
const EmbedComponent = component;
return (
<Container
contentEditable={false}
isSelected={isSelected}
{...attributes}
>
<EmbedComponent matches={matches} url={this.url} />
</Container>
);
}
}
const Container = styled.div`
animation: ${fadeIn} 500ms ease-in-out;
line-height: 0;
border-radius: 3px;
box-shadow: ${props =>
props.isSelected ? `0 0 0 2px ${props.theme.selected}` : 'none'};
`;