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.
carbon/pages/index.js

98 lines
2.5 KiB
JavaScript

7 years ago
import React from 'react'
import HTML5Backend from 'react-dnd-html5-backend'
import { DragDropContext } from 'react-dnd'
7 years ago
import Axios from 'axios'
import domtoimage from 'dom-to-image'
7 years ago
import Meta from '../components/Meta'
import Toolbar from '../components/Toolbar'
import CodeImage from '../components/CodeImage'
7 years ago
import api from '../lib/api'
import { THEMES, LANGUAGES, DEFAULT_CODE } from '../lib/constants'
class Index extends React.Component {
7 years ago
/* pathname, asPath, err, req, res */
static async getInitialProps ({ asPath }) {
try {
if (asPath !== '/') {
const content = await api.getGist(asPath)
return { content }
}
7 years ago
} catch (e) {
console.log(e)
}
return {}
7 years ago
}
constructor() {
super()
this.state = {
bgColor: '#111111',
theme: THEMES[0].id,
language: 'javascript' // TODO LANGUAGES[0]
}
}
save () {
7 years ago
// domtoimage.toPng(document.getElementById('container'))
domtoimage.toJpeg(document.getElementById('container'))
.then((dataUrl) => {
const link = document.createElement('a')
7 years ago
// link.download = 'snippet.png'
link.download = 'snippet.jpeg'
link.href = dataUrl
link.click()
})
}
7 years ago
upload () {
domtoimage.toBlob(document.getElementById('container'))
.then(api.uploadImage)
.then(res => res.data.link)
.then(console.log)
}
7 years ago
render () {
return (
<div className="main">
<Meta />
<h1>Welcome to Code Image</h1>
<div id="editor">
<Toolbar
save={this.save}
7 years ago
upload={this.upload}
onBGChange={color => this.setState({ bgColor: color })}
onThemeChange={theme => this.setState({ theme: theme.id })}
onLanguageChange={language => this.setState({ language })}
bg={this.state.bgColor}
/>
<CodeImage config={this.state}>
{this.droppedContent || this.props.content || DEFAULT_CODE}
</CodeImage>
</div>
<style jsx>{`
h1 {
color: #fff;
}
div {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#editor {
height: 460px;
background: #151515;
padding: 16px;
}
`}
</style>
</div>
7 years ago
)
}
7 years ago
}
export default DragDropContext(HTML5Backend)(Index)