mirror of
https://github.com/status-im/liquid-funding.git
synced 2025-01-28 04:04:51 +00:00
351 lines
10 KiB
JavaScript
351 lines
10 KiB
JavaScript
import React, { createRef, useState } from 'react'
|
|
import { Formik } from 'formik'
|
|
import TextField from '@material-ui/core/TextField'
|
|
import Divider from '@material-ui/core/Divider'
|
|
import FormControlLabel from '@material-ui/core/FormControlLabel'
|
|
import Switch from '@material-ui/core/Switch'
|
|
import Button from '@material-ui/core/Button'
|
|
import InputAdornment from '@material-ui/core/InputAdornment'
|
|
import CloudUpload from '@material-ui/icons/CloudUpload'
|
|
import { withStyles } from '@material-ui/core/styles'
|
|
import { captureFile, formatForIpfs, uploadToIpfs } from '../../utils/ipfs'
|
|
|
|
const styles = theme => ({
|
|
root: {
|
|
display: 'grid',
|
|
gridTemplateColumns: 'repeat(12, [col] 1fr)',
|
|
gridTemplateRows: 'repeat(5, [row] auto)',
|
|
gridColumnGap: '1em',
|
|
gridRowGap: '3ch',
|
|
fontFamily: theme.typography.fontFamily,
|
|
[theme.breakpoints.up('sm')]: {
|
|
margin: '1.75rem 4.5rem'
|
|
}
|
|
},
|
|
title: {
|
|
display: 'grid',
|
|
fontSize: '2.5rem',
|
|
gridColumnStart: '1',
|
|
gridColumnEnd: '13',
|
|
gridRowStart: '1',
|
|
gridRowEnd: '6',
|
|
textAlign: 'center'
|
|
},
|
|
submissionRoot: {
|
|
display: 'grid',
|
|
gridTemplateColumns: 'repeat(12, [col] 1fr)',
|
|
gridTemplateRows: 'repeat(5, [row] auto)',
|
|
gridColumnGap: '1em',
|
|
gridColumnStart: '1',
|
|
gridColumnEnd: '13',
|
|
gridRowGap: '2ch',
|
|
},
|
|
formControl: {
|
|
gridColumnStart: '6'
|
|
},
|
|
formButton: {
|
|
gridColumnStart: '1',
|
|
gridColumnEnd: '13',
|
|
height: '50px'
|
|
},
|
|
textField: {
|
|
gridColumnStart: '1',
|
|
gridColumnEnd: '13'
|
|
},
|
|
textInput: {
|
|
fontSize: '2rem'
|
|
}
|
|
})
|
|
|
|
const isWeb = str => str.includes('http')
|
|
const createJSON = values => {
|
|
const {
|
|
title,
|
|
subtitle,
|
|
creator,
|
|
avatar,
|
|
goal,
|
|
goalToken,
|
|
video,
|
|
isPlaying,
|
|
description
|
|
} = values
|
|
|
|
const manifest = {
|
|
title,
|
|
subtitle,
|
|
creator,
|
|
avatar,
|
|
goal,
|
|
goalToken,
|
|
description,
|
|
media: {
|
|
isPlaying,
|
|
url: video,
|
|
type: 'video'
|
|
}
|
|
}
|
|
return JSON.stringify(manifest, null, 2)
|
|
}
|
|
|
|
const Title = ({ className }) => (
|
|
<div className={className}>
|
|
<div style={{ alignSelf: 'center' }}>Create Project</div>
|
|
<Divider />
|
|
</div>
|
|
)
|
|
|
|
let uploadInput = createRef()
|
|
const SubmissionSection = ({ classes }) => {
|
|
const [uploads, setUploads] = useState({})
|
|
return (
|
|
<Formik
|
|
initialValues={{
|
|
title: '',
|
|
subtitle: '',
|
|
creator: '',
|
|
avatar: '',
|
|
goal: '',
|
|
goalToken: '',
|
|
video: '',
|
|
isPlaying: false,
|
|
description: ''
|
|
}}
|
|
onSubmit={async (values, { resetForm }) => {
|
|
const manifest = createJSON(values)
|
|
let fileLists = []
|
|
Object.keys(uploads).forEach(k => {
|
|
fileLists = [ ...fileLists, formatForIpfs(uploads[k][0]) ]
|
|
})
|
|
fileLists.push({
|
|
path: '/root/manifest.json', content: Buffer.from(manifest)
|
|
})
|
|
const contentHash = await uploadToIpfs(fileLists)
|
|
//saveToIpfs(fileLists, console.log, console.log)
|
|
console.log({manifest, values, uploads, fileLists, contentHash})
|
|
|
|
}}
|
|
>
|
|
{({
|
|
values,
|
|
errors,
|
|
touched,
|
|
handleChange,
|
|
handleBlur,
|
|
handleSubmit,
|
|
setFieldValue,
|
|
setStatus,
|
|
status
|
|
}) => {
|
|
return (
|
|
<form onSubmit={handleSubmit} className={classes.submissionRoot}>
|
|
<input
|
|
ref={(input) => { uploadInput = input }}
|
|
type="file"
|
|
multiple
|
|
onChange={
|
|
(e) => {
|
|
const file = e.target.files
|
|
const { activeField } = status
|
|
setFieldValue(activeField, file[0]['name'])
|
|
setUploads({ ...uploads, [activeField]: file })
|
|
setStatus({
|
|
...status,
|
|
activeField: null
|
|
})
|
|
console.log({file, activeField, status}, e.target)
|
|
}
|
|
}
|
|
style={{ display: 'none' }}
|
|
/>
|
|
<TextField
|
|
className={classes.textField}
|
|
InputProps={{
|
|
classes: {
|
|
input: classes.textInput
|
|
}
|
|
}}
|
|
id="title"
|
|
name="title"
|
|
label="Enter Project Name"
|
|
placeholder="Enter Project Name"
|
|
margin="normal"
|
|
variant="outlined"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.title || ''}
|
|
/>
|
|
<TextField
|
|
className={classes.textField}
|
|
InputProps={{
|
|
classes: {
|
|
input: classes.textInput
|
|
}
|
|
}}
|
|
id="subtitle"
|
|
name="subtitle"
|
|
label="Enter a sub heading description for your project"
|
|
placeholder="Enter a sub heading description for your project"
|
|
margin="normal"
|
|
variant="outlined"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.subtitle || ''}
|
|
/>
|
|
<TextField
|
|
className={classes.textField}
|
|
InputProps={{
|
|
classes: {
|
|
input: classes.textInput
|
|
}
|
|
}}
|
|
id="creator"
|
|
name="creator"
|
|
label="Enter the project creator"
|
|
placeholder="Enter the project creator"
|
|
margin="normal"
|
|
variant="outlined"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.creator || ''}
|
|
/>
|
|
<TextField
|
|
className={classes.textField}
|
|
InputProps={{
|
|
startAdornment: (
|
|
<InputAdornment position="start">
|
|
<CloudUpload
|
|
style={{ cursor: 'pointer' }}
|
|
onClick={() => {
|
|
const activeField = 'avatar'
|
|
setStatus({ ...status, activeField })
|
|
uploadInput.click()
|
|
}
|
|
}
|
|
/>
|
|
</InputAdornment>
|
|
),
|
|
classes: {
|
|
input: classes.textInput
|
|
}
|
|
}}
|
|
id="avatar"
|
|
name="avatar"
|
|
label="Upload or enter link to creator avatar"
|
|
placeholder="upload or enter link to creator avatar"
|
|
margin="normal"
|
|
variant="outlined"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.avatar || ''}
|
|
/>
|
|
<TextField
|
|
className={classes.textField}
|
|
InputProps={{
|
|
classes: {
|
|
input: classes.textInput
|
|
}
|
|
}}
|
|
id="goal"
|
|
name="goal"
|
|
label="Enter your funding goal"
|
|
placeholder="Enter your funding goal"
|
|
margin="normal"
|
|
variant="outlined"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.goal || ''}
|
|
/>
|
|
<TextField
|
|
className={classes.textField}
|
|
InputProps={{
|
|
classes: {
|
|
input: classes.textInput
|
|
}
|
|
}}
|
|
id="goalToken"
|
|
name="goalToken"
|
|
label="Select Token"
|
|
placeholder="Select Token"
|
|
margin="normal"
|
|
variant="outlined"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.token || ''}
|
|
/>
|
|
<TextField
|
|
className={classes.textField}
|
|
InputProps={{
|
|
startAdornment: (
|
|
<InputAdornment position="start">
|
|
<CloudUpload
|
|
style={{ cursor: 'pointer' }}
|
|
onClick={() => {
|
|
const activeField = 'video'
|
|
setStatus({ ...status, activeField })
|
|
uploadInput.click()
|
|
}
|
|
}
|
|
/>
|
|
</InputAdornment>
|
|
),
|
|
classes: {
|
|
input: classes.textInput
|
|
}
|
|
}}
|
|
id="video"
|
|
name="video"
|
|
label="Upload video or enter url"
|
|
placeholder="Upload video or enter url"
|
|
margin="normal"
|
|
variant="outlined"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.video || ''}
|
|
/>
|
|
<FormControlLabel
|
|
className={classes.formControl}
|
|
control={
|
|
<Switch
|
|
id="isPlaying"
|
|
checked={values.isPlaying}
|
|
onChange={handleChange}
|
|
value={values.isPlaying}
|
|
/>
|
|
}
|
|
label="Autoplay video?"
|
|
/>
|
|
<TextField
|
|
className={classes.textField}
|
|
id="description"
|
|
name="description"
|
|
multiline
|
|
label="Enter extended description here"
|
|
placeholder="Enter extended description here"
|
|
margin="normal"
|
|
variant="outlined"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.description || ''}
|
|
/>
|
|
<Button type="submit" color="primary" variant="contained" className={classes.formButton}>Create Project</Button>
|
|
</form>
|
|
)
|
|
}
|
|
}
|
|
</Formik>
|
|
)
|
|
}
|
|
|
|
function CreateProject({ classes }) {
|
|
return (
|
|
<div className={classes.root}>
|
|
<Title className={classes.title} />
|
|
<SubmissionSection classes={classes} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const StyledProject = withStyles(styles)(CreateProject)
|
|
export default StyledProject
|