biome format --write

This commit is contained in:
Henry Jameson 2026-01-06 16:22:52 +02:00
commit 9262e803ec
415 changed files with 54076 additions and 17419 deletions

View file

@ -9,38 +9,41 @@ const StillImage = {
'height',
'width',
'dataSrc',
'loading'
'loading',
],
data () {
data() {
return {
// for lazy loading, see loadLazy()
realSrc: this.src,
stopGifs: this.$store.getters.mergedConfig.stopGifs
stopGifs: this.$store.getters.mergedConfig.stopGifs,
}
},
computed: {
animated () {
animated() {
if (!this.realSrc) {
return false
}
return this.stopGifs && (this.mimetype === 'image/gif' || this.realSrc.endsWith('.gif'))
return (
this.stopGifs &&
(this.mimetype === 'image/gif' || this.realSrc.endsWith('.gif'))
)
},
style () {
const appendPx = (str) => /\d$/.test(str) ? str + 'px' : str
style() {
const appendPx = (str) => (/\d$/.test(str) ? str + 'px' : str)
return {
height: this.height ? appendPx(this.height) : null,
width: this.width ? appendPx(this.width) : null
width: this.width ? appendPx(this.width) : null,
}
}
},
},
methods: {
loadLazy () {
loadLazy() {
if (this.dataSrc) {
this.realSrc = this.dataSrc
}
},
onLoad () {
onLoad() {
if (!this.realSrc) {
return
}
@ -55,18 +58,18 @@ const StillImage = {
canvas.height = height
canvas.getContext('2d').drawImage(image, 0, 0, width, height)
},
onError () {
onError() {
this.imageLoadError && this.imageLoadError()
}
},
},
watch: {
src () {
src() {
this.realSrc = this.src
},
dataSrc () {
dataSrc() {
this.$el.removeAttribute('data-loaded')
}
}
},
},
}
export default StillImage