seepur/resources/scripts/applications/home/views/call.vue

105 lines
2.5 KiB
Vue
Raw Normal View History

2020-04-12 14:25:42 +00:00
<template>
<div class="is-fullwidth">
2020-04-12 14:25:42 +00:00
<div v-if="loading">
<Loading />
</div>
2020-04-14 00:56:04 +00:00
<div v-else class>
<VideoStrip :localStream="localStream" :remoteStream="remoteStream" />
<router-view></router-view>
2020-04-12 14:25:42 +00:00
</div>
</div>
</template>
<script lang="ts">
import Loading from "../../shared/components/Loading/Loading.vue";
import { ECallEvents } from "../classes/call.manager";
import VideoStrip from "./call_views/VideoStrip.vue";
2020-04-12 14:25:42 +00:00
import Services from "../../services/index";
import { mapActions, mapGetters } from "vuex";
export default {
components: {
2020-04-14 00:56:04 +00:00
Loading,
VideoStrip
2020-04-12 14:25:42 +00:00
},
name: "Call",
// mounted() {
// const self = this;
// setTimeout(() => {
// self.isMounted = true;
// }, 1000);
// },
2020-04-12 14:25:42 +00:00
async created() {
this.loading = true;
try {
2020-04-12 23:33:24 +00:00
const callId = Number(this.$route.params.id);
await this.connectToCall(callId);
2020-04-12 23:33:24 +00:00
this.callManager.on(ECallEvents.CLOSE, this.callEnded);
2020-04-12 23:33:24 +00:00
const success = await this.callManager.connectToCall({
2020-04-12 23:45:05 +00:00
video: true,
2020-04-12 23:33:24 +00:00
audio: true
});
2020-04-14 15:06:09 +00:00
this.callManager.on(
ECallEvents.CALL_HOST_CHANGED,
this.onRemoteHostChanged
);
2020-04-12 14:25:42 +00:00
if (!success) {
this.notify({ message: "Can find this call...", level: "danger" });
this.$router.push({ path: `/` });
return false;
}
2020-04-12 23:53:24 +00:00
this.localStream = await this.callManager.getUserMedia();
2020-04-12 23:33:24 +00:00
this.remoteStream = this.callManager.getRemoteStream();
2020-04-12 14:25:42 +00:00
this.notify({ message: "Connected!", level: "success" });
} catch (e) {
console.error(e);
this.notify({ message: e.message, level: "danger" });
}
this.loading = false;
},
async beforeDestroy() {
console.log("destroyed");
2020-04-12 23:33:24 +00:00
this.callManager.close();
this.$store.dispatch("callEnded");
2020-04-12 14:25:42 +00:00
return true;
},
methods: {
2020-04-12 23:33:24 +00:00
async setupCall(): Promise<boolean> {
return true;
},
callEnded(callId) {
this.notify({ message: `Call #${callId} Ended` });
this.$router.replace({ path: `/` });
2020-04-12 23:33:24 +00:00
},
2020-04-14 15:06:09 +00:00
onRemoteHostChanged(payload) {
console.log("-----------");
console.log(payload);
this.peer = this.callManager.peer;
2020-04-14 15:06:09 +00:00
},
changeHost() {
this.callManager.changeHost();
},
...mapActions(["notify", "connectToCall"])
2020-04-12 14:25:42 +00:00
},
computed: {
...mapGetters(["user", "callManager", "inCall"])
2020-04-12 14:25:42 +00:00
},
data() {
return {
loading: true,
2020-04-13 00:37:58 +00:00
localStream: null,
remoteStream: null
2020-04-14 15:06:09 +00:00
// currentPage: 0,
// totalPages: 34,
// isMounted: false
2020-04-12 14:25:42 +00:00
};
},
beforeCreate: () => {}
};
</script>
2020-04-14 00:56:04 +00:00