mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
sync player state with store.
This commit is contained in:
parent
368e4d7f7c
commit
9264483901
@ -332,8 +332,10 @@
|
|||||||
|
|
||||||
@Watch('volume')
|
@Watch('volume')
|
||||||
onVolumeChanged(volume: number) {
|
onVolumeChanged(volume: number) {
|
||||||
if (this._video) {
|
volume /= 100
|
||||||
this._video.volume = this.volume / 100
|
|
||||||
|
if (this._video && this._video.volume != volume) {
|
||||||
|
this._video.volume = volume
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -342,12 +344,12 @@
|
|||||||
if (this._video && this._video.muted != muted) {
|
if (this._video && this._video.muted != muted) {
|
||||||
this._video.muted = muted
|
this._video.muted = muted
|
||||||
this.startsMuted = muted
|
this.startsMuted = muted
|
||||||
}
|
|
||||||
|
|
||||||
if (!muted) {
|
if (!muted) {
|
||||||
this.mutedOverlay = false
|
this.mutedOverlay = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Watch('stream')
|
@Watch('stream')
|
||||||
onStreamChanged(stream?: MediaStream) {
|
onStreamChanged(stream?: MediaStream) {
|
||||||
@ -365,9 +367,11 @@
|
|||||||
|
|
||||||
@Watch('playing')
|
@Watch('playing')
|
||||||
onPlayingChanged(playing: boolean) {
|
onPlayingChanged(playing: boolean) {
|
||||||
if (playing) {
|
if (this._video && this._video.paused && playing) {
|
||||||
this.play()
|
this.play()
|
||||||
} else {
|
}
|
||||||
|
|
||||||
|
if (this._video && !this._video.paused && !playing) {
|
||||||
this.pause()
|
this.pause()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -382,6 +386,7 @@
|
|||||||
mounted() {
|
mounted() {
|
||||||
this._container.addEventListener('resize', this.onResise)
|
this._container.addEventListener('resize', this.onResise)
|
||||||
this.onVolumeChanged(this.volume)
|
this.onVolumeChanged(this.volume)
|
||||||
|
this.onMutedChanged(this.muted)
|
||||||
this.onStreamChanged(this.stream)
|
this.onStreamChanged(this.stream)
|
||||||
this.onResise()
|
this.onResise()
|
||||||
|
|
||||||
@ -415,6 +420,19 @@
|
|||||||
this.$accessor.video.setPlayable(false)
|
this.$accessor.video.setPlayable(false)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
this._video.addEventListener('volumechange', (event) => {
|
||||||
|
this.$accessor.video.setMuted(this._video.muted)
|
||||||
|
this.$accessor.video.setVolume(this._video.volume * 100)
|
||||||
|
})
|
||||||
|
|
||||||
|
this._video.addEventListener('playing', () => {
|
||||||
|
this.$accessor.video.play()
|
||||||
|
})
|
||||||
|
|
||||||
|
this._video.addEventListener('pause', () => {
|
||||||
|
this.$accessor.video.pause()
|
||||||
|
})
|
||||||
|
|
||||||
document.addEventListener('focusin', this.onFocus.bind(this))
|
document.addEventListener('focusin', this.onFocus.bind(this))
|
||||||
|
|
||||||
/* Initialize Guacamole Keyboard */
|
/* Initialize Guacamole Keyboard */
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
- Add japanese characters support.
|
- Add japanese characters support.
|
||||||
- Sanitize display name and markdown codeblock input to prevent xss.
|
- Sanitize display name and markdown codeblock input to prevent xss.
|
||||||
- Display unmute overlay when joined.
|
- Display unmute overlay when joined.
|
||||||
|
- Sync player play/pause/mute/umpute/volume state with store (beneficial for mobiles when using fullscreen mode).
|
||||||
|
|
||||||
## [n.eko v2.4](https://github.com/m1k1o/neko/releases/tag/v2.4)
|
## [n.eko v2.4](https://github.com/m1k1o/neko/releases/tag/v2.4)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user