mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #39102 from nextcloud/fix/migrate-deprecated-ncappnavigationcounter
This commit is contained in:
commit
ac80328648
14 changed files with 57 additions and 35 deletions
|
|
@ -30,7 +30,8 @@
|
|||
:menu-open="openGroupMenu"
|
||||
@update:menuOpen="handleGroupMenuOpen">
|
||||
<template #counter>
|
||||
<NcCounterBubble v-if="count">
|
||||
<NcCounterBubble v-if="count"
|
||||
:type="active ? 'highlighted' : undefined">
|
||||
{{ count }}
|
||||
</NcCounterBubble>
|
||||
</template>
|
||||
|
|
@ -67,18 +68,34 @@ export default {
|
|||
NcAppNavigationItem,
|
||||
},
|
||||
props: {
|
||||
/**
|
||||
* If this group is currently selected
|
||||
*/
|
||||
active: {
|
||||
type: Boolean,
|
||||
required: true,
|
||||
},
|
||||
/**
|
||||
* Number of members within this group
|
||||
*/
|
||||
count: {
|
||||
type: Number,
|
||||
required: true,
|
||||
},
|
||||
/**
|
||||
* Identifier of this group
|
||||
*/
|
||||
id: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
/**
|
||||
* Title of this group
|
||||
*/
|
||||
title: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
count: {
|
||||
type: Number,
|
||||
required: false,
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
|
|
|||
|
|
@ -46,9 +46,9 @@
|
|||
:to="{ name: 'apps-category', params: { category: 'updates' } }"
|
||||
icon="icon-download"
|
||||
:title="$options.APPS_SECTION_ENUM.updates">
|
||||
<NcAppNavigationCounter slot="counter">
|
||||
{{ updateCount }}
|
||||
</NcAppNavigationCounter>
|
||||
<template #counter>
|
||||
<NcCounterBubble>{{ updateCount }}</NcCounterBubble>
|
||||
</template>
|
||||
</NcAppNavigationItem>
|
||||
<NcAppNavigationItem id="app-category-your-bundles"
|
||||
:to="{ name: 'apps-category', params: { category: 'app-bundles' } }"
|
||||
|
|
@ -141,11 +141,11 @@ import VueLocalStorage from 'vue-localstorage'
|
|||
|
||||
import NcAppContent from '@nextcloud/vue/dist/Components/NcAppContent.js'
|
||||
import NcAppNavigation from '@nextcloud/vue/dist/Components/NcAppNavigation.js'
|
||||
import NcAppNavigationCounter from '@nextcloud/vue/dist/Components/NcAppNavigationCounter.js'
|
||||
import NcAppNavigationItem from '@nextcloud/vue/dist/Components/NcAppNavigationItem.js'
|
||||
import NcAppNavigationSpacer from '@nextcloud/vue/dist/Components/NcAppNavigationSpacer.js'
|
||||
import NcAppSidebar from '@nextcloud/vue/dist/Components/NcAppSidebar.js'
|
||||
import NcAppSidebarTab from '@nextcloud/vue/dist/Components/NcAppSidebarTab.js'
|
||||
import NcCounterBubble from '@nextcloud/vue/dist/Components/NcCounterBubble.js'
|
||||
import NcContent from '@nextcloud/vue/dist/Components/NcContent.js'
|
||||
|
||||
import AppList from '../components/AppList.vue'
|
||||
|
|
@ -166,9 +166,9 @@ export default {
|
|||
AppDetails,
|
||||
AppList,
|
||||
NcAppNavigation,
|
||||
NcAppNavigationCounter,
|
||||
NcAppNavigationItem,
|
||||
NcAppNavigationSpacer,
|
||||
NcCounterBubble,
|
||||
AppScore,
|
||||
NcAppSidebar,
|
||||
NcAppSidebarTab,
|
||||
|
|
|
|||
|
|
@ -47,9 +47,11 @@
|
|||
:title="t('settings', 'Active users')"
|
||||
:to="{ name: 'users' }"
|
||||
icon="icon-contacts-dark">
|
||||
<NcAppNavigationCounter v-if="userCount > 0" slot="counter">
|
||||
{{ userCount }}
|
||||
</NcAppNavigationCounter>
|
||||
<template #counter>
|
||||
<NcCounterBubble :type="!selectedGroupDecoded ? 'highlighted' : undefined">
|
||||
{{ userCount }}
|
||||
</NcCounterBubble>
|
||||
</template>
|
||||
</NcAppNavigationItem>
|
||||
<NcAppNavigationItem v-if="settings.isAdmin"
|
||||
id="admin"
|
||||
|
|
@ -57,9 +59,11 @@
|
|||
:title="t('settings', 'Admins')"
|
||||
:to="{ name: 'group', params: { selectedGroup: 'admin' } }"
|
||||
icon="icon-user-admin">
|
||||
<NcAppNavigationCounter v-if="adminGroupMenu.count" slot="counter">
|
||||
{{ adminGroupMenu.count }}
|
||||
</NcAppNavigationCounter>
|
||||
<template v-if="adminGroupMenu.count > 0" #counter>
|
||||
<NcCounterBubble :type="selectedGroupDecoded === 'admin' ? 'highlighted' : undefined">
|
||||
{{ adminGroupMenu.count }}
|
||||
</NcCounterBubble>
|
||||
</template>
|
||||
</NcAppNavigationItem>
|
||||
|
||||
<!-- Hide the disabled if none, if we don't have the data (-1) show it -->
|
||||
|
|
@ -69,15 +73,18 @@
|
|||
:title="t('settings', 'Disabled users')"
|
||||
:to="{ name: 'group', params: { selectedGroup: 'disabled' } }"
|
||||
icon="icon-disabled-users">
|
||||
<NcAppNavigationCounter v-if="disabledGroupMenu.usercount > 0" slot="counter">
|
||||
{{ disabledGroupMenu.usercount }}
|
||||
</NcAppNavigationCounter>
|
||||
<template v-if="disabledGroupMenu.usercount > 0" #counter>
|
||||
<NcCounterBubble :type="selectedGroupDecoded === 'disabled' ? 'highlighted' : undefined">
|
||||
{{ disabledGroupMenu.usercount }}
|
||||
</NcCounterBubble>
|
||||
</template>
|
||||
</NcAppNavigationItem>
|
||||
|
||||
<NcAppNavigationCaption v-if="groupList.length > 0" :title="t('settings', 'Groups')" />
|
||||
<GroupListItem v-for="group in groupList"
|
||||
:id="group.id"
|
||||
:key="group.id"
|
||||
:active="selectedGroupDecoded === group.id"
|
||||
:title="group.title"
|
||||
:count="group.count" />
|
||||
</template>
|
||||
|
|
@ -137,12 +144,12 @@ import VueLocalStorage from 'vue-localstorage'
|
|||
import NcAppContent from '@nextcloud/vue/dist/Components/NcAppContent.js'
|
||||
import NcAppNavigation from '@nextcloud/vue/dist/Components/NcAppNavigation.js'
|
||||
import NcAppNavigationCaption from '@nextcloud/vue/dist/Components/NcAppNavigationCaption.js'
|
||||
import NcAppNavigationCounter from '@nextcloud/vue/dist/Components/NcAppNavigationCounter.js'
|
||||
import NcAppNavigationItem from '@nextcloud/vue/dist/Components/NcAppNavigationItem.js'
|
||||
import NcAppNavigationNew from '@nextcloud/vue/dist/Components/NcAppNavigationNew.js'
|
||||
import NcAppNavigationNewItem from '@nextcloud/vue/dist/Components/NcAppNavigationNewItem.js'
|
||||
import NcAppNavigationSettings from '@nextcloud/vue/dist/Components/NcAppNavigationSettings.js'
|
||||
import NcCheckboxRadioSwitch from '@nextcloud/vue/dist/Components/NcCheckboxRadioSwitch.js'
|
||||
import NcCounterBubble from '@nextcloud/vue/dist/Components/NcCounterBubble.js'
|
||||
import NcContent from '@nextcloud/vue/dist/Components/NcContent.js'
|
||||
import NcSelect from '@nextcloud/vue/dist/Components/NcSelect.js'
|
||||
|
||||
|
|
@ -163,12 +170,12 @@ export default {
|
|||
NcAppContent,
|
||||
NcAppNavigation,
|
||||
NcAppNavigationCaption,
|
||||
NcAppNavigationCounter,
|
||||
NcAppNavigationItem,
|
||||
NcAppNavigationNew,
|
||||
NcAppNavigationNewItem,
|
||||
NcAppNavigationSettings,
|
||||
NcCheckboxRadioSwitch,
|
||||
NcCounterBubble,
|
||||
NcContent,
|
||||
NcSelect,
|
||||
Plus,
|
||||
|
|
|
|||
2
dist/2246-2246.js
vendored
Normal file
2
dist/2246-2246.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
dist/2246-2246.js.map
vendored
Normal file
1
dist/2246-2246.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
2
dist/691-691.js
vendored
2
dist/691-691.js
vendored
File diff suppressed because one or more lines are too long
1
dist/691-691.js.map
vendored
1
dist/691-691.js.map
vendored
File diff suppressed because one or more lines are too long
4
dist/settings-apps-view-7418.js
vendored
4
dist/settings-apps-view-7418.js
vendored
File diff suppressed because one or more lines are too long
2
dist/settings-apps-view-7418.js.map
vendored
2
dist/settings-apps-view-7418.js.map
vendored
File diff suppressed because one or more lines are too long
4
dist/settings-users-8351.js
vendored
4
dist/settings-users-8351.js
vendored
File diff suppressed because one or more lines are too long
2
dist/settings-users-8351.js.LICENSE.txt
vendored
2
dist/settings-users-8351.js.LICENSE.txt
vendored
|
|
@ -12,8 +12,6 @@
|
|||
|
||||
/*! For license information please see NcAppNavigationSettings.js.LICENSE.txt */
|
||||
|
||||
/*! For license information please see NcCounterBubble.js.LICENSE.txt */
|
||||
|
||||
/**
|
||||
* @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
|
|
|
|||
2
dist/settings-users-8351.js.map
vendored
2
dist/settings-users-8351.js.map
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue