blob: f5f9423e4b46d1f405b3c1cb53c398e42606b18b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
import React, { Component } from 'react'
import { Link } from 'react-router-dom'
import { bindActionCreators } from 'redux'
import { connect } from 'react-redux'
import * as actions from './search.actions'
import PanicButton from './panicButton.component'
class SearchMenu extends Component {
upload(e) {
const files = e.dataTransfer ? e.dataTransfer.files : e.target.files
let i
let file
for (i = 0; i < files.length; i++) {
file = files[i]
if (file && file.type.match('image.*')) break
}
if (!file) return
this.props.actions.upload(file)
}
random() {
this.props.actions.random()
}
render() {
const { savedCount, options } = this.props
return (
<div className="searchForm row">
<div className='row'>
<div className='upload'>
<button className='btn'><span>⤴</span> Search by Upload</button>
<input
type="file"
name="img"
accept="image/*"
onChange={this.upload.bind(this)}
required
/>
</div>
<button className='btn random' onClick={this.random.bind(this)}><span>♘</span> Random</button>
<PanicButton />
<Link to={actions.publicUrl.review()}>
<button className='btn btn-primary'><span>⇪</span>{
' ' + savedCount + ' Saved Image' + (savedCount === 1 ? '' : 's')
}</button>
</Link>
</div>
<div className='row searchOptions'>
<select
className='form-select'
onChange={e => this.props.actions.updateOptions({ thumbnailSize: e.target.value })}
value={options.thumbnailSize}
>
<option value='th'>Thumbnail</option>
<option value='sm'>Small</option>
<option value='md'>Medium</option>
<option value='lg'>Large</option>
</select>
<label className='row'>
<input
type='checkbox'
checked={options.groupByHash}
onChange={e => this.props.actions.updateOptions({ groupByHash: e.target.checked })}
/>
{' Group by hash'}
</label>
<label className='row'>
<input
type='number'
value={options.perPage}
className='perPage'
min={1}
max={100}
onChange={e => this.props.actions.updateOptions({ perPage: e.target.value })}
onBlur={() => window.location.reload()}
/>
{' per page'}
</label>
</div>
</div>
)
}
}
const mapStateToProps = state => ({
options: state.search.options,
savedCount: state.review.count,
})
const mapDispatchToProps = dispatch => ({
actions: bindActionCreators({ ...actions }, dispatch)
})
export default connect(mapStateToProps, mapDispatchToProps)(SearchMenu)
|