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:
-rw-r--r--package-lock.json19
-rw-r--r--package.json1
-rw-r--r--src/components/CallView/LocalMediaControls.vue4
-rw-r--r--src/main.js2
-rw-r--r--src/mainFilesSidebar.js2
-rw-r--r--src/mainPublicShareAuthSidebar.js2
-rw-r--r--src/mainPublicShareSidebar.js2
7 files changed, 32 insertions, 0 deletions
diff --git a/package-lock.json b/package-lock.json
index cc860700b..1cf842462 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -4889,6 +4889,11 @@
"array-find-index": "^1.0.1"
}
},
+ "custom-event-polyfill": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/custom-event-polyfill/-/custom-event-polyfill-1.0.7.tgz",
+ "integrity": "sha512-TDDkd5DkaZxZFM8p+1I3yAlvM3rSr1wbrOliG4yJiwinMZN8z/iGL7BTlDkrJcYTmgUSb4ywVCc3ZaUtOtC76w=="
+ },
"cyclist": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz",
@@ -5190,6 +5195,11 @@
"integrity": "sha512-EcKVmUeHCZelPA0wnIaSmpAN8karKhKBwFb+xLUjSVZ8sGRE1l3fst1zQZ7KJUkyJ7H5edPd4RP94pzC9sG00A==",
"dev": true
},
+ "element-matches": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/element-matches/-/element-matches-0.1.2.tgz",
+ "integrity": "sha512-yWh1otcs3OKUWDvu/IxyI36ZI3WNaRZlI0uG/DK6fu0pap0VYZ0J5pEGTk1zakme+hT0OKHwhlHc0N5TJhY6yQ=="
+ },
"elliptic": {
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz",
@@ -12770,6 +12780,15 @@
"resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.1.5.tgz",
"integrity": "sha512-BszkPvhl7I9h334GjckCh7sVFyjTPMMJFJ4Bsrem/Ik+B/9gt5tgrk8k4gGLO4ZpdvciVdg7O41gW4DisQWurg=="
},
+ "vue-shortkey": {
+ "version": "3.1.7",
+ "resolved": "https://registry.npmjs.org/vue-shortkey/-/vue-shortkey-3.1.7.tgz",
+ "integrity": "sha512-Wm/vPXXS+4Wl/LoYpD+cZc0J0HIoVlY8Ep0JLIqqswmAya3XUBtsqKbhzEf9sXo+3rZ5p1YsUyZfXas8XD7YjQ==",
+ "requires": {
+ "custom-event-polyfill": "^1.0.7",
+ "element-matches": "^0.1.2"
+ }
+ },
"vue-style-loader": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.2.tgz",
diff --git a/package.json b/package.json
index d7c7d1722..7985ea385 100644
--- a/package.json
+++ b/package.json
@@ -39,6 +39,7 @@
"vue-observe-visibility": "^0.4.6",
"vue-prevent-unload": "^0.2.3",
"vue-router": "^3.1.5",
+ "vue-shortkey": "^3.1.7",
"vuex": "^3.1.2",
"webrtc-adapter": "^7.4.0",
"webrtcsupport": "^2.2.0",
diff --git a/src/components/CallView/LocalMediaControls.vue b/src/components/CallView/LocalMediaControls.vue
index 3876507fe..1073e24ed 100644
--- a/src/components/CallView/LocalMediaControls.vue
+++ b/src/components/CallView/LocalMediaControls.vue
@@ -23,9 +23,11 @@
<div id="muteWrapper">
<button
id="mute"
+ v-shortkey="['m']"
v-tooltip="audioButtonTooltip"
:class="audioButtonClass"
class="forced-white"
+ @shortkey="toggleAudio"
@click="toggleAudio" />
<span v-show="model.attributes.audioAvailable"
ref="volumeIndicator"
@@ -34,9 +36,11 @@
</div>
<button
id="hideVideo"
+ v-shortkey="['v']"
v-tooltip="videoButtonTooltip"
:class="videoButtonClass"
class="forced-white"
+ @shortkey="toggleVideo"
@click="toggleVideo" />
<button
v-if="!screenSharingButtonHidden"
diff --git a/src/main.js b/src/main.js
index 3386f34b8..7103b0b52 100644
--- a/src/main.js
+++ b/src/main.js
@@ -41,6 +41,7 @@ import { getRequestToken } from '@nextcloud/auth'
import VueClipboard from 'vue-clipboard2'
import { translate, translatePlural } from '@nextcloud/l10n'
import VueObserveVisibility from 'vue-observe-visibility'
+import VueShortKey from 'vue-shortkey'
// CSP config for webpack dynamic chunk loading
// eslint-disable-next-line
@@ -62,6 +63,7 @@ Vue.use(Vuex)
Vue.use(VueRouter)
Vue.use(VueClipboard)
Vue.use(VueObserveVisibility)
+Vue.use(VueShortKey, { prevent: ['input', 'textarea', 'div'] })
export default new Vue({
el: '#content',
diff --git a/src/mainFilesSidebar.js b/src/mainFilesSidebar.js
index 005188bd4..68e09e4a5 100644
--- a/src/mainFilesSidebar.js
+++ b/src/mainFilesSidebar.js
@@ -36,6 +36,7 @@ import { getRequestToken } from '@nextcloud/auth'
// Directives
import { translate, translatePlural } from '@nextcloud/l10n'
+import VueShortKey from 'vue-shortkey'
// CSP config for webpack dynamic chunk loading
// eslint-disable-next-line
@@ -54,6 +55,7 @@ Vue.prototype.OC = OC
Vue.prototype.OCA = OCA
Vue.use(Vuex)
+Vue.use(VueShortKey, { prevent: ['input', 'textarea', 'div'] })
const newCallView = () => new Vue({
store,
diff --git a/src/mainPublicShareAuthSidebar.js b/src/mainPublicShareAuthSidebar.js
index 1367b6432..78c10d1bd 100644
--- a/src/mainPublicShareAuthSidebar.js
+++ b/src/mainPublicShareAuthSidebar.js
@@ -32,6 +32,7 @@ import { getRequestToken } from '@nextcloud/auth'
// Directives
import { translate, translatePlural } from '@nextcloud/l10n'
+import VueShortKey from 'vue-shortkey'
// CSP config for webpack dynamic chunk loading
// eslint-disable-next-line
@@ -50,6 +51,7 @@ Vue.prototype.OC = OC
Vue.prototype.OCA = OCA
Vue.use(Vuex)
+Vue.use(VueShortKey, { prevent: ['input', 'textarea', 'div'] })
/**
* Wraps all the body contents in its own container.
diff --git a/src/mainPublicShareSidebar.js b/src/mainPublicShareSidebar.js
index 53de6e139..05e6ab5e6 100644
--- a/src/mainPublicShareSidebar.js
+++ b/src/mainPublicShareSidebar.js
@@ -31,6 +31,7 @@ import { getRequestToken } from '@nextcloud/auth'
// Directives
import { translate, translatePlural } from '@nextcloud/l10n'
+import VueShortKey from 'vue-shortkey'
// CSP config for webpack dynamic chunk loading
// eslint-disable-next-line
@@ -49,6 +50,7 @@ Vue.prototype.OC = OC
Vue.prototype.OCA = OCA
Vue.use(Vuex)
+Vue.use(VueShortKey, { prevent: ['input', 'textarea', 'div'] })
function adjustLayout() {
document.querySelector('#app-content').append(document.querySelector('footer'))