-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupload.js
More file actions
68 lines (58 loc) · 1.95 KB
/
upload.js
File metadata and controls
68 lines (58 loc) · 1.95 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
import { apds } from 'apds'
import { h } from 'h'
export const imgUpload = async (textarea) => {
const uploadButton = h('button', {
classList: 'material-symbols-outlined',
onclick: () => { uploader.click() }
}, ['image_arrow_up'])
const uploader = h('input', { type: 'file', style: 'display: none;'})
uploader.addEventListener('change', (e) => {
const file = e.target.files[0]
const reader = new FileReader()
reader.onload = (e) => {
const canvas = document.createElement("canvas")
const ctx = canvas.getContext("2d")
const img = new Image()
img.onload = async () => {
//const size = 256
//if (img.width > size || img.height > size) {
// const width = img.width
// const height = img.height
// let cropWidth
// let cropHeight
// if (width > height) {
// cropWidth = size
// cropHeight = cropWidth * (height / width)
// } else {
// cropHeight = size
// cropWidth = cropHeight * (width / height)
// }
// canvas.width = cropWidth
// canvas.height = cropHeight
// ctx.drawImage(img, 0, 0, width, height, 0, 0, cropWidth, cropHeight)
// const croppedImage = canvas.toDataURL()
// avatarImg.src = croppedImage
// const hash = await apds.make(croppedImage)
// await apds.put('image', hash)
//} else {
const croppedImage = canvas.toDataURL()
const hash = await apds.make(img.src)
const mdimg = ``
console.log(await apds.get(hash))
if (textarea.value) {
textarea.value = textarea.value + '\n' + mdimg
} else {
textarea.value = mdimg
}
// await apds.put('image', hash)
//}
}
img.src = e.target.result
}
reader.readAsDataURL(file)
})
return h('div', [
uploadButton,
uploader
])
}