* WIP * document migration * fix: Handle clashing keyboard events * fix: convert getSummary * fix: parseDocumentIds * lint * fix: Remove unused plugin * Move editor version to header Add editor version check for API endpoints * fix: Editor update auto-reload Bump RME * test * bump rme * Remove slate flow types, improve themeing, bump rme * bump rme * fix: parseDocumentIds returning duplicate ID's, improved regression tests * test * fix: Missing code styles * lint * chore: Upgrade v2 migration to use AST * Bump RME * Update welcome doc * add highlight to keyboard shortcuts ref * theming improvements * fix: Code comments show as headings, closes #1255 * loop * fix: TOC highlighting * lint * add: Automated backup of docs before migration * Update embeds to new format * fix: React warning * bump to final editor version 10.0.0 * test
51 lines
1.2 KiB
JavaScript
51 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.attrs.href;
|
|
}
|
|
|
|
getMatchResults(): ?{ 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.getMatchResults();
|
|
if (!result) return null;
|
|
|
|
const { isSelected, children } = this.props;
|
|
const { component, matches } = result;
|
|
const EmbedComponent = component;
|
|
|
|
return (
|
|
<Container contentEditable={false} isSelected={isSelected}>
|
|
<EmbedComponent matches={matches} url={this.url} />
|
|
{children}
|
|
</Container>
|
|
);
|
|
}
|
|
}
|
|
|
|
const Container = styled.div`
|
|
text-align: center;
|
|
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'};
|
|
`;
|