mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
31 lines
579 B
TypeScript
31 lines
579 B
TypeScript
import { ref } from 'vue'
|
|
import { preferenceStore } from '@/stores'
|
|
|
|
export class VolumeManager {
|
|
private input!: HTMLInputElement
|
|
public volume = ref(0)
|
|
|
|
public init (input: HTMLInputElement) {
|
|
this.input = input
|
|
this.set(preferenceStore.volume)
|
|
}
|
|
|
|
public get () {
|
|
return this.volume.value
|
|
}
|
|
|
|
public set (volume: number) {
|
|
this.volume.value = volume
|
|
this.input.value = String(volume)
|
|
}
|
|
|
|
public mute () {
|
|
this.set(0)
|
|
}
|
|
|
|
public unmute () {
|
|
this.set(preferenceStore.volume)
|
|
}
|
|
}
|
|
|
|
export const volumeManager = new VolumeManager()
|