kopia lustrzana https://github.com/nextcloud/social
Adds filename to miniatures of non-image documents.
Signed-off-by: Cyrille Bollu <cyrpub@bollu.be>pull/657/head
rodzic
8e28e75e96
commit
a39e731977
|
|
@ -645,6 +645,12 @@ export default {
|
||||||
canvas.height = imgHeight
|
canvas.height = imgHeight
|
||||||
ctx.drawImage(this, 0, 0, imgWidth, imgHeight)
|
ctx.drawImage(this, 0, 0, imgWidth, imgHeight)
|
||||||
|
|
||||||
|
// Add filename to generic icon for non image document
|
||||||
|
if ( ! e.target.result.startsWith("data:image") ) {
|
||||||
|
ctx.font = "12px Arial"
|
||||||
|
ctx.fillText(file.name, 30, height - 20)
|
||||||
|
}
|
||||||
|
|
||||||
// Save miniature
|
// Save miniature
|
||||||
self.miniatures.push(canvas.toDataURL())
|
self.miniatures.push(canvas.toDataURL())
|
||||||
|
|
||||||
|
|
@ -657,7 +663,7 @@ export default {
|
||||||
if ( e.target.result.startsWith("data:image") ) {
|
if ( e.target.result.startsWith("data:image") ) {
|
||||||
img.src = e.target.result
|
img.src = e.target.result
|
||||||
} else {
|
} else {
|
||||||
img.src = OC.generateUrl('svg/core/filetypes/x-office-document?color=000000')
|
img.src = OC.generateUrl('svg/core/filetypes/x-office-document?color=d8d8d8')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Ładowanie…
Reference in New Issue