summaryrefslogtreecommitdiff
path: root/frontend/app/views/upload/components/upload.show.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-09-26 14:56:02 +0200
committerJules Laplace <julescarbon@gmail.com>2020-09-26 14:56:02 +0200
commita17b76ac75f506f5da6fe8adf9c36632b60d4226 (patch)
treeabb0af0c4409b830dea2ef808c146223ee973933 /frontend/app/views/upload/components/upload.show.js
parent2231a6e1c05b07bb7ec5906716aedec93d02429c (diff)
refactor to use app-rooted js imports
Diffstat (limited to 'frontend/app/views/upload/components/upload.show.js')
-rw-r--r--frontend/app/views/upload/components/upload.show.js70
1 files changed, 70 insertions, 0 deletions
diff --git a/frontend/app/views/upload/components/upload.show.js b/frontend/app/views/upload/components/upload.show.js
new file mode 100644
index 0000000..f63bc5f
--- /dev/null
+++ b/frontend/app/views/upload/components/upload.show.js
@@ -0,0 +1,70 @@
+import React, { Component } from 'react'
+import { Link } from 'react-router-dom'
+import { connect } from 'react-redux'
+
+import actions from 'app/actions'
+import { formatDate, formatTime, formatAge, uploadUri } from 'app/utils'
+import { history } from 'app/store'
+import { Loader, MenuButton } from 'app/common'
+
+class UploadShow extends Component {
+ componentDidMount() {
+ actions.upload.show(this.props.match.params.id)
+ }
+
+ componentDidUpdate(prevProps) {
+ if (prevProps.match.params.id !== this.props.match.params.id) {
+ actions.upload.show(this.props.match.params.id)
+ }
+ }
+
+ handleDestroy() {
+ const { res: data } = this.props.upload.show
+ if (confirm("Really delete this upload?")) {
+ actions.upload.destroy(data).then(() => {
+ history.push('/upload/')
+ })
+ }
+ }
+
+ render() {
+ const { show, destroy } = this.props.upload
+ if (show.loading || destroy.loading) {
+ return <Loader />
+ }
+ if (!show.loading && !show.res || show.not_found) {
+ return <div className='gray'>Upload {this.props.match.params.id} not found</div>
+ }
+ const { res: data } = show
+ return (
+ <section className="row uploadShow">
+ <div className="menuButtons">
+ <MenuButton name="delete" onClick={this.handleDestroy.bind(this)} />
+ <MenuButton name="search" href={'/search/upload/' + data.id + '/'} />
+ </div>
+ <div>
+ <img src={uploadUri(data)} />
+ <div className='byline'>
+ {'Uploaded by '}
+ {data.username}
+ {' on '}
+ {formatDate(data.created_at)}
+ {' at '}
+ {formatTime(data.created_at)}
+ {'. '}
+ </div>
+ </div>
+ </section>
+ )
+ }
+}
+
+const mapStateToProps = state => ({
+ upload: state.upload,
+})
+
+const mapDispatchToProps = dispatch => ({
+ // searchActions: bindActionCreators({ ...searchActions }, dispatch),
+})
+
+export default connect(mapStateToProps, mapDispatchToProps)(UploadShow)