File tree 7 files changed +43
-35
lines changed
7 files changed +43
-35
lines changed Original file line number Diff line number Diff line change 1
1
<script setup lang="ts">
2
- import { Github , BookOpenText } from ' lucide-vue-next' ;
2
+ import { BookOpenText , FolderGit2 , LayoutDashboard } from ' lucide-vue-next' ;
3
3
import NavMain from ' @/components/NavMain.vue' ;
4
4
import NavFooter from ' @/components/NavFooter.vue' ;
5
5
import NavUser from ' @/components/NavUser.vue' ;
6
+ import { type NavItemType } from ' @/types'
6
7
import {
7
8
Sidebar ,
8
9
SidebarContent ,
@@ -14,17 +15,19 @@ import {
14
15
} from ' @/components/ui/sidebar' ;
15
16
import ApplicationLogo from ' ./ApplicationLogo.vue' ;
16
17
17
- interface NavItem {
18
- title: string ;
19
- url: string ;
20
- icon: any ; // Using any for now since Vue's type system handles components differently
21
- }
18
+ const mainNavItems: NavItemType [] = [
19
+ {
20
+ title: " Dashboard" ,
21
+ url: " /dashboard" ,
22
+ icon: LayoutDashboard ,
23
+ },
24
+ ]
22
25
23
- const footerNavItems: NavItem [] = [
26
+ const footerNavItems: NavItemType [] = [
24
27
{
25
28
title: ' Github Repo' ,
26
29
url: ' https://github.com/laravel/vue-starter-kit' ,
27
- icon: Github ,
30
+ icon: FolderGit2 ,
28
31
},
29
32
{
30
33
title: ' Documentation' ,
@@ -55,7 +58,7 @@ const footerNavItems: NavItem[] = [
55
58
</SidebarHeader >
56
59
57
60
<SidebarContent >
58
- <NavMain />
61
+ <NavMain :items = " mainNavItems " />
59
62
</SidebarContent >
60
63
61
64
<SidebarFooter >
Original file line number Diff line number Diff line change 1
1
<script setup lang="ts">
2
- import { LayoutDashboard , type LucideIcon } from ' lucide-vue-next ' ;
3
- import { Link } from ' @inertiajs/vue3 ' ;
2
+ import { Link , usePage } from ' @inertiajs/vue3 ' ;
3
+ import { type NavItemType } from ' @/types '
4
4
import {
5
5
SidebarGroup ,
6
6
SidebarMenu ,
7
- SidebarMenuButton ,
8
7
SidebarMenuItem ,
8
+ SidebarMenuButton ,
9
9
} from ' @/components/ui/sidebar' ;
10
10
11
- interface NavItem {
12
- title: string ;
13
- url: string ;
14
- icon: any ; // Using any for now since Vue's type system handles components differently
15
- isActive? : boolean ;
16
- }
17
-
18
11
interface Props {
19
- items? : NavItem [];
12
+ items? : NavItemType [];
20
13
}
21
14
15
+ const page = usePage ();
16
+
22
17
withDefaults (defineProps <Props >(), {
23
18
items : () => [],
24
19
});
@@ -27,16 +22,8 @@ withDefaults(defineProps<Props>(), {
27
22
<template >
28
23
<SidebarGroup >
29
24
<SidebarMenu >
30
- <SidebarMenuItem >
31
- <SidebarMenuButton as-child :is-active =" true" >
32
- <Link :href =" route('dashboard')" >
33
- <LayoutDashboard />
34
- <span >Dashboard</span >
35
- </Link >
36
- </SidebarMenuButton >
37
- </SidebarMenuItem >
38
25
<SidebarMenuItem v-for =" item in items" :key =" item.title" >
39
- <SidebarMenuButton as-child :is-active =" item.isActive " >
26
+ <SidebarMenuButton as-child :is-active =" item.url === page.url " >
40
27
<Link :href =" item.url" >
41
28
<component :is =" item.icon" />
42
29
<span >{{ item.title }}</span >
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ defineProps<Props>()
12
12
<template >
13
13
<div >
14
14
<header >
15
- <h3 class =" text-lg font-medium" >{{ title }}</h3 >
15
+ <h3 class =" text-lg font-medium mb-1 " >{{ title }}</h3 >
16
16
<p v-if =" description" class =" text-sm text-muted-foreground" >
17
17
{{ description }}
18
18
</p >
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ const submit = () => {
39
39
id =" email"
40
40
type =" email"
41
41
name =" email"
42
+ autocomplete =" off"
42
43
v-model =" form.email"
43
44
autofocus
44
45
/>
Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ const submit = () => {
46
46
type =" email"
47
47
required
48
48
autofocus
49
+ tabindex =" 1"
50
+ autocomplete =" email"
49
51
v-model =" form.email"
50
52
/>
51
53
<InputError :message =" form.errors.email" />
@@ -58,6 +60,7 @@ const submit = () => {
58
60
v-if =" canResetPassword"
59
61
:href =" route('password.request')"
60
62
class =" text-sm underline-offset-4 hover:underline"
63
+ tabindex =" 5"
61
64
>
62
65
Forgot your password?
63
66
</Link >
@@ -66,14 +69,17 @@ const submit = () => {
66
69
id =" password"
67
70
type =" password"
68
71
required
72
+ tabindex =" 2"
73
+ autocomplete =" current-password"
69
74
v-model =" form.password"
70
75
/>
71
76
<InputError :message =" form.errors.password" />
72
77
</div >
73
78
74
79
<Button
75
80
type =" submit"
76
- class =" w-full"
81
+ class =" w-full"
82
+ tabindex =" 3"
77
83
:disabled =" form.processing"
78
84
>
79
85
<LoaderCircle v-if =" form.processing" class =" h-4 w-4 animate-spin" />
@@ -88,6 +94,7 @@ const submit = () => {
88
94
<Link
89
95
:href =" route('register')"
90
96
class =" underline underline-offset-4"
97
+ tabindex =" 4"
91
98
>
92
99
Sign up
93
100
</Link >
Original file line number Diff line number Diff line change @@ -38,6 +38,8 @@ const submit = () => {
38
38
type =" text"
39
39
required
40
40
autofocus
41
+ tabindex =" 1"
42
+ autocomplete =" name"
41
43
v-model =" form.name"
42
44
/>
43
45
<InputError :message =" form.errors.name" />
@@ -49,6 +51,8 @@ const submit = () => {
49
51
id =" email"
50
52
type =" email"
51
53
required
54
+ tabindex =" 2"
55
+ autocomplete =" email"
52
56
v-model =" form.email"
53
57
/>
54
58
<InputError :message =" form.errors.email" />
@@ -60,6 +64,8 @@ const submit = () => {
60
64
id =" password"
61
65
type =" password"
62
66
required
67
+ tabindex =" 3"
68
+ autocomplete =" new-password"
63
69
v-model =" form.password"
64
70
/>
65
71
<InputError :message =" form.errors.password" />
@@ -71,14 +77,17 @@ const submit = () => {
71
77
id =" password_confirmation"
72
78
type =" password"
73
79
required
80
+ tabindex =" 4"
81
+ autocomplete =" new-password"
74
82
v-model =" form.password_confirmation"
75
83
/>
76
84
<InputError :message =" form.errors.password_confirmation" />
77
85
</div >
78
86
79
87
<Button
80
88
type =" submit"
81
- class =" w-full"
89
+ class =" w-full"
90
+ tabindex =" 5"
82
91
:disabled =" form.processing"
83
92
>
84
93
<LoaderCircle v-if =" form.processing" class =" h-4 w-4 animate-spin" />
@@ -93,6 +102,7 @@ const submit = () => {
93
102
<Link
94
103
:href =" route('login')"
95
104
class =" underline underline-offset-4"
105
+ tabindex =" 6"
96
106
>
97
107
Log in
98
108
</Link >
Original file line number Diff line number Diff line change @@ -45,9 +45,9 @@ const submit = () => {
45
45
id =" email"
46
46
type =" email"
47
47
name =" email"
48
+ autocomplete =" email"
48
49
v-model =" form.email"
49
50
class =" mt-1 block w-full"
50
- autocomplete =" username"
51
51
readonly
52
52
/>
53
53
<InputError :message =" form.errors.email" class =" mt-2" />
@@ -59,9 +59,9 @@ const submit = () => {
59
59
id =" password"
60
60
type =" password"
61
61
name =" password"
62
+ autocomplete =" new-password"
62
63
v-model =" form.password"
63
64
class =" mt-1 block w-full"
64
- autocomplete =" new-password"
65
65
autofocus
66
66
/>
67
67
<InputError :message =" form.errors.password" class =" mt-2" />
@@ -75,9 +75,9 @@ const submit = () => {
75
75
id =" password_confirmation"
76
76
type =" password"
77
77
name =" password_confirmation"
78
+ autocomplete =" new-password"
78
79
v-model =" form.password_confirmation"
79
80
class =" mt-1 block w-full"
80
- autocomplete =" new-password"
81
81
/>
82
82
<InputError :message =" form.errors.password_confirmation" class =" mt-2" />
83
83
</div >
You can’t perform that action at this time.
0 commit comments