Created
December 10, 2018 14:37
-
-
Save goto-bus-stop/356e7678491565747d419833a11c5f77 to your computer and use it in GitHub Desktop.
@uppy/react with typescript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react' | |
import Uppy = require('@uppy/core') | |
import Tus = require('@uppy/tus') | |
import GoogleDrive = require('@uppy/google-drive') | |
import { Dashboard, DashboardModal, DragDrop, ProgressBar } from '@uppy/react' | |
import '@uppy/core/dist/style.css' | |
import '@uppy/dashboard/dist/style.css' | |
type Props = {} | |
type State = { | |
open: boolean, | |
showInlineDashboard: boolean | |
} | |
class App extends React.Component<Props, State> { | |
uppy: Uppy.Uppy; | |
uppy2: Uppy.Uppy; | |
constructor (props) { | |
super(props) | |
this.uppy = Uppy({ id: 'uppy1', autoProceed: true, debug: true }) | |
.use(Tus, { endpoint: 'https://master.tus.io/files/' }) | |
.use(GoogleDrive, { serverUrl: 'https://companion.uppy.io' }) | |
this.uppy2 = Uppy({ id: 'uppy2', autoProceed: false, debug: true }) | |
.use(Tus, { endpoint: 'https://master.tus.io/files/' }) | |
this.state = { | |
showInlineDashboard: true, | |
open: false | |
} | |
this.handleModalClick = this.handleModalClick.bind(this) | |
} | |
componentWillUnmount () { | |
this.uppy.close() | |
this.uppy2.close() | |
} | |
handleModalClick () { | |
this.setState({ | |
open: !this.state.open | |
}) | |
} | |
render () { | |
const { showInlineDashboard } = this.state | |
return ( | |
<div> | |
<h1>React Examples</h1> | |
<h2>Inline Dashboard</h2> | |
<div id="inline-dashboard"> | |
<label> | |
<input | |
id="inline-dashboard-toggle" | |
type="checkbox" | |
checked={showInlineDashboard} | |
onChange={(event) => { | |
this.setState({ | |
showInlineDashboard: event.target.checked | |
}) | |
}} | |
/> | |
Show Dashboard | |
</label> | |
{showInlineDashboard && ( | |
<Dashboard | |
uppy={this.uppy} | |
plugins={['GoogleDrive']} | |
metaFields={[ | |
{ id: 'name', name: 'Name', placeholder: 'File name' } | |
]} | |
/> | |
)} | |
</div> | |
<h2>Modal Dashboard</h2> | |
<div id="modal-dashboard"> | |
<button onClick={this.handleModalClick} id="modal-dashboard-toggle"> | |
{this.state.open ? 'Close dashboard' : 'Open dashboard'} | |
</button> | |
<DashboardModal | |
uppy={this.uppy2} | |
open={this.state.open} | |
target="#modal-dashboard" | |
onRequestClose={() => this.setState({ open: false })} | |
/> | |
</div> | |
<h2>Drag Drop Area</h2> | |
<div id="drag-drop"> | |
<DragDrop | |
uppy={this.uppy} | |
locale={{ | |
strings: { | |
chooseFile: 'Boop a file', | |
orDragDrop: 'or yoink it here' | |
} | |
}} | |
/> | |
</div> | |
<h2>Progress Bar</h2> | |
<div id="progress-bar"> | |
<ProgressBar | |
uppy={this.uppy} | |
hideAfterFinish={false} | |
/> | |
</div> | |
</div> | |
) | |
} | |
} | |
export default App |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment