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

@ -1,22 +1,22 @@
const VideoAttachment = {
props: ['attachment', 'controls'],
data () {
data() {
return {
blocksSuspend: false,
// Start from true because removing "loop" property seems buggy in Vue
hasAudio: true
hasAudio: true,
}
},
computed: {
loopVideo () {
loopVideo() {
if (this.$store.getters.mergedConfig.loopVideoSilentOnly) {
return !this.hasAudio
}
return this.$store.getters.mergedConfig.loopVideo
}
},
},
methods: {
onPlaying (e) {
onPlaying(e) {
this.setHasAudio(e)
if (this.loopVideo) {
this.$emit('play', { looping: true })
@ -24,10 +24,10 @@ const VideoAttachment = {
}
this.$emit('play')
},
onPaused () {
onPaused() {
this.$emit('pause')
},
setHasAudio (e) {
setHasAudio(e) {
const target = e.srcElement || e.target
// If hasAudio is false, we've already marked this video to not have audio,
// a video can't gain audio out of nowhere so don't bother checking again.
@ -44,8 +44,8 @@ const VideoAttachment = {
if (target.audioTracks.length > 0) return
}
this.hasAudio = false
}
}
},
},
}
export default VideoAttachment