import { EOL } from 'os' import React from 'react' import domtoimage from 'dom-to-image' import CodeMirror from 'react-codemirror' import WindowControls from '../components/svg/Controls' import Spinner from 'react-spinner' // hack to only call modes on browser if (typeof window !== 'undefined' && typeof window.navigator !== 'undefined') { require('../lib/constants') } const DEFAULT_SETTINGS = { paddingVertical: '50px', paddingHorizontal: '50px', marginVertical: '45px', marginHorizontal: '45px', background: '#fed0ec', theme: 'dracula', language: 'javascript' } class CodeImage extends React.Component { constructor (props) { super(props) this.state = { loading: true } } componentDidMount() { this.setState({ loading: false }) } render () { const config = Object.assign(DEFAULT_SETTINGS, this.props.config) const options = { lineNumbers: false, mode: config.language, theme: config.theme, scrollBarStyle: null, viewportMargin: Infinity, lineWrapping: true } // create styles const containerStyle = { background: config.background, padding: `${config.paddingVertical} ${config.paddingHorizontal}`, paddingTop: `calc(${config.paddingVertical} - 19px)` // TODO fix hack: accomodates for space taken up by window controls } // set content to spinner if loading, else editor let content = (
) if (this.state.loading === false) { content = (
{ true ? : null }
) } return (
{ content }
) } } export default CodeImage