Merge pull request #19212 from nextcloud/backport/19125/bugfix/noid/tab-id
[stable18] Give the sharing tab a unique id so it also opens properly on other languages
This commit is contained in:
commit
297debef34
32 changed files with 27 additions and 23 deletions
BIN
apps/files/js/dist/personal-settings.js
vendored
BIN
apps/files/js/dist/personal-settings.js
vendored
Binary file not shown.
BIN
apps/files/js/dist/personal-settings.js.map
vendored
BIN
apps/files/js/dist/personal-settings.js.map
vendored
Binary file not shown.
BIN
apps/files/js/dist/sidebar.js
vendored
BIN
apps/files/js/dist/sidebar.js
vendored
Binary file not shown.
BIN
apps/files/js/dist/sidebar.js.map
vendored
BIN
apps/files/js/dist/sidebar.js.map
vendored
Binary file not shown.
|
@ -3658,10 +3658,9 @@
|
||||||
*/
|
*/
|
||||||
registerTabView: function(tabView) {
|
registerTabView: function(tabView) {
|
||||||
console.warn('registerTabView is deprecated! It will be removed in nextcloud 20.');
|
console.warn('registerTabView is deprecated! It will be removed in nextcloud 20.');
|
||||||
const name = tabView.getLabel()
|
|
||||||
const enabled = tabView.canDisplay || undefined
|
const enabled = tabView.canDisplay || undefined
|
||||||
if (name) {
|
if (tabView.id) {
|
||||||
OCA.Files.Sidebar.registerTab(new OCA.Files.Sidebar.Tab(name, tabView, enabled, true))
|
OCA.Files.Sidebar.registerTab(new OCA.Files.Sidebar.Tab(tabView.id, tabView, enabled, true))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,9 @@
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<AppSidebarTab :icon="icon"
|
<AppSidebarTab
|
||||||
|
:id="id"
|
||||||
|
:icon="icon"
|
||||||
:name="name"
|
:name="name"
|
||||||
:active-tab="activeTab" />
|
:active-tab="activeTab" />
|
||||||
</template>
|
</template>
|
||||||
|
@ -38,7 +40,7 @@ export default {
|
||||||
type: Object,
|
type: Object,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
name: {
|
id: {
|
||||||
type: String,
|
type: String,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
|
@ -52,9 +54,8 @@ export default {
|
||||||
icon() {
|
icon() {
|
||||||
return this.component.getIcon()
|
return this.component.getIcon()
|
||||||
},
|
},
|
||||||
id() {
|
name() {
|
||||||
// copied from AppSidebarTab
|
return this.component.getLabel()
|
||||||
return this.name.toLowerCase().replace(/ /g, '-')
|
|
||||||
},
|
},
|
||||||
order() {
|
order() {
|
||||||
return this.component.order
|
return this.component.order
|
||||||
|
|
|
@ -24,23 +24,23 @@ export default class Tab {
|
||||||
|
|
||||||
#component
|
#component
|
||||||
#legacy
|
#legacy
|
||||||
#name
|
#id
|
||||||
#enabled
|
#enabled
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new tab instance
|
* Create a new tab instance
|
||||||
*
|
*
|
||||||
* @param {string} name the name of this tab
|
* @param {string} id the unique id of this tab
|
||||||
* @param {Object} component the vue component
|
* @param {Object} component the vue component
|
||||||
* @param {Function} [enabled] function that returns if the tab should be shown or not
|
* @param {Function} [enabled] function that returns if the tab should be shown or not
|
||||||
* @param {boolean} [legacy] is this a legacy tab
|
* @param {boolean} [legacy] is this a legacy tab
|
||||||
*/
|
*/
|
||||||
constructor(name, component, enabled = () => true, legacy) {
|
constructor(id, component, enabled = () => true, legacy) {
|
||||||
if (typeof enabled !== 'function') {
|
if (typeof enabled !== 'function') {
|
||||||
throw new Error('The enabled argument should be a function')
|
throw new Error('The enabled argument should be a function')
|
||||||
}
|
}
|
||||||
|
|
||||||
this.#name = name
|
this.#id = id
|
||||||
this.#component = component
|
this.#component = component
|
||||||
this.#enabled = enabled
|
this.#enabled = enabled
|
||||||
this.#legacy = legacy === true
|
this.#legacy = legacy === true
|
||||||
|
@ -51,8 +51,8 @@ export default class Tab {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get name() {
|
get id() {
|
||||||
return this.#name
|
return this.#id
|
||||||
}
|
}
|
||||||
|
|
||||||
get component() {
|
get component() {
|
||||||
|
|
|
@ -56,17 +56,17 @@ export default class Sidebar {
|
||||||
* @returns {Boolean}
|
* @returns {Boolean}
|
||||||
*/
|
*/
|
||||||
registerTab(tab) {
|
registerTab(tab) {
|
||||||
const hasDuplicate = this.#state.tabs.findIndex(check => check.name === tab.name) > -1
|
const hasDuplicate = this.#state.tabs.findIndex(check => check.id === tab.id) > -1
|
||||||
if (!hasDuplicate) {
|
if (!hasDuplicate) {
|
||||||
this.#state.tabs.push(tab)
|
this.#state.tabs.push(tab)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
console.error(`An tab with the same name ${tab.name} already exists`, tab)
|
console.error(`An tab with the same id ${tab.id} already exists`, tab)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
registerSecondaryView(view) {
|
registerSecondaryView(view) {
|
||||||
const hasDuplicate = this.#state.views.findIndex(check => check.name === view.name) > -1
|
const hasDuplicate = this.#state.views.findIndex(check => check.id === view.id) > -1
|
||||||
if (!hasDuplicate) {
|
if (!hasDuplicate) {
|
||||||
this.#state.views.push(view)
|
this.#state.views.push(view)
|
||||||
return true
|
return true
|
||||||
|
|
|
@ -62,6 +62,7 @@
|
||||||
<component
|
<component
|
||||||
:is="tabComponent(tab).is"
|
:is="tabComponent(tab).is"
|
||||||
v-if="canDisplay(tab)"
|
v-if="canDisplay(tab)"
|
||||||
|
:id="tab.id"
|
||||||
:key="tab.id"
|
:key="tab.id"
|
||||||
:component="tabComponent(tab).component"
|
:component="tabComponent(tab).component"
|
||||||
:name="tab.name"
|
:name="tab.name"
|
||||||
|
|
BIN
apps/files_sharing/js/dist/files_sharing_tab.js
vendored
BIN
apps/files_sharing/js/dist/files_sharing_tab.js
vendored
Binary file not shown.
BIN
apps/files_sharing/js/dist/files_sharing_tab.js.map
vendored
BIN
apps/files_sharing/js/dist/files_sharing_tab.js.map
vendored
Binary file not shown.
|
@ -21,7 +21,10 @@
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<Tab :icon="icon" :name="name" :class="{ 'icon-loading': loading }">
|
<Tab :id="id"
|
||||||
|
:icon="icon"
|
||||||
|
:name="name"
|
||||||
|
:class="{ 'icon-loading': loading }">
|
||||||
<!-- error message -->
|
<!-- error message -->
|
||||||
<div v-if="error" class="emptycontent">
|
<div v-if="error" class="emptycontent">
|
||||||
<div class="icon icon-error" />
|
<div class="icon icon-error" />
|
||||||
|
@ -151,7 +154,7 @@ export default {
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
id() {
|
id() {
|
||||||
return this.name.toLowerCase().replace(/ /g, '-')
|
return 'sharing'
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6
package-lock.json
generated
6
package-lock.json
generated
|
@ -7238,9 +7238,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nextcloud-vue": {
|
"nextcloud-vue": {
|
||||||
"version": "0.12.11",
|
"version": "0.13.0",
|
||||||
"resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.12.11.tgz",
|
"resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.13.0.tgz",
|
||||||
"integrity": "sha512-3zzgSRpWtPMqIi+DpZsh0YxACACHv+j8bWmMYyiUJVB2JjVADYpzb/lbUxQCE/A8rB3N75zIfkQOf0gd9BC9oA==",
|
"integrity": "sha512-MKOZFv4RPSd2xjh7IV/iSZiRQceCOPPL139cEQ4aX3G6LzQfGLuNE97vn0U6vQbqlrINwHVh0k6IBaNIZ2Su2g==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@babel/polyfill": "^7.4.4",
|
"@babel/polyfill": "^7.4.4",
|
||||||
"escape-html": "^1.0.3",
|
"escape-html": "^1.0.3",
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
"moment-timezone": "^0.5.27",
|
"moment-timezone": "^0.5.27",
|
||||||
"nextcloud-password-confirmation": "^0.4.2",
|
"nextcloud-password-confirmation": "^0.4.2",
|
||||||
"nextcloud-router": "0.0.9",
|
"nextcloud-router": "0.0.9",
|
||||||
"nextcloud-vue": "^0.12.11",
|
"nextcloud-vue": "^0.13.0",
|
||||||
"nextcloud-vue-collections": "^0.7.1",
|
"nextcloud-vue-collections": "^0.7.1",
|
||||||
"p-limit": "^2.2.2",
|
"p-limit": "^2.2.2",
|
||||||
"p-queue": "^6.2.1",
|
"p-queue": "^6.2.1",
|
||||||
|
|
Loading…
Reference in a new issue