Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-12-27 16:33:05 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2020-01-09 23:45:22 +0300
commit3eb801d16c011853af300a5805fe53565771dde9 (patch)
tree100bc62f0102dbd5fa2634496489dc0af3629839 /src/FilesSidebarCallViewApp.vue
parent397bbd550069ae561675f237324e85863b42bbdd (diff)
Add dummy call view to the Files sidebar
Currently the dummy call view is simply shown when the user is in the call and hidden otherwise. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'src/FilesSidebarCallViewApp.vue')
-rw-r--r--src/FilesSidebarCallViewApp.vue56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/FilesSidebarCallViewApp.vue b/src/FilesSidebarCallViewApp.vue
new file mode 100644
index 000000000..f172245b9
--- /dev/null
+++ b/src/FilesSidebarCallViewApp.vue
@@ -0,0 +1,56 @@
+<!--
+ - @copyright Copyright (c) 2019, Daniel Calviño Sánchez <danxuliu@gmail.com>
+ -
+ - @license GNU AGPL version 3 or any later version
+ -
+ - This program is free software: you can redistribute it and/or modify
+ - it under the terms of the GNU Affero General Public License as
+ - published by the Free Software Foundation, either version 3 of the
+ - License, or (at your option) any later version.
+ -
+ - This program is distributed in the hope that it will be useful,
+ - but WITHOUT ANY WARRANTY; without even the implied warranty of
+ - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ - GNU Affero General Public License for more details.
+ -
+ - You should have received a copy of the GNU Affero General Public License
+ - along with this program. If not, see <http://www.gnu.org/licenses/>.
+ -
+ -->
+
+<template>
+ <p v-show="isInCall">
+ Call in progress
+ </p>
+</template>
+
+<script>
+import { PARTICIPANT } from './constants'
+
+export default {
+
+ name: 'FilesSidebarCallViewApp',
+
+ computed: {
+ token() {
+ return this.$store.getters.getToken()
+ },
+
+ isInCall() {
+ const participantIndex = this.$store.getters.getParticipantIndex(this.token, this.$store.getters.getParticipantIdentifier())
+ if (participantIndex === -1) {
+ return false
+ }
+
+ const participant = this.$store.getters.getParticipant(this.token, participantIndex)
+
+ return participant.inCall !== PARTICIPANT.CALL_FLAG.DISCONNECTED
+ },
+ },
+
+ methods: {
+ setFileInfo(fileInfo) {
+ },
+ },
+}
+</script>