neko/src/components/canvas.vue
Miroslav Šedivý d6c3c4b2aa update states.
2020-11-08 21:19:46 +01:00

285 lines
8.0 KiB
Vue

<template>
<div ref="component" class="component">
<div
ref="container"
class="player-container"
v-show="state.connection.websocket == 'connected' && state.connection.webrtc == 'connected'"
>
<video ref="video" />
<neko-overlay
:webrtc="webrtc"
:screenWidth="state.screen.size.width"
:screenHeight="state.screen.size.height"
:isControling="state.member.is_controlling"
:scrollSensitivity="state.control.scroll.sensitivity"
:scrollInvert="state.control.scroll.inverse"
/>
</div>
</div>
</template>
<style lang="scss" scoped>
.component {
width: 100%;
height: 100%;
}
.player-container {
position: relative;
video {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
display: flex;
background: #000;
&::-webkit-media-controls {
display: none !important;
}
}
}
</style>
<script lang="ts">
import { Vue, Component, Ref, Watch, Prop } from 'vue-property-decorator'
import ResizeObserver from 'resize-observer-polyfill'
import EventEmitter from 'eventemitter3'
import { NekoWebSocket } from '~/internal/websocket'
import { NekoWebRTC } from '~/internal/webrtc'
import { NekoMessages } from '~/internal/messages'
import { register as VideoRegister } from '~/internal/video'
import NekoState from '~/types/state'
import Overlay from './overlay.vue'
export interface NekoEvents {
connecting: () => void
connected: () => void
disconnected: (error?: Error) => void
}
@Component({
name: 'neko-canvas',
components: {
'neko-overlay': Overlay,
},
})
export default class extends Vue {
@Ref('component') readonly _component!: HTMLElement
@Ref('container') readonly _container!: HTMLElement
@Ref('video') public readonly video!: HTMLVideoElement
private websocket = new NekoWebSocket()
private webrtc = new NekoWebRTC()
private observer = new ResizeObserver(this.onResize.bind(this))
public state = {
connection: {
websocket: 'disconnected',
webrtc: 'disconnected',
type: 'none',
can_watch: false,
can_control: false,
clipboard_access: false,
},
video: {
playable: false,
playing: false,
volume: 0,
},
control: {
scroll: {
inverse: true,
sensitivity: 1,
},
host: null,
},
screen: {
size: {
width: 1280,
height: 720,
rate: 30,
},
configurations: [],
is_fullscreen: false,
},
member: {
id: null,
name: null,
is_admin: false,
is_watching: false,
is_controlling: false,
can_watch: false,
can_control: false,
clipboard_access: false,
},
members: [],
} as NekoState
public events = new NekoMessages(this.websocket, this.state)
public get connected() {
return this.state.connection.websocket == 'connected' && this.state.connection.webrtc == 'connected'
}
@Watch('state.screen.size')
onScreenSizeChanged() {
this.onResize()
}
public control = {
request: () => {
this.websocket.send('control/request')
},
release: () => {
this.websocket.send('control/release')
},
}
public screen = {
size: (width: number, height: number, rate: number) => {
this.websocket.send('screen/set', { width, height, rate })
},
}
public scroll = {
sensitivity: (sensitivity: number) => {
Vue.set(this.state.control.scroll, 'sensitivity', sensitivity)
},
inverse: (inverse: boolean) => {
Vue.set(this.state.control.scroll, 'inverse', inverse)
},
}
public connect(url: string, password: string, name: string) {
if (this.websocket.connected) {
throw new Error('client already connected')
}
Vue.set(this.state.member, 'name', name)
this.websocket.connect(url, password)
}
public disconnect() {
if (!this.websocket.connected) {
throw new Error('client not connected')
}
this.websocket.disconnect()
}
private mounted() {
// Update canvas on resize
this.observer.observe(this._component)
this.events.on('control.host', (id: string | null) => {
Vue.set(this.state.member, 'is_controlling', id != null && id === this.state.member.id)
})
// Video
VideoRegister(this.video, this.state.video)
// WebSocket
this.websocket.on('message', async (event: string, payload: any) => {
switch (event) {
case 'signal/provide':
Vue.set(this.state.member, 'id', payload.id)
try {
let sdp = await this.webrtc.connect(payload.sdp, payload.lite, payload.ice)
this.websocket.send('signal/answer', { sdp, displayname: this.state.member.name })
} catch (e) {}
break
}
})
this.websocket.on('connecting', () => {
Vue.set(this.state.connection, 'websocket', 'connecting')
this.events.emit('system.websocket', 'connecting')
})
this.websocket.on('connected', () => {
Vue.set(this.state.connection, 'websocket', 'connected')
this.events.emit('system.websocket', 'connected')
})
this.websocket.on('disconnected', () => {
Vue.set(this.state.connection, 'websocket', 'disconnected')
this.events.emit('system.websocket', 'disconnected')
this.webrtc.disconnect()
})
// WebRTC
this.webrtc.on('track', (event: RTCTrackEvent) => {
const { track, streams } = event
if (track.kind === 'audio') return
// Create stream
if ('srcObject' in this.video) {
this.video.srcObject = streams[0]
} else {
// @ts-ignore
this.video.src = window.URL.createObjectURL(streams[0]) // for older browsers
}
this.video.play()
})
this.webrtc.on('connecting', () => {
Vue.set(this.state.connection, 'webrtc', 'connecting')
this.events.emit('system.webrtc', 'connecting')
})
this.webrtc.on('connected', () => {
Vue.set(this.state.connection, 'webrtc', 'connected')
this.events.emit('system.webrtc', 'connected')
})
this.webrtc.on('disconnected', () => {
Vue.set(this.state.connection, 'webrtc', 'disconnected')
this.events.emit('system.webrtc', 'disconnected')
// @ts-ignore
this.video.src = null
})
}
private beforeDestroy() {
this.observer.disconnect()
this.webrtc.disconnect()
this.websocket.disconnect()
}
private onResize() {
console.log('Resize event triggered.')
const { width, height } = this.state.screen.size
const screen_ratio = width / height
const { offsetWidth, offsetHeight } = this._component
const canvas_ratio = offsetWidth / offsetHeight
// Vertical centering
if (screen_ratio > canvas_ratio) {
const vertical = offsetWidth / screen_ratio
this._container.style.width = `${offsetWidth}px`
this._container.style.height = `${vertical}px`
this._container.style.marginTop = `${(offsetHeight - vertical) / 2}px`
this._container.style.marginLeft = `0px`
}
// Horizontal centering
else if (screen_ratio < canvas_ratio) {
const horizontal = screen_ratio * offsetHeight
this._container.style.width = `${horizontal}px`
this._container.style.height = `${offsetHeight}px`
this._container.style.marginTop = `0px`
this._container.style.marginLeft = `${(offsetWidth - horizontal) / 2}px`
}
// No centering
else {
this._container.style.width = `${offsetWidth}px`
this._container.style.height = `${offsetHeight}px`
this._container.style.marginTop = `0px`
this._container.style.marginLeft = `0px`
}
}
}
</script>