-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathmedia-capture.ts
More file actions
217 lines (193 loc) · 6.5 KB
/
media-capture.ts
File metadata and controls
217 lines (193 loc) · 6.5 KB
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
//
// Media input widget
//
//
// Workflow:
// The HTML5 functionality (on mobile) is to prompt for either
// a realtime camera capture, OR a selection from images already on the device
// (eg camera roll).
//
// The solid alternative is to either take a photo
// or access camera roll (etc) OR to access solid cloud storage of favorite photo albums.
// (Especially latest taken ones)
//
import * as debug from '../debug'
/** @module mediaCapture */
import { icons } from '../iconBase'
import { style } from '../style'
import * as widgets from '../widgets'
import { IndexedFormula, NamedNode } from 'rdflib'
const cameraIcon = icons.iconBase + 'noun_Camera_1618446_000000.svg' // Get it from github
const retakeIcon = icons.iconBase + 'noun_479395.svg' // Get it from github
const contentType = 'image/png'
/** A control to capture a picture using camera
* @param {Docuemnt} dom - The Document object
* @param {IndexedForumla} store - The quadstore to store data in
* @param {NamedNode} getImageDoc() - NN of the image file to be created
* @param {function} doneCallback - Called when a picture has been taken
*/
export function cameraCaptureControl (
dom: HTMLDocument,
store: IndexedFormula,
getImageDoc: () => NamedNode,
doneCallback: (imageDoc) => Promise<void>
) {
const div = dom.createElement('div')
let destination, imageBlob, player, canvas
const setButtonVisible = (button: HTMLElement, visible: boolean) => {
button.style.display = visible ? 'inline-flex' : 'none'
}
const table = div.appendChild(dom.createElement('table'))
const mainTR = table.appendChild(dom.createElement('tr'))
const main = mainTR.appendChild(dom.createElement('td'))
main.setAttribute('colspan', '4')
const buttons = table.appendChild(dom.createElement('tr'))
buttons
.appendChild(dom.createElement('td')) // Cancel button
.appendChild(widgets.cancelButton(dom))
.addEventListener('click', _event => {
stopVideo()
doneCallback(null)
})
const retakeButton = buttons
.appendChild(dom.createElement('td')) // Retake button
.appendChild(widgets.button(dom, retakeIcon, 'Retake'))
retakeButton.addEventListener('click', _event => {
retake()
})
retakeButton.textContent = 'Retake'
setButtonVisible(retakeButton, false)
const shutterButton = buttons
.appendChild(dom.createElement('td')) // Trigger capture button
.appendChild(
widgets.button(dom, icons.iconBase + 'noun_10636.svg', 'Snap')
)
shutterButton.addEventListener('click', grabCanvas)
shutterButton.textContent = 'Take Photo'
setButtonVisible(shutterButton, false)
const sendButton = buttons
.appendChild(dom.createElement('td')) // Confirm and save button
.appendChild(widgets.continueButton(dom)) // @@ or send icon??
sendButton.addEventListener('click', _event => {
saveBlob(imageBlob, destination)
})
sendButton.textContent = 'Use Photo'
setButtonVisible(sendButton, false)
function displayPlayer () {
player = main.appendChild(dom.createElement('video'))
player.setAttribute('controls', '1')
player.setAttribute('autoplay', '1')
player.setAttribute('style', style.controlStyle)
if (!navigator.mediaDevices) {
throw new Error('navigator.mediaDevices not available')
}
navigator.mediaDevices.getUserMedia(constraints).then(stream => {
player.srcObject = stream
setButtonVisible(shutterButton, true)
setButtonVisible(sendButton, false)
setButtonVisible(retakeButton, false)
}).catch(err => {
console.error('Unable to start camera preview', err)
doneCallback(null)
})
}
const constraints = {
video: true
}
function retake () {
main.removeChild(canvas)
displayPlayer() // Make new one as old one is stuck black
}
function grabCanvas () {
// Draw the video frame to the canvas.
canvas = dom.createElement('canvas')
canvas.setAttribute('width', style.canvasWidth)
canvas.setAttribute('height', style.canvasHeight)
canvas.setAttribute('style', style.controlStyle)
main.appendChild(canvas)
const context = canvas.getContext('2d')
context.drawImage(player, 0, 0, canvas.width, canvas.height)
player.parentNode.removeChild(player)
canvas.toBlob(blob => {
const msg = `got blob type ${blob.type} size ${blob.size}`
debug.log(msg)
destination = getImageDoc()
imageBlob = blob // save for review
reviewImage()
// alert(msg)
}, contentType) // toBlob
}
function reviewImage () {
setButtonVisible(sendButton, true)
setButtonVisible(retakeButton, true)
setButtonVisible(shutterButton, false)
}
function stopVideo () {
if (player && player.srcObject) {
player.srcObject.getVideoTracks().forEach(track => track.stop())
}
}
function saveBlob (blob, destination) {
const contentType = blob.type
// if (!confirm('Save picture to ' + destination + ' ?')) return
debug.log(
'Putting ' + blob.size + ' bytes of ' + contentType + ' to ' + destination
)
// @@ TODO Remove casting
;(store as any).fetcher
.webOperation('PUT', destination.uri, {
data: blob,
contentType
})
.then(
_resp => {
debug.log('ok saved ' + destination)
stopVideo()
doneCallback(destination)
},
err => {
stopVideo()
alert(err)
}
)
}
// Attach the video stream to the video element and autoplay.
displayPlayer()
return div
}
/** A button to capture a picture using camera
* @param {Docuemnt} dom - The Document object
* @param {IndexedForumla} store - The quadstore to store data in
* @param {fuunction} getImageDoc - returns NN of the image file to be created
* @param {function<Node>} doneCallback - called with the image taken
* @returns {DomElement} - A div element with the button in it
*
* This expands the button to a large control when it is pressed
*/
export function cameraButton (
dom: HTMLDocument,
store: IndexedFormula,
getImageDoc: () => NamedNode,
doneCallback: (imageDoc) => Promise<void>
): HTMLElement {
const div = dom.createElement('div')
const but = widgets.button(dom, cameraIcon, 'Take picture')
let control
async function restoreButton (imageDoc) {
div.removeChild(control)
div.appendChild(but)
doneCallback(imageDoc)
}
div.appendChild(but)
but.addEventListener('click', _event => {
div.removeChild(but)
control = cameraCaptureControl(
dom,
store,
getImageDoc,
restoreButton
)
div.appendChild(control)
})
return div
}