@finema/finework-layer 0.2.4 → 0.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,207 +1,207 @@
1
- <template>
2
- <div class="relative flex min-h-screen flex-1">
3
- <div
4
- :class="[
5
- `
6
- fixed inset-0 z-30 hidden w-auto
7
- lg:block
8
- `,
9
- {
10
- 'max-w-[88px]': isCollapsed,
11
- 'max-w-[260px]': !isCollapsed,
12
- },
13
- ]"
14
- >
15
- <Sidebar
16
- :label="label"
17
- :is-collapsed="isCollapsed"
18
- :items="sidebarItems"
19
- :is-group="isSidebarGroup"
20
- @toggle-collapsed="isCollapsed = !isCollapsed"
21
- />
22
- </div>
23
- <div
24
- :class="[
25
- 'w-full bg-gray-50',
26
- {
27
- 'lg:pl-[88px]': isCollapsed,
28
- 'lg:pl-[260px]': !isCollapsed,
29
- },
30
- ]"
31
- >
32
- <nav
33
- class="fixed top-0 left-0 z-20 flex min-h-[64px] w-screen items-center justify-between gap-4 bg-white px-5 lg:min-h-[72px] lg:justify-end"
34
- style="box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04)"
35
- >
36
- <div class="flex items-center gap-4">
37
- <Slideover
38
- v-model:open="isShowSidebarMobile"
39
- :ui="{
40
- content: 'w-[80%] max-w-[260px] lg:hidden',
41
- overlay: 'lg:hidden',
42
- }"
43
- side="left"
44
- >
45
- <svg
46
- class="cursor-pointer lg:hidden"
47
- width="19"
48
- height="18"
49
- viewBox="0 0 19 18"
50
- fill="none"
51
- xmlns="http://www.w3.org/2000/svg"
52
- transform="scale(-1, 1)"
53
- @click="isShowSidebarMobile = true"
54
- >
55
- <path
56
- d="M10 18L10 16L19 16L19 18L10 18ZM6 2L6 -2.62268e-07L19 -8.30516e-07L19 2L6 2ZM-3.49691e-07 10L-4.37114e-07 8L19 8L19 10L-3.49691e-07 10Z"
57
- fill="#4B5563"
58
- />
59
- </svg>
60
-
61
- <template #content>
62
- <Sidebar
63
- :label="label"
64
- :is-collapsed="false"
65
- :is-mobile="true"
66
- :items="sidebarItems"
67
- :is-group="isSidebarGroup"
68
- @toggle-collapsed="isShowSidebarMobile = false"
69
- />
70
- </template>
71
- </Slideover>
72
- <NuxtLink :to="routes.home.to">
73
- <img
74
- src="/logo-mini.png"
75
- alt="logo_mini_color"
76
- class="w-[126px] min-w-[126px] lg:hidden lg:w-[172px] lg:min-w-[172px]"
77
- />
78
- </NuxtLink>
79
- <Apps class="lg:hidden" />
80
- </div>
81
-
82
- <div class="flex items-center justify-center gap-4">
83
- <DropdownMenu
84
- size="xl"
85
- :items="userMenuItems"
86
- :content="{
87
- align: 'end',
88
- side: 'bottom',
89
- }"
90
- :ui="{
91
- content: 'w-48',
92
- }"
93
- >
94
- <div class="relative flex cursor-pointer items-center gap-2">
95
- <div class="hidden flex-col justify-end text-right lg:flex">
96
- <p class="font-bold">
97
- {{ auth.me.value?.display_name || auth.me.value?.full_name }}
98
- </p>
99
- <p class="text-muted text-sm">
100
- {{ auth.me.value?.email || "" }}
101
- </p>
102
- </div>
103
- <Avatar
104
- class="border-muted size-[40px] border text-2xl"
105
- icon="ri:user-line"
106
- :src="auth.me.value?.avatar_url || ''"
107
- />
108
- <Icon name="i-ph:caret-down-light" class="size-5" />
109
- </div>
110
- </DropdownMenu>
111
- </div>
112
- </nav>
113
- <div class="w-full bg-gray-50 pt-[64px] lg:pt-[72px]">
114
- <main class="mx-auto min-h-full w-full flex-1 px-6 py-10 lg:px-8">
115
- <Breadcrumb
116
- v-if="
117
- !app.pageMeta.isHideBreadcrumbs && breadcrumbsItems.length > 1
118
- "
119
- :items="breadcrumbsItems"
120
- class="mb-6"
121
- :ui="{
122
- item: 'max-w-2/3',
123
- list: 'w-full',
124
- }"
125
- />
126
- <div
127
- v-if="app.pageMeta.title"
128
- class="mb-4 flex flex-col justify-between gap-1 md:mb-6 md:gap-4 lg:flex-row lg:items-start"
129
- >
130
- <div class="flex flex-1 flex-col">
131
- <h1
132
- class="text-3xl font-bold wrap-break-word lg:max-w-2/3"
133
- :title="app.pageMeta.title"
134
- >
135
- {{ app.pageMeta.title }}
136
- <span id="page-title-extra" />
137
- </h1>
138
-
139
- <div id="page-subtitle" />
140
- <p v-if="app.pageMeta.sub_title" class="text-[#475467]">
141
- {{ app.pageMeta.sub_title }}
142
- </p>
143
- </div>
144
- <div id="page-header" />
145
- </div>
146
- <slot />
147
- </main>
148
- </div>
149
- </div>
150
- </div>
151
- </template>
152
-
153
- <script lang="ts" setup>
154
- import type { DropdownMenuItem, NavigationMenuItem } from '@nuxt/ui'
155
- import { computed } from 'vue'
156
- import Sidebar from './Sidebar.vue'
157
- import Apps from '../Apps.vue'
158
-
159
- defineProps<{
160
- label: string
161
- sidebarItems: NavigationMenuItem[]
162
- isSidebarGroup?: boolean
163
- }>()
164
-
165
- const app = useApp()
166
- const isShowSidebarMobile = ref(false)
167
- const auth = useAuth()
168
- // Cookie to store user preference for desktop
169
- const isCollapsed = useCookie<boolean>('app.admin.sidebar.isCollapsed', {
170
- default: () => false,
171
- path: '/',
172
- })
173
-
174
- const userMenuItems: DropdownMenuItem[] = [
175
- {
176
- label: 'View profile',
177
- icon: 'i-lucide-user',
178
- to: routes.account.profile.to,
179
- },
180
-
181
- {
182
- label: routes.logout.label,
183
- icon: 'i-lucide-log-out',
184
- to: routes.logout.to,
185
- external: true,
186
- },
187
- ]
188
-
189
- const breadcrumbsItems = computed(() => {
190
- const list = app.pageMeta.breadcrumbs || []
191
- if (!list.length) return []
192
-
193
- const [first, ...rest] = list
194
- const home = {
195
- label: '',
196
- icon: 'ph:house-line',
197
- to: first?.to,
198
- }
199
-
200
- const extra = rest.map((item: any) => ({
201
- ...item,
202
- icon: '',
203
- }))
204
-
205
- return [home, ...extra]
206
- })
207
- </script>
1
+ <template>
2
+ <div class="relative flex min-h-screen flex-1">
3
+ <div
4
+ :class="[
5
+ `
6
+ fixed inset-0 z-30 hidden w-auto
7
+ lg:block
8
+ `,
9
+ {
10
+ 'max-w-[88px]': isCollapsed,
11
+ 'max-w-[260px]': !isCollapsed,
12
+ },
13
+ ]"
14
+ >
15
+ <Sidebar
16
+ :label="label"
17
+ :is-collapsed="isCollapsed"
18
+ :items="sidebarItems"
19
+ :is-group="isSidebarGroup"
20
+ @toggle-collapsed="isCollapsed = !isCollapsed"
21
+ />
22
+ </div>
23
+ <div
24
+ :class="[
25
+ 'w-full bg-gray-50',
26
+ {
27
+ 'lg:pl-[88px]': isCollapsed,
28
+ 'lg:pl-[260px]': !isCollapsed,
29
+ },
30
+ ]"
31
+ >
32
+ <nav
33
+ class="fixed top-0 left-0 z-20 flex min-h-[64px] w-screen items-center justify-between gap-4 bg-white px-5 lg:min-h-[72px] lg:justify-end"
34
+ style="box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04)"
35
+ >
36
+ <div class="flex items-center gap-4">
37
+ <Slideover
38
+ v-model:open="isShowSidebarMobile"
39
+ :ui="{
40
+ content: 'w-[80%] max-w-[260px] lg:hidden',
41
+ overlay: 'lg:hidden',
42
+ }"
43
+ side="left"
44
+ >
45
+ <svg
46
+ class="cursor-pointer lg:hidden"
47
+ width="19"
48
+ height="18"
49
+ viewBox="0 0 19 18"
50
+ fill="none"
51
+ xmlns="http://www.w3.org/2000/svg"
52
+ transform="scale(-1, 1)"
53
+ @click="isShowSidebarMobile = true"
54
+ >
55
+ <path
56
+ d="M10 18L10 16L19 16L19 18L10 18ZM6 2L6 -2.62268e-07L19 -8.30516e-07L19 2L6 2ZM-3.49691e-07 10L-4.37114e-07 8L19 8L19 10L-3.49691e-07 10Z"
57
+ fill="#4B5563"
58
+ />
59
+ </svg>
60
+
61
+ <template #content>
62
+ <Sidebar
63
+ :label="label"
64
+ :is-collapsed="false"
65
+ :is-mobile="true"
66
+ :items="sidebarItems"
67
+ :is-group="isSidebarGroup"
68
+ @toggle-collapsed="isShowSidebarMobile = false"
69
+ />
70
+ </template>
71
+ </Slideover>
72
+ <NuxtLink :to="routes.home.to">
73
+ <img
74
+ src="/logo-mini.png"
75
+ alt="logo_mini_color"
76
+ class="w-[126px] min-w-[126px] lg:hidden lg:w-[172px] lg:min-w-[172px]"
77
+ />
78
+ </NuxtLink>
79
+ <Apps class="lg:hidden" />
80
+ </div>
81
+
82
+ <div class="flex items-center justify-center gap-4">
83
+ <DropdownMenu
84
+ size="xl"
85
+ :items="userMenuItems"
86
+ :content="{
87
+ align: 'end',
88
+ side: 'bottom',
89
+ }"
90
+ :ui="{
91
+ content: 'w-48',
92
+ }"
93
+ >
94
+ <div class="relative flex cursor-pointer items-center gap-2">
95
+ <div class="hidden flex-col justify-end text-right lg:flex">
96
+ <p class="font-bold">
97
+ {{ auth.me.value?.display_name || auth.me.value?.full_name }}
98
+ </p>
99
+ <p class="text-muted text-sm">
100
+ {{ auth.me.value?.email || "" }}
101
+ </p>
102
+ </div>
103
+ <Avatar
104
+ class="border-muted size-[40px] border text-2xl"
105
+ icon="ri:user-line"
106
+ :src="auth.me.value?.avatar_url || ''"
107
+ />
108
+ <Icon name="i-ph:caret-down-light" class="size-5" />
109
+ </div>
110
+ </DropdownMenu>
111
+ </div>
112
+ </nav>
113
+ <div class="w-full bg-gray-50 pt-[64px] lg:pt-[72px]">
114
+ <main class="mx-auto min-h-full w-full flex-1 px-6 py-10 lg:px-8">
115
+ <Breadcrumb
116
+ v-if="
117
+ !app.pageMeta.isHideBreadcrumbs && breadcrumbsItems.length > 1
118
+ "
119
+ :items="breadcrumbsItems"
120
+ class="mb-6"
121
+ :ui="{
122
+ item: 'max-w-2/3',
123
+ list: 'w-full',
124
+ }"
125
+ />
126
+ <div
127
+ v-if="app.pageMeta.title"
128
+ class="mb-4 flex flex-col justify-between gap-1 md:mb-6 md:gap-4 lg:flex-row lg:items-start"
129
+ >
130
+ <div class="flex flex-1 flex-col">
131
+ <h1
132
+ class="text-3xl font-bold wrap-break-word lg:max-w-2/3"
133
+ :title="app.pageMeta.title"
134
+ >
135
+ {{ app.pageMeta.title }}
136
+ <span id="page-title-extra" />
137
+ </h1>
138
+
139
+ <div id="page-subtitle" />
140
+ <p v-if="app.pageMeta.sub_title" class="text-[#475467]">
141
+ {{ app.pageMeta.sub_title }}
142
+ </p>
143
+ </div>
144
+ <div id="page-header" />
145
+ </div>
146
+ <slot />
147
+ </main>
148
+ </div>
149
+ </div>
150
+ </div>
151
+ </template>
152
+
153
+ <script lang="ts" setup>
154
+ import type { DropdownMenuItem, NavigationMenuItem } from '@nuxt/ui'
155
+ import { computed } from 'vue'
156
+ import Sidebar from './Sidebar.vue'
157
+ import Apps from '../Apps.vue'
158
+
159
+ defineProps<{
160
+ label: string
161
+ sidebarItems: NavigationMenuItem[]
162
+ isSidebarGroup?: boolean
163
+ }>()
164
+
165
+ const app = useApp()
166
+ const isShowSidebarMobile = ref(false)
167
+ const auth = useAuth()
168
+ // Cookie to store user preference for desktop
169
+ const isCollapsed = useCookie<boolean>('app.admin.sidebar.isCollapsed', {
170
+ default: () => false,
171
+ path: '/',
172
+ })
173
+
174
+ const userMenuItems: DropdownMenuItem[] = [
175
+ {
176
+ label: 'View profile',
177
+ icon: 'i-lucide-user',
178
+ to: routes.account.profile.to,
179
+ },
180
+
181
+ {
182
+ label: routes.logout.label,
183
+ icon: 'i-lucide-log-out',
184
+ to: routes.logout.to,
185
+ external: true,
186
+ },
187
+ ]
188
+
189
+ const breadcrumbsItems = computed(() => {
190
+ const list = app.pageMeta.breadcrumbs || []
191
+ if (!list.length) return []
192
+
193
+ const [first, ...rest] = list
194
+ const home = {
195
+ label: '',
196
+ icon: 'ph:house-line',
197
+ to: first?.to,
198
+ }
199
+
200
+ const extra = rest.map((item: any) => ({
201
+ ...item,
202
+ icon: '',
203
+ }))
204
+
205
+ return [home, ...extra]
206
+ })
207
+ </script>
@@ -1,45 +1,45 @@
1
- <template>
2
- <Popover
3
- :content="{
4
- align: 'center',
5
- side: 'bottom',
6
- sideOffset: 8,
7
- }"
8
- >
9
- <Button
10
- icon="mingcute:dot-grid-line"
11
- variant="ghost"
12
- class="text-gray-500"
13
- />
14
-
15
- <template #content>
16
- <Card class="w-[300px]">
17
- <div
18
- class="grid grid-cols-3 gap-6"
19
- >
20
- <Button
21
- v-for="item in auth.menusNavbar.value"
22
- :key="item.to"
23
- class="flex flex-col items-center p-0 text-center"
24
- variant="link"
25
- :to="item.to"
26
- >
27
- <div class="flex h-[42px] items-center justify-center">
28
- <img
29
- :src="item.icon"
30
- class="h-auto w-[32px]"
31
- />
32
- </div>
33
- <span class="text-sm font-medium text-gray-700">
34
- {{ item.label }}
35
- </span>
36
- </Button>
37
- </div>
38
- </Card>
39
- </template>
40
- </Popover>
41
- </template>
42
-
43
- <script lang="ts" setup>
44
- const auth = useAuth()
45
- </script>
1
+ <template>
2
+ <Popover
3
+ :content="{
4
+ align: 'center',
5
+ side: 'bottom',
6
+ sideOffset: 8,
7
+ }"
8
+ >
9
+ <Button
10
+ icon="mingcute:dot-grid-line"
11
+ variant="ghost"
12
+ class="text-gray-500"
13
+ />
14
+
15
+ <template #content>
16
+ <Card class="w-[300px]">
17
+ <div
18
+ class="grid grid-cols-3 gap-6"
19
+ >
20
+ <Button
21
+ v-for="item in auth.menusNavbar.value"
22
+ :key="item.to"
23
+ class="flex flex-col items-center p-0 text-center"
24
+ variant="link"
25
+ :to="item.to"
26
+ >
27
+ <div class="flex h-[42px] items-center justify-center">
28
+ <img
29
+ :src="item.icon"
30
+ class="h-auto w-[32px]"
31
+ />
32
+ </div>
33
+ <span class="text-sm font-medium text-gray-700">
34
+ {{ item.label }}
35
+ </span>
36
+ </Button>
37
+ </div>
38
+ </Card>
39
+ </template>
40
+ </Popover>
41
+ </template>
42
+
43
+ <script lang="ts" setup>
44
+ const auth = useAuth()
45
+ </script>