ENH - align gallery filter navigation

This commit is contained in:
smx.pusha
2026-08-20 10:03:18 +02:00
parent 2f0faa8206
commit 0a0053c3af
2 changed files with 47 additions and 35 deletions
@@ -57,6 +57,21 @@ describe('GalleryApp import action', () => {
)
})
it('uses the shared app tab bar for gallery filters', () => {
expect(source).toContain('<SkyTabBar')
expect(source).toContain('class="gallery-filter-tabbar"')
expect(source).toContain('icons')
expect(source).toContain('<Images :size="21" />')
expect(source).toContain('<Image :size="21" />')
expect(source).toContain('<Video :size="21" />')
expect(source).toContain('<SkyTabButton')
expect(source).toContain(':active="filter === \'all\'"')
expect(source).toContain(':active="filter === \'photo\'"')
expect(source).toContain(':active="filter === \'video\'"')
expect(source).not.toContain('gallery-filter-navbar')
expect(source).not.toContain('<sky-segmented')
})
it('opens an accessible sort menu from the large header', () => {
expect(headerActions).toContain('<ListFilter')
expect(headerActions).toContain('aria-haspopup="menu"')
+32 -35
View File
@@ -9,8 +9,6 @@ import {
SkyNavbarBackLink,
SkyAppPage,
SkySpinner,
SkySegmented,
SkySegmentedButton,
SkyNotification,
} from '@/ui'
import {
@@ -19,11 +17,14 @@ import {
Download,
Globe2,
Heart,
Image,
Images,
Link2,
ListFilter,
Play,
Share2,
Trash2,
Video,
} from 'lucide-vue-next'
import { computed, nextTick, onBeforeUnmount, onMounted, ref, watch } from 'vue'
import { useRoute, useRouter } from 'vue-router'
@@ -35,6 +36,8 @@ import {
SkyButton,
SkyDropdown,
SkyNavbar,
SkyTabBar,
SkyTabButton,
SkyToolbar,
SkyToolbarPane,
} from '@/ui'
@@ -68,11 +71,6 @@ const developmentParameters = isDevelopment
const developmentApiEnabled = Boolean(developmentParameters?.has('apiPort'))
const developmentGalleryState =
developmentParameters?.get('galleryMock') ?? null
const filterItems = [
{ id: 'all', label: 'all' },
{ id: 'photo', label: 'photos' },
{ id: 'video', label: 'videos' },
] as const
const phone = usePhoneStore()
const easyShare = useEasyShareStore()
const messageMedia = useMessageMediaStore()
@@ -1378,28 +1376,35 @@ onBeforeUnmount(() => {
</div>
</div>
<sky-navbar
<SkyTabBar
v-if="!requestedMessageMedia && !selectionMode"
component="nav"
class="gallery-filter-navbar"
:aria-label="phone.t('Apps.photos.name')"
icons
labels
class="gallery-filter-tabbar"
:label="phone.t('Apps.photos.name')"
>
<template #subnavbar>
<sky-segmented strong rounded :data-active-filter="filter">
<sky-segmented-button
v-for="item in filterItems"
:key="item.id"
large
:active="filter === item.id"
:class="filter === item.id ? 'text-white' : 'text-[#8e8e93]'"
:aria-pressed="filter === item.id"
@click="filter = item.id"
>
{{ phone.t(`Apps.photos.filters.${item.label}`) }}
</sky-segmented-button>
</sky-segmented>
</template>
</sky-navbar>
<SkyTabButton
:active="filter === 'all'"
:label="phone.t('Apps.photos.filters.all')"
@click="filter = 'all'"
>
<template #icon><Images :size="21" /></template>
</SkyTabButton>
<SkyTabButton
:active="filter === 'photo'"
:label="phone.t('Apps.photos.filters.photos')"
@click="filter = 'photo'"
>
<template #icon><Image :size="21" /></template>
</SkyTabButton>
<SkyTabButton
:active="filter === 'video'"
:label="phone.t('Apps.photos.filters.videos')"
@click="filter = 'video'"
>
<template #icon><Video :size="21" /></template>
</SkyTabButton>
</SkyTabBar>
<SkyToolbar
v-if="selectionMode"
@@ -1694,14 +1699,6 @@ onBeforeUnmount(() => {
flex-direction: column;
overflow-y: auto;
}
.gallery-filter-navbar {
position: absolute !important;
top: auto !important;
bottom: 24px;
}
.gallery-filter-navbar :deep(> div:nth-child(-n + 2)) {
display: none;
}
.gallery-grid {
position: relative;
display: grid;