mirror of https://github.com/sgoudham/carbon.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
3.1 KiB
JavaScript
125 lines
3.1 KiB
JavaScript
8 years ago
|
import { EOL } from 'os'
|
||
8 years ago
|
import React from 'react'
|
||
|
import domtoimage from 'dom-to-image'
|
||
8 years ago
|
import CodeMirror from 'react-codemirror'
|
||
8 years ago
|
import Spinner from 'react-spinner'
|
||
7 years ago
|
import WindowControls from '../components/WindowControls'
|
||
|
import { COLORS } from '../lib/constants'
|
||
8 years ago
|
|
||
8 years ago
|
const DEFAULT_SETTINGS = {
|
||
|
paddingVertical: '50px',
|
||
|
paddingHorizontal: '50px',
|
||
|
marginVertical: '45px',
|
||
|
marginHorizontal: '45px',
|
||
|
background: '#fed0ec',
|
||
|
theme: 'dracula',
|
||
|
language: 'javascript'
|
||
|
}
|
||
8 years ago
|
|
||
7 years ago
|
class Carbon extends React.Component {
|
||
8 years ago
|
constructor (props) {
|
||
|
super(props)
|
||
|
|
||
|
this.state = {
|
||
|
loading: true
|
||
|
}
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
componentDidMount() {
|
||
|
this.setState({
|
||
|
loading: false
|
||
|
})
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
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
|
||
|
}
|
||
|
|
||
8 years ago
|
// create styles
|
||
8 years ago
|
const containerStyle = {
|
||
|
background: config.background,
|
||
7 years ago
|
padding: `${config.paddingVertical} ${config.paddingHorizontal}`
|
||
8 years ago
|
}
|
||
8 years ago
|
|
||
8 years ago
|
// set content to spinner if loading, else editor
|
||
|
let content = (
|
||
|
<div>
|
||
|
<Spinner />
|
||
|
<style jsx>{`
|
||
|
div {
|
||
8 years ago
|
height: 352px;
|
||
8 years ago
|
}
|
||
|
`}
|
||
|
</style>
|
||
8 years ago
|
</div>
|
||
8 years ago
|
)
|
||
|
if (this.state.loading === false) {
|
||
|
content = (
|
||
|
<div id="container" style={containerStyle}>
|
||
7 years ago
|
{ config.windowControls ? <WindowControls theme={config.windowTheme} /> : null }
|
||
7 years ago
|
<CodeMirror
|
||
7 years ago
|
className={`CodeMirror__container window-theme__${config.windowTheme} ${config.dropShadow ? 'dropshadow' : ''}`}
|
||
7 years ago
|
value={this.props.children}
|
||
|
options={options}
|
||
|
/>
|
||
7 years ago
|
<style jsx>{`
|
||
|
#container :global(.cm-s-dracula .CodeMirror-cursor) {
|
||
|
border-left: solid 2px #159588;
|
||
|
}
|
||
|
|
||
|
#container :global(.CodeMirror__container.dropshadow) {
|
||
|
box-shadow: 0px 3px 15px rgba(0,0,0,0.3);
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
#container :global(.CodeMirror__container .CodeMirror) {
|
||
|
height: auto;
|
||
|
min-width: 680px;
|
||
|
padding: 24px 18px;
|
||
|
border-radius: 5px;
|
||
|
font-family: Hack, monospace !important;
|
||
|
font-size: 0.7rem;
|
||
|
}
|
||
|
|
||
|
#container :global(.window-theme__sharp > .CodeMirror) {
|
||
|
border-radius: 0px;
|
||
|
}
|
||
|
|
||
|
#container :global(.window-theme__bw > .CodeMirror) {
|
||
|
border: 2px solid ${COLORS.SECONDARY};
|
||
|
}
|
||
|
|
||
|
#container :global(.window-controls + .CodeMirror__container > .CodeMirror) {
|
||
|
padding-top: 40px;
|
||
|
}
|
||
|
`}</style>
|
||
8 years ago
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<div id="section">
|
||
|
{ content }
|
||
|
<style jsx>{`
|
||
|
#section {
|
||
|
height: 100%;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
`}</style>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
8 years ago
|
}
|
||
|
|
||
7 years ago
|
export default Carbon
|