|
|
|
@ -1,10 +1,14 @@
|
|
|
|
|
import { EOL } from 'os'
|
|
|
|
|
import * as hljs from 'highlight.js'
|
|
|
|
|
import React from 'react'
|
|
|
|
|
import domtoimage from 'dom-to-image'
|
|
|
|
|
import CodeMirror from 'react-codemirror'
|
|
|
|
|
import Spinner from 'react-spinner'
|
|
|
|
|
import toHash from 'tohash'
|
|
|
|
|
import WindowControls from '../components/WindowControls'
|
|
|
|
|
import { COLORS } from '../lib/constants'
|
|
|
|
|
import { COLORS, DEFAULT_LANGUAGE, LANGUAGES } from '../lib/constants'
|
|
|
|
|
|
|
|
|
|
const LANGUAGE_HASH = toHash(LANGUAGES, 'module')
|
|
|
|
|
|
|
|
|
|
const DEFAULT_SETTINGS = {
|
|
|
|
|
paddingVertical: '50px',
|
|
|
|
@ -13,7 +17,7 @@ const DEFAULT_SETTINGS = {
|
|
|
|
|
marginHorizontal: '45px',
|
|
|
|
|
background: '#fed0ec',
|
|
|
|
|
theme: 'dracula',
|
|
|
|
|
language: 'javascript'
|
|
|
|
|
language: DEFAULT_LANGUAGE
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class Carbon extends React.Component {
|
|
|
|
@ -21,14 +25,45 @@ class Carbon extends React.Component {
|
|
|
|
|
super(props)
|
|
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
|
loading: true
|
|
|
|
|
loading: true,
|
|
|
|
|
language: props.config.language,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.handleLanguageChange = this.handleLanguageChange.bind(this)
|
|
|
|
|
this.codeUpdated = this.codeUpdated.bind(this)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
|
this.setState({
|
|
|
|
|
loading: false
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
this.handleLanguageChange(this.props.children)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
componentWillReceiveProps (newProps) {
|
|
|
|
|
this.handleLanguageChange(newProps.children, { customProps: newProps })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
codeUpdated (newCode) {
|
|
|
|
|
this.handleLanguageChange(newCode)
|
|
|
|
|
this.props.updateCode(newCode)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
handleLanguageChange(newCode, config) {
|
|
|
|
|
const props = (config && config.customProps) || this.props
|
|
|
|
|
|
|
|
|
|
if (props.config.language === 'auto') {
|
|
|
|
|
// try to set the language
|
|
|
|
|
const detectedLanguage = hljs.highlightAuto(newCode).language
|
|
|
|
|
const languageModule = LANGUAGE_HASH[detectedLanguage]
|
|
|
|
|
|
|
|
|
|
if (languageModule) {
|
|
|
|
|
this.setState({ language: languageModule.module })
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.setState({ language: props.config.language })
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render () {
|
|
|
|
@ -36,7 +71,7 @@ class Carbon extends React.Component {
|
|
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
|
lineNumbers: false,
|
|
|
|
|
mode: config.language,
|
|
|
|
|
mode: this.state.language || 'plaintext',
|
|
|
|
|
theme: config.theme,
|
|
|
|
|
scrollBarStyle: null,
|
|
|
|
|
viewportMargin: Infinity,
|
|
|
|
@ -67,6 +102,7 @@ class Carbon extends React.Component {
|
|
|
|
|
{ config.windowControls ? <WindowControls theme={config.windowTheme} /> : null }
|
|
|
|
|
<CodeMirror
|
|
|
|
|
className={`CodeMirror__container window-theme__${config.windowTheme} ${config.dropShadow ? 'dropshadow' : ''}`}
|
|
|
|
|
onChange={this.codeUpdated}
|
|
|
|
|
value={this.props.children}
|
|
|
|
|
options={options}
|
|
|
|
|
/>
|
|
|
|
|