-
Notifications
You must be signed in to change notification settings - Fork 417
/
Copy pathindex.js
390 lines (346 loc) · 11.5 KB
/
index.js
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
const React = require('react')
const { Component } = React
const PropTypes = require('prop-types')
const { getDeviceId, getFacingModePattern } = require('./getDeviceId')
const havePropsChanged = require('./havePropsChanged')
const createBlob = require('./createBlob')
// Require adapter to support older browser implementations
require('webrtc-adapter')
// Inline worker.js as a string value of workerBlob.
// eslint-disable-next-line
let workerBlob = createBlob([__inline('../lib/worker.js')], {
type: 'application/javascript',
})
// Props that are allowed to change dynamicly
const propsKeys = ['delay', 'legacyMode', 'facingMode']
module.exports = class Reader extends Component {
static propTypes = {
onScan: PropTypes.func.isRequired,
onError: PropTypes.func.isRequired,
onLoad: PropTypes.func,
onImageLoad: PropTypes.func,
delay: PropTypes.oneOfType([PropTypes.number, PropTypes.bool]),
facingMode: PropTypes.oneOf(['user', 'environment']),
legacyMode: PropTypes.bool,
resolution: PropTypes.number,
showViewFinder: PropTypes.bool,
style: PropTypes.any,
className: PropTypes.string,
constraints: PropTypes.object
};
static defaultProps = {
delay: 500,
resolution: 600,
facingMode: 'environment',
showViewFinder: true,
constraints: null
};
els = {};
constructor(props) {
super(props)
this.state = {
mirrorVideo: false,
}
// Bind function to the class
this.initiate = this.initiate.bind(this)
this.initiateLegacyMode = this.initiateLegacyMode.bind(this)
this.check = this.check.bind(this)
this.handleVideo = this.handleVideo.bind(this)
this.handleLoadStart = this.handleLoadStart.bind(this)
this.handleInputChange = this.handleInputChange.bind(this)
this.clearComponent = this.clearComponent.bind(this)
this.handleReaderLoad = this.handleReaderLoad.bind(this)
this.openImageDialog = this.openImageDialog.bind(this)
this.handleWorkerMessage = this.handleWorkerMessage.bind(this)
this.setRefFactory = this.setRefFactory.bind(this)
}
componentDidMount() {
// Initiate web worker execute handler according to mode.
this.worker = new Worker(URL.createObjectURL(workerBlob))
this.worker.onmessage = this.handleWorkerMessage
if (!this.props.legacyMode) {
this.initiate()
} else {
this.initiateLegacyMode()
}
}
componentWillReceiveProps(nextProps) {
// React according to change in props
const changedProps = havePropsChanged(this.props, nextProps, propsKeys)
for (const prop of changedProps) {
if (prop == 'facingMode') {
this.clearComponent()
this.initiate(nextProps)
break
} else if (prop == 'delay') {
if (this.props.delay == false && !nextProps.legacyMode) {
this.timeout = setTimeout(this.check, nextProps.delay)
}
if (nextProps.delay == false) {
clearTimeout(this.timeout)
}
} else if (prop == 'legacyMode') {
if (this.props.legacyMode && !nextProps.legacyMode) {
this.clearComponent()
this.initiate(nextProps)
} else {
this.clearComponent()
this.componentDidUpdate = this.initiateLegacyMode
}
break
}
}
}
shouldComponentUpdate(nextProps, nextState) {
if(nextState !== this.state){
return true
}
// Only render when the `propsKeys` have changed.
const changedProps = havePropsChanged(this.props, nextProps, propsKeys)
return changedProps.length > 0
}
componentWillUnmount() {
// Stop web-worker and clear the component
if (this.worker) {
this.worker.terminate()
this.worker = undefined
}
this.clearComponent()
}
clearComponent() {
// Remove all event listeners and variables
if (this.timeout) {
clearTimeout(this.timeout)
this.timeout = undefined
}
if (this.stopCamera) {
this.stopCamera()
}
if (this.reader) {
this.reader.removeEventListener('load', this.handleReaderLoad)
}
if (this.els.img) {
this.els.img.removeEventListener('load', this.check)
}
}
initiate(props = this.props) {
const { onError, facingMode } = props
// Check browser facingMode constraint support
// Firefox ignores facingMode or deviceId constraints
const isFirefox = /firefox/i.test(navigator.userAgent)
let supported = {}
if (navigator.mediaDevices && typeof navigator.mediaDevices.getSupportedConstraints === 'function') {
supported = navigator.mediaDevices.getSupportedConstraints()
}
const constraints = {}
if(supported.facingMode) {
constraints.facingMode = { ideal: facingMode }
}
if(supported.frameRate) {
constraints.frameRate = { ideal: 25, min: 10 }
}
const vConstraintsPromise = (supported.facingMode || isFirefox)
? Promise.resolve(props.constraints || constraints)
: getDeviceId(facingMode).then(deviceId => Object.assign({}, { deviceId }, props.constraints))
vConstraintsPromise
.then(video => navigator.mediaDevices.getUserMedia({ video }))
.then(this.handleVideo)
.catch(onError)
}
handleVideo(stream) {
const { preview } = this.els
const { facingMode } = this.props
// Preview element hasn't been rendered so wait for it.
if (!preview) {
return setTimeout(this.handleVideo, 200, stream)
}
// Handle different browser implementations of MediaStreams as src
if((preview || {}).srcObject !== undefined){
preview.srcObject = stream
} else if (preview.mozSrcObject !== undefined) {
preview.mozSrcObject = stream
} else if (window.URL.createObjectURL) {
preview.src = window.URL.createObjectURL(stream)
} else if (window.webkitURL) {
preview.src = window.webkitURL.createObjectURL(stream)
} else {
preview.src = stream
}
// IOS play in fullscreen
preview.playsInline = true
const streamTrack = stream.getTracks()[0]
// Assign `stopCamera` so the track can be stopped once component is cleared
this.stopCamera = streamTrack.stop.bind(streamTrack)
preview.addEventListener('loadstart', this.handleLoadStart)
this.setState({ mirrorVideo: facingMode == 'user', streamLabel: streamTrack.label })
}
handleLoadStart() {
const { delay, onLoad } = this.props
const { mirrorVideo, streamLabel } = this.state
const preview = this.els.preview
preview.play()
if(typeof onLoad == 'function') {
onLoad({ mirrorVideo, streamLabel })
}
if (typeof delay == 'number') {
this.timeout = setTimeout(this.check, delay)
}
// Some browsers call loadstart continuously
preview.removeEventListener('loadstart', this.handleLoadStart)
}
check() {
const { legacyMode, resolution, delay } = this.props
const { preview, canvas, img } = this.els
// Get image/video dimensions
let width = Math.floor(legacyMode ? img.naturalWidth : preview.videoWidth)
let height = Math.floor(legacyMode ? img.naturalHeight : preview.videoHeight)
// Canvas draw offsets
let hozOffset = 0
let vertOffset = 0
// Scale image to correct resolution
if(legacyMode){
// Keep image aspect ratio
const greatestSize = width > height ? width : height
const ratio = resolution / greatestSize
height = ratio * height
width = ratio * width
canvas.width = width
canvas.height = height
}else{
// Crop image to fit 1:1 aspect ratio
const smallestSize = width < height ? width : height
const ratio = resolution / smallestSize
height = ratio * height
width = ratio * width
vertOffset = (height - resolution) / 2 * -1
hozOffset = (width - resolution) / 2 * -1
canvas.width = resolution
canvas.height = resolution
}
const previewIsPlaying = preview &&
preview.readyState === preview.HAVE_ENOUGH_DATA
if (legacyMode || previewIsPlaying) {
const ctx = canvas.getContext('2d')
ctx.drawImage(legacyMode ? img : preview, hozOffset, vertOffset, width, height)
const imageData = ctx.getImageData(0, 0, canvas.width, canvas.height)
// Send data to web-worker
this.worker.postMessage(imageData)
} else {
// Preview not ready -> check later
this.timeout = setTimeout(this.check, delay)
}
}
handleWorkerMessage(e) {
const { onScan, legacyMode, delay } = this.props
const decoded = e.data
onScan(decoded || null)
if (!legacyMode && typeof delay == 'number' && this.worker) {
this.timeout = setTimeout(this.check, delay)
}
}
initiateLegacyMode() {
this.reader = new FileReader()
this.reader.addEventListener('load', this.handleReaderLoad)
this.els.img.addEventListener('load', this.check, false)
// Reset componentDidUpdate
this.componentDidUpdate = undefined
if(typeof this.props.onLoad == 'function') {
this.props.onLoad()
}
}
handleInputChange(e) {
const selectedImg = e.target.files[0]
this.reader.readAsDataURL(selectedImg)
}
handleReaderLoad(e) {
// Set selected image blob as img source
this.els.img.src = e.target.result
}
openImageDialog() {
// Function to be executed by parent in user action context to trigger img file uploader
this.els.input.click()
}
setRefFactory(key) {
return element => {
this.els[key] = element
}
}
render() {
const {
style,
className,
onImageLoad,
legacyMode,
showViewFinder,
facingMode,
containerStyle,
viewFinderStyle,
videoPreviewStyle,
imgPreviewStyle,
} = this.props
const defaultContainerStyle = {
overflow: 'hidden',
position: 'relative',
width: '100%',
paddingTop: '100%',
}
const hiddenStyle = { display: 'none' }
const previewStyle = {
top: 0,
left: 0,
display: 'block',
position: 'absolute',
overflow: 'hidden',
width: '100%',
height: '100%',
}
const defaultVideoPreviewStyle = {
...previewStyle,
objectFit: 'cover',
transform: this.state.mirrorVideo ? 'scaleX(-1)' : undefined,
}
const defaultImgPreviewStyle = {
...previewStyle,
objectFit: 'scale-down',
}
const defaultViewFinderStyle = {
top: 0,
left: 0,
zIndex: 1,
boxSizing: 'border-box',
border: '50px solid rgba(0, 0, 0, 0.3)',
boxShadow: 'inset 0 0 0 5px rgba(255, 0, 0, 0.5)',
position: 'absolute',
width: '100%',
height: '100%',
}
return (
<section className={className} style={style}>
<section style={containerStyle? containerStyle : defaultContainerStyle}>
{
(!legacyMode && showViewFinder)
? <div style={viewFinderStyle? viewFinderStyle : defaultVideoPreviewStyle} />
: null
}
{
legacyMode
? <input
style={hiddenStyle}
type="file"
accept="image/*"
ref={this.setRefFactory('input')}
onChange={this.handleInputChange}
/>
: null
}
{
legacyMode
? <img style={imgPreviewStyle? imgPreviewStyle : defaultImgPreviewStyle} ref={this.setRefFactory('img')} onLoad={onImageLoad} />
: <video style={videoPreviewStyle? videoPreviewStyle : defaultVideoPreviewStyle} ref={this.setRefFactory('preview')} />
}
<canvas style={hiddenStyle} ref={this.setRefFactory('canvas')} />
</section>
</section>
)
}
}