diff --git a/components.d.ts b/components.d.ts index 70a02b5c57..2062770aa7 100644 --- a/components.d.ts +++ b/components.d.ts @@ -14,6 +14,10 @@ declare module 'vue' { AppSidebar: typeof import('./src/components/AppSidebar.vue')['default'] AppSidebarFooter: typeof import('./src/components/AppSidebarFooter.vue')['default'] AppSidebarSection: typeof import('./src/components/AppSidebarSection.vue')['default'] + AppSidebarSectionEntry: typeof import('./src/components/AppSidebarSectionEntry.vue')['default'] + AppSidebarSectionItem: typeof import('./src/components/AppSidebarSectionItem.vue')['default'] + AppSidebarSectionTitle: typeof import('./src/components/AppSidebarSectionTitle.vue')['default'] + AppSidebarSectionToggler: typeof import('./src/components/AppSidebarSectionToggler.vue')['default'] AudioViewer: typeof import('./src/components/document/viewers/AudioViewer.vue')['default'] BAlert: typeof import('bootstrap-vue-next')['BAlert'] BatchDownloadActions: typeof import('./src/components/BatchDownloadActions.vue')['default'] @@ -66,6 +70,7 @@ declare module 'vue' { ColumnFilterBadge: typeof import('./src/components/ColumnFilterBadge.vue')['default'] ColumnFilterDropdown: typeof import('./src/components/ColumnFilterDropdown.vue')['default'] ContentTypeBadge: typeof import('./src/components/ContentTypeBadge.vue')['default'] + copy: typeof import('./src/components/AppSidebarSection copy.vue')['default'] DismissableAlert: typeof import('./src/components/DismissableAlert.vue')['default'] DocumentActions: typeof import('./src/components/DocumentActions.vue')['default'] DocumentAttachments: typeof import('./src/components/DocumentAttachments.vue')['default'] diff --git a/src/components/AppSidebarFooter.vue b/src/components/AppSidebarFooter.vue index 4653173582..45655457bd 100644 --- a/src/components/AppSidebarFooter.vue +++ b/src/components/AppSidebarFooter.vue @@ -145,7 +145,7 @@ const classList = computed(() => { margin: $spacer-xxs; &__icon:hover { - color: var(--bs-primary); + color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)); } } } diff --git a/src/components/AppSidebarSection.vue b/src/components/AppSidebarSection.vue index 093552f5da..a405ef4a63 100644 --- a/src/components/AppSidebarSection.vue +++ b/src/components/AppSidebarSection.vue @@ -1,6 +1,9 @@ + + diff --git a/src/components/AppSidebarSectionEntry.vue b/src/components/AppSidebarSectionEntry.vue new file mode 100644 index 0000000000..188763a994 --- /dev/null +++ b/src/components/AppSidebarSectionEntry.vue @@ -0,0 +1,92 @@ + + + + + diff --git a/src/components/AppSidebarSectionTitle.vue b/src/components/AppSidebarSectionTitle.vue new file mode 100644 index 0000000000..051226ca8e --- /dev/null +++ b/src/components/AppSidebarSectionTitle.vue @@ -0,0 +1,38 @@ + + + + + diff --git a/src/components/AppSidebarSectionToggler.vue b/src/components/AppSidebarSectionToggler.vue new file mode 100644 index 0000000000..b58bf9598e --- /dev/null +++ b/src/components/AppSidebarSectionToggler.vue @@ -0,0 +1,58 @@ + + + + + diff --git a/src/stories/components/AppSidebarSection.stories.js b/src/stories/components/AppSidebarSection.stories.js index fc50724496..3140b86a02 100644 --- a/src/stories/components/AppSidebarSection.stories.js +++ b/src/stories/components/AppSidebarSection.stories.js @@ -1,6 +1,12 @@ +import { vueRouter } from 'storybook-vue3-router' + import AppSidebarSection from '@/components/AppSidebarSection' +import AppSidebarSectionEntry from '@/components/AppSidebarSectionEntry' + +const routes = [{ path: '/', name: 'home' }] export default { + decorators: [vueRouter(routes)], title: 'Components/AppSidebar/Section', tags: ['autodocs'], argTypes: { @@ -9,19 +15,47 @@ export default { }, title: { control: { type: 'text' } + }, + active: { + control: { type: 'boolean' } + }, + compact: { + control: { type: 'boolean' } } }, args: { - icon: 'rocket', - title: 'Group name' + icon: 'circles-three-plus', + title: 'Projects', + active: true, + compact: false }, render: (args) => ({ components: { - AppSidebarSection + AppSidebarSection, + AppSidebarSectionEntry + }, + setup() { + return { args } + }, + computed: { + style() { + return { maxWidth: args.compact ? '90px' : '300px' } + } }, template: ` - - +
+ + + All projects + + + Banana Papers + + + Citrus Confidential + + +
` }) } diff --git a/src/stories/components/AppSidebarSectionEntry.stories.js b/src/stories/components/AppSidebarSectionEntry.stories.js new file mode 100644 index 0000000000..25a040beb9 --- /dev/null +++ b/src/stories/components/AppSidebarSectionEntry.stories.js @@ -0,0 +1,54 @@ +import { vueRouter } from 'storybook-vue3-router' + +import AppSidebarSectionEntry from '@/components/AppSidebarSectionEntry' + +const routes = [{ path: '/', name: 'home' }] + +export default { + decorators: [vueRouter(routes)], + title: 'Components/AppSidebar/Section/Entry', + tags: ['autodocs'], + argTypes: { + icon: { + control: { type: 'text' } + }, + content: { + control: { type: 'text' } + }, + active: { + control: { type: 'boolean' } + } + }, + args: { + icon: 'clock-counter-clockwise', + content: 'Visited documents', + active: false + }, + render: (args) => ({ + components: { + AppSidebarSectionEntry + }, + setup() { + return { args } + }, + template: ` +
+ + {{ args.content }} + +
+ ` + }) +} + +export const Default = {} + +export const WithAction = { + args: { + content: 'Batch search', + icon: 'list-magnifying-glass', + actionIcon: 'plus', + actionTitle: 'Add batch search', + actionTo: { name: 'home' } + } +} diff --git a/src/stories/components/AppSidebarSectionTitle.stories.js b/src/stories/components/AppSidebarSectionTitle.stories.js new file mode 100644 index 0000000000..fae2286cf3 --- /dev/null +++ b/src/stories/components/AppSidebarSectionTitle.stories.js @@ -0,0 +1,38 @@ +import { vueRouter } from 'storybook-vue3-router' + +import AppSidebarSectionTitle from '@/components/AppSidebarSectionTitle' + +const routes = [{ path: '/', name: 'home' }] + +export default { + decorators: [vueRouter(routes)], + title: 'Components/AppSidebar/Section/Title', + tags: ['autodocs'], + argTypes: { + icon: { + control: { type: 'text' } + }, + title: { + control: { type: 'text' } + } + }, + args: { + icon: 'rocket-launch', + title: 'Tasks' + }, + render: (args) => ({ + components: { + AppSidebarSectionTitle + }, + setup() { + return { args } + }, + template: ` +
+ +
+ ` + }) +} + +export const Default = {} diff --git a/src/stories/components/AppSidebarSectionToggler.stories.js b/src/stories/components/AppSidebarSectionToggler.stories.js new file mode 100644 index 0000000000..cc25a63a89 --- /dev/null +++ b/src/stories/components/AppSidebarSectionToggler.stories.js @@ -0,0 +1,42 @@ +import { vueRouter } from 'storybook-vue3-router' + +import AppSidebarSectionToggler from '@/components/AppSidebarSectionToggler' + +const routes = [{ path: '/', name: 'home' }] + +export default { + decorators: [vueRouter(routes)], + title: 'Components/AppSidebar/Section/Toggler', + tags: ['autodocs'], + argTypes: { + icon: { + control: { type: 'text' } + }, + title: { + control: { type: 'text' } + }, + active: { + control: { type: 'boolean' } + } + }, + args: { + icon: 'rocket-launch', + title: 'Tasks', + active: true + }, + render: (args) => ({ + components: { + AppSidebarSectionToggler + }, + setup() { + return { args } + }, + template: ` +
+ +
+ ` + }) +} + +export const Default = {}