12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <div>
- <navbar />
- <router-view />
- </div>
- </template>
- <script>
- export default {
- data: function () {
- return {};
- },
- beforeCreate: function () {
- this.$store.state.peer.on("open", (id) => {
- this.$store.state.id = id;
- });
- this.$store.state.peer.on("call", (call) => {
- if (
- this.$store.state.receiveCalls.findIndex((c) => c.peer == call.peer) !=
- -1
- )
- return false;
- call.on("close", () => {
- console.log("call closed");
- });
- call.on("stream", (remoteStream) => {
- console.log("call started");
- this.$store.state.remoteStreams.push(remoteStream);
- });
- this.$store.state.receiveCalls.push(call);
- });
- this.$store.state.peer.on("connection", (connection) => {
- connection.on("open", () => {
- console.log("connection openned");
- });
- connection.on("data", () => {
- console.log("connection sended data");
- });
- connection.on("close", () => {
- console.log("connection closed");
- });
- this.$store.state.receiveConnections.push(connection);
- });
- },
- mounted: async function () {
- let getUserMedia =
- navigator.mediaDevices.getUserMedia ||
- navigator.mediaDevices.webkitGetUserMedia ||
- navigator.mediaDevices.mozGetUserMedia;
- this.$store.state.myLocalVideoStream = await getUserMedia({
- video: true,
- audio: false,
- });
- },
- };
- </script>
- <style>
- </style>
|