import "./index.scss"; import React = require("react"); import { RegisteredComponent } from "@tandem/editor/browser/components/common"; import { ISyntheticDocumentRenderer } from "@tandem/synthetic-browser"; export default class PreviewComponent extends React.Component<{ renderer: ISyntheticDocumentRenderer }, any> { shouldComponentUpdate(props) { return this.props.renderer !== props.renderer; } componentDidUpdate() { this._update(); } _update() { const container = (this.refs as any).container; container.innerHTML = ""; // shadow root to ensure that any imported CSS doesn't foo with the rest // of the application const div = document.createElement("div") as any; // if (div.createShadowRoot) { // div.createShadowRoot(); // } else if (div.attachShadow) { // div.attachShadow({ mode: "open" }); // } div.appendChild(this.props.renderer.element); this.props.renderer.start(); container.appendChild(div); } componentDidMount() { this._update(); } render() { return (