kaze 0.8.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +4 -4
  2. data/lib/kaze/commands/install_command.rb +3 -1
  3. data/lib/kaze/commands/installs_hotwire_stack.rb +2 -2
  4. data/lib/kaze/commands/installs_inertia_stacks.rb +7 -7
  5. data/lib/kaze/version.rb +1 -1
  6. data/stubs/default/app/forms/update_profile_information_form.rb +8 -0
  7. data/stubs/default/app/mailers/application_mailer.rb +1 -1
  8. data/stubs/default/app/mailers/user_mailer.rb +16 -1
  9. data/stubs/default/app/models/concerns/can_reset_password.rb +1 -1
  10. data/stubs/default/app/models/concerns/must_verify_email.rb +15 -0
  11. data/stubs/default/app/models/user.rb +1 -0
  12. data/stubs/default/app/views/user_mailer/reset_password.html.erb +2 -2
  13. data/stubs/default/app/views/user_mailer/verify_email.html.erb +33 -0
  14. data/stubs/default/config/routes.rb +4 -0
  15. data/stubs/default/db/migrate/20240101000000_create_users.rb +1 -0
  16. data/stubs/default/test/factories/users.rb +5 -0
  17. data/stubs/default/test/integration/auth/authentication_test.rb +4 -6
  18. data/stubs/default/test/integration/auth/email_verification_test.rb +40 -0
  19. data/stubs/default/test/integration/auth/password_reset_test.rb +3 -3
  20. data/stubs/default/test/integration/password_update_test.rb +2 -2
  21. data/stubs/default/test/integration/profile_test.rb +16 -4
  22. data/stubs/hotwire/app/components/modal_component.rb +5 -5
  23. data/stubs/hotwire/app/controllers/auth/authenticated_session_controller.rb +3 -2
  24. data/stubs/hotwire/app/controllers/auth/email_verification_notification_controller.rb +21 -0
  25. data/stubs/hotwire/app/controllers/auth/new_password_controller.rb +2 -2
  26. data/stubs/hotwire/app/controllers/auth/password_reset_link_controller.rb +1 -1
  27. data/stubs/hotwire/app/controllers/auth/registered_user_controller.rb +6 -2
  28. data/stubs/hotwire/app/controllers/auth/verified_email_controller.rb +23 -0
  29. data/stubs/hotwire/app/controllers/concerns/authenticate.rb +10 -0
  30. data/stubs/hotwire/app/controllers/concerns/validate_signature.rb +17 -0
  31. data/stubs/hotwire/app/controllers/password_controller.rb +3 -1
  32. data/stubs/hotwire/app/controllers/profile_controller.rb +5 -3
  33. data/stubs/hotwire/app/views/auth/verify_email.html.erb +23 -0
  34. data/stubs/hotwire/app/views/profile/partials/_delete_user_form.html.erb +1 -1
  35. data/stubs/hotwire/app/views/profile/partials/_update_profile_information_form.html.erb +18 -0
  36. data/stubs/inertia-common/app/controllers/auth/authenticated_session_controller.rb +3 -3
  37. data/stubs/inertia-common/app/controllers/auth/email_verification_notification_controller.rb +21 -0
  38. data/stubs/inertia-common/app/controllers/auth/new_password_controller.rb +2 -3
  39. data/stubs/inertia-common/app/controllers/auth/password_reset_link_controller.rb +3 -3
  40. data/stubs/inertia-common/app/controllers/auth/registered_user_controller.rb +6 -2
  41. data/stubs/inertia-common/app/controllers/auth/verified_email_controller.rb +23 -0
  42. data/stubs/inertia-common/app/controllers/concerns/authenticate.rb +10 -0
  43. data/stubs/inertia-common/app/controllers/concerns/validate_signature.rb +17 -0
  44. data/stubs/inertia-common/app/controllers/password_controller.rb +3 -1
  45. data/stubs/inertia-common/app/controllers/profile_controller.rb +7 -4
  46. data/stubs/inertia-common/test/integration/password_update_test.rb +2 -2
  47. data/stubs/inertia-common/test/integration/profile_test.rb +16 -4
  48. data/stubs/inertia-react-ts/app/javascript/Components/Checkbox.tsx +1 -4
  49. data/stubs/inertia-react-ts/app/javascript/Components/DangerButton.tsx +3 -5
  50. data/stubs/inertia-react-ts/app/javascript/Components/Dropdown.tsx +4 -25
  51. data/stubs/inertia-react-ts/app/javascript/Components/InputError.tsx +1 -4
  52. data/stubs/inertia-react-ts/app/javascript/Components/InputLabel.tsx +1 -4
  53. data/stubs/inertia-react-ts/app/javascript/Components/NavLink.tsx +3 -5
  54. data/stubs/inertia-react-ts/app/javascript/Components/PrimaryButton.tsx +3 -5
  55. data/stubs/inertia-react-ts/app/javascript/Components/SecondaryButton.tsx +3 -5
  56. data/stubs/inertia-react-ts/app/javascript/Components/TextInput.tsx +1 -7
  57. data/stubs/inertia-react-ts/app/javascript/Layouts/AuthenticatedLayout.tsx +14 -52
  58. data/stubs/inertia-react-ts/app/javascript/Pages/Auth/ForgotPassword.tsx +4 -7
  59. data/stubs/inertia-react-ts/app/javascript/Pages/Auth/Login.tsx +10 -24
  60. data/stubs/inertia-react-ts/app/javascript/Pages/Auth/Register.tsx +2 -5
  61. data/stubs/inertia-react-ts/app/javascript/Pages/Auth/ResetPassword.tsx +2 -5
  62. data/stubs/inertia-react-ts/app/javascript/Pages/Auth/VerifyEmail.tsx +47 -0
  63. data/stubs/inertia-react-ts/app/javascript/Pages/Dashboard.tsx +2 -8
  64. data/stubs/inertia-react-ts/app/javascript/Pages/Profile/Edit.tsx +10 -10
  65. data/stubs/inertia-react-ts/app/javascript/Pages/Profile/Partials/DeleteUserForm.tsx +10 -20
  66. data/stubs/inertia-react-ts/app/javascript/Pages/Profile/Partials/UpdatePasswordForm.tsx +10 -18
  67. data/stubs/inertia-react-ts/app/javascript/Pages/Profile/Partials/UpdateProfileInformationForm.tsx +35 -12
  68. data/stubs/inertia-react-ts/app/javascript/Pages/Welcome.tsx +1 -2
  69. data/stubs/inertia-react-ts/app/javascript/entrypoints/application.tsx +1 -5
  70. data/stubs/inertia-react-ts/app/javascript/entrypoints/bootstrap.ts +3 -3
  71. data/stubs/inertia-react-ts/app/javascript/types/global.d.ts +4 -4
  72. data/stubs/inertia-react-ts/app/javascript/types/index.d.ts +8 -8
  73. data/stubs/inertia-react-ts/config/tailwind.config.js +1 -6
  74. data/stubs/inertia-vue-ts/app/javascript/Components/ApplicationLogo.vue +3 -1
  75. data/stubs/inertia-vue-ts/app/javascript/Components/Dropdown.vue +1 -4
  76. data/stubs/inertia-vue-ts/app/javascript/Components/Modal.vue +3 -13
  77. data/stubs/inertia-vue-ts/app/javascript/Layouts/AuthenticatedLayout.vue +10 -45
  78. data/stubs/inertia-vue-ts/app/javascript/Layouts/GuestLayout.vue +2 -6
  79. data/stubs/inertia-vue-ts/app/javascript/Pages/Auth/ForgotPassword.vue +4 -11
  80. data/stubs/inertia-vue-ts/app/javascript/Pages/Auth/Login.vue +2 -10
  81. data/stubs/inertia-vue-ts/app/javascript/Pages/Auth/Register.vue +1 -5
  82. data/stubs/inertia-vue-ts/app/javascript/Pages/Auth/ResetPassword.vue +2 -22
  83. data/stubs/inertia-vue-ts/app/javascript/Pages/Auth/VerifyEmail.vue +50 -0
  84. data/stubs/inertia-vue-ts/app/javascript/Pages/Dashboard.vue +3 -11
  85. data/stubs/inertia-vue-ts/app/javascript/Pages/Profile/Edit.vue +2 -10
  86. data/stubs/inertia-vue-ts/app/javascript/Pages/Profile/Partials/DeleteUserForm.vue +5 -9
  87. data/stubs/inertia-vue-ts/app/javascript/Pages/Profile/Partials/UpdatePasswordForm.vue +2 -9
  88. data/stubs/inertia-vue-ts/app/javascript/Pages/Profile/Partials/UpdateProfileInformationForm.vue +26 -15
  89. data/stubs/inertia-vue-ts/app/javascript/Pages/Welcome.vue +2 -5
  90. data/stubs/inertia-vue-ts/app/javascript/entrypoints/application.ts +27 -23
  91. data/stubs/inertia-vue-ts/app/javascript/entrypoints/bootstrap.ts +3 -3
  92. data/stubs/inertia-vue-ts/app/javascript/types/global.d.ts +7 -7
  93. data/stubs/inertia-vue-ts/app/javascript/types/index.d.ts +8 -8
  94. data/stubs/inertia-vue-ts/config/tailwind.config.js +1 -6
  95. metadata +14 -2
@@ -21,15 +21,12 @@ export default function ForgotPassword({ status }: { status?: string }) {
21
21
  <GuestLayout>
22
22
  <Head title="Forgot Password" />
23
23
 
24
- <div className="mb-4 text-sm text-gray-600">
25
- Forgot your password? No problem. Just let us know your email address
26
- and we will email you a password reset link that will allow you to
27
- choose a new one.
24
+ <div className="mb-4 text-sm text-gray-600 dark:text-gray-400">
25
+ Forgot your password? No problem. Just let us know your email address and we will email you a password reset
26
+ link that will allow you to choose a new one.
28
27
  </div>
29
28
 
30
- {status && (
31
- <div className="mb-4 font-medium text-sm text-green-600">{status}</div>
32
- )}
29
+ {status && <div className="mb-4 font-medium text-sm text-green-600 dark:text-green-400">{status}</div>}
33
30
 
34
31
  <form onSubmit={submit}>
35
32
  <TextInput
@@ -8,13 +8,7 @@ import TextInput from '@/Components/TextInput'
8
8
  import { Head, Link, useForm } from '@inertiajs/react'
9
9
  import { login_path, password_request_path } from '@/routes'
10
10
 
11
- export default function Login({
12
- status,
13
- canResetPassword,
14
- }: {
15
- status?: string
16
- canResetPassword: boolean
17
- }) {
11
+ export default function Login({ status }: { status?: string }) {
18
12
  const { data, setData, post, processing, errors, reset } = useForm({
19
13
  email: '',
20
14
  password: '',
@@ -37,9 +31,7 @@ export default function Login({
37
31
  <GuestLayout>
38
32
  <Head title="Log in" />
39
33
 
40
- {status && (
41
- <div className="mb-4 font-medium text-sm text-green-600">{status}</div>
42
- )}
34
+ {status && <div className="mb-4 font-medium text-sm text-green-600">{status}</div>}
43
35
 
44
36
  <form onSubmit={submit}>
45
37
  <div>
@@ -77,24 +69,18 @@ export default function Login({
77
69
 
78
70
  <div className="block mt-4">
79
71
  <label className="flex items-center">
80
- <Checkbox
81
- name="remember"
82
- checked={data.remember}
83
- onChange={(e) => setData('remember', e.target.checked)}
84
- />
85
- <span className="ms-2 text-sm text-gray-600">Remember me</span>
72
+ <Checkbox name="remember" checked={data.remember} onChange={(e) => setData('remember', e.target.checked)} />
73
+ <span className="ms-2 text-sm text-gray-600 dark:text-gray-400">Remember me</span>
86
74
  </label>
87
75
  </div>
88
76
 
89
77
  <div className="flex items-center justify-end mt-4">
90
- {canResetPassword && (
91
- <Link
92
- href={password_request_path()}
93
- className="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"
94
- >
95
- Forgot your password?
96
- </Link>
97
- )}
78
+ <Link
79
+ href={password_request_path()}
80
+ className="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"
81
+ >
82
+ Forgot your password?
83
+ </Link>
98
84
 
99
85
  <PrimaryButton className="ms-4" disabled={processing}>
100
86
  Log in
@@ -84,10 +84,7 @@ export default function Register() {
84
84
  </div>
85
85
 
86
86
  <div className="mt-4">
87
- <InputLabel
88
- htmlFor="password_confirmation"
89
- value="Confirm Password"
90
- />
87
+ <InputLabel htmlFor="password_confirmation" value="Confirm Password" />
91
88
 
92
89
  <TextInput
93
90
  id="password_confirmation"
@@ -106,7 +103,7 @@ export default function Register() {
106
103
  <div className="flex items-center justify-end mt-4">
107
104
  <Link
108
105
  href={login_path()}
109
- className="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"
106
+ className="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"
110
107
  >
111
108
  Already registered?
112
109
  </Link>
@@ -31,7 +31,7 @@ export default function ResetPassword({ token }: { token: string }) {
31
31
  <Head title="Reset Password" />
32
32
 
33
33
  <form onSubmit={submit}>
34
- <div className="mt-4">
34
+ <div>
35
35
  <InputLabel htmlFor="password" value="Password" />
36
36
 
37
37
  <TextInput
@@ -49,10 +49,7 @@ export default function ResetPassword({ token }: { token: string }) {
49
49
  </div>
50
50
 
51
51
  <div className="mt-4">
52
- <InputLabel
53
- htmlFor="password_confirmation"
54
- value="Confirm Password"
55
- />
52
+ <InputLabel htmlFor="password_confirmation" value="Confirm Password" />
56
53
 
57
54
  <TextInput
58
55
  type="password"
@@ -0,0 +1,47 @@
1
+ import GuestLayout from '@/Layouts/GuestLayout'
2
+ import PrimaryButton from '@/Components/PrimaryButton'
3
+ import { Head, Link, useForm } from '@inertiajs/react'
4
+ import { FormEventHandler } from 'react'
5
+ import { logout_path, verification_send_path } from '@/routes'
6
+
7
+ export default function VerifyEmail({ status }: { status?: string }) {
8
+ const { post, processing } = useForm({})
9
+
10
+ const submit: FormEventHandler = (e) => {
11
+ e.preventDefault()
12
+
13
+ post(verification_send_path())
14
+ }
15
+
16
+ return (
17
+ <GuestLayout>
18
+ <Head title="Email Verification" />
19
+
20
+ <div className="mb-4 text-sm text-gray-600 dark:text-gray-400">
21
+ Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we
22
+ just emailed to you? If you didn't receive the email, we will gladly send you another.
23
+ </div>
24
+
25
+ {status === 'verification-link-sent' && (
26
+ <div className="mb-4 font-medium text-sm text-green-600 dark:text-green-400">
27
+ A new verification link has been sent to the email address you provided during registration.
28
+ </div>
29
+ )}
30
+
31
+ <form onSubmit={submit}>
32
+ <div className="mt-4 flex items-center justify-between">
33
+ <PrimaryButton disabled={processing}>Resend Verification Email</PrimaryButton>
34
+
35
+ <Link
36
+ href={logout_path()}
37
+ method="post"
38
+ as="button"
39
+ className="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"
40
+ >
41
+ Log Out
42
+ </Link>
43
+ </div>
44
+ </form>
45
+ </GuestLayout>
46
+ )
47
+ }
@@ -6,20 +6,14 @@ export default function Dashboard({ auth }: PageProps) {
6
6
  return (
7
7
  <AuthenticatedLayout
8
8
  user={auth.user}
9
- header={
10
- <h2 className="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
11
- Dashboard
12
- </h2>
13
- }
9
+ header={<h2 className="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">Dashboard</h2>}
14
10
  >
15
11
  <Head title="Dashboard" />
16
12
 
17
13
  <div className="py-12">
18
14
  <div className="max-w-7xl mx-auto sm:px-6 lg:px-8">
19
15
  <div className="bg-white dark:bg-gray-800 overflow-hidden shadow-sm sm:rounded-lg">
20
- <div className="p-6 text-gray-900 dark:text-gray-100">
21
- You're logged in!
22
- </div>
16
+ <div className="p-6 text-gray-900 dark:text-gray-100">You're logged in!</div>
23
17
  </div>
24
18
  </div>
25
19
  </div>
@@ -5,29 +5,29 @@ import UpdateProfileInformationForm from './Partials/UpdateProfileInformationFor
5
5
  import { Head } from '@inertiajs/react'
6
6
  import { PageProps } from '@/types'
7
7
 
8
- export default function Edit({ auth }: PageProps) {
8
+ export default function Edit({
9
+ auth,
10
+ mustVerifyEmail,
11
+ status,
12
+ }: PageProps<{ mustVerifyEmail: boolean; status?: string }>) {
9
13
  return (
10
14
  <AuthenticatedLayout
11
15
  user={auth.user}
12
- header={
13
- <h2 className="font-semibold text-xl text-gray-800 leading-tight">
14
- Profile
15
- </h2>
16
- }
16
+ header={<h2 className="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">Profile</h2>}
17
17
  >
18
18
  <Head title="Profile" />
19
19
 
20
20
  <div className="py-12">
21
21
  <div className="max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6">
22
- <div className="p-4 sm:p-8 bg-white shadow sm:rounded-lg">
23
- <UpdateProfileInformationForm className="max-w-xl" />
22
+ <div className="p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg">
23
+ <UpdateProfileInformationForm mustVerifyEmail={mustVerifyEmail} status={status} className="max-w-xl" />
24
24
  </div>
25
25
 
26
- <div className="p-4 sm:p-8 bg-white shadow sm:rounded-lg">
26
+ <div className="p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg">
27
27
  <UpdatePasswordForm className="max-w-xl" />
28
28
  </div>
29
29
 
30
- <div className="p-4 sm:p-8 bg-white shadow sm:rounded-lg">
30
+ <div className="p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg">
31
31
  <DeleteUserForm className="max-w-xl" />
32
32
  </div>
33
33
  </div>
@@ -8,11 +8,7 @@ import TextInput from '@/Components/TextInput'
8
8
  import { useForm } from '@inertiajs/react'
9
9
  import { profile_destroy_path } from '@/routes'
10
10
 
11
- export default function DeleteUserForm({
12
- className = '',
13
- }: {
14
- className?: string
15
- }) {
11
+ export default function DeleteUserForm({ className = '' }: { className?: string }) {
16
12
  const [confirmingUserDeletion, setConfirmingUserDeletion] = useState(false)
17
13
  const passwordInput = useRef<HTMLInputElement>(null)
18
14
 
@@ -51,12 +47,11 @@ export default function DeleteUserForm({
51
47
  return (
52
48
  <section className={`space-y-6 ${className}`}>
53
49
  <header>
54
- <h2 className="text-lg font-medium text-gray-900">Delete Account</h2>
50
+ <h2 className="text-lg font-medium text-gray-900 dark:text-gray-100">Delete Account</h2>
55
51
 
56
- <p className="mt-1 text-sm text-gray-600">
57
- Once your account is deleted, all of its resources and data will be
58
- permanently deleted. Before deleting your account, please download any
59
- data or information that you wish to retain.
52
+ <p className="mt-1 text-sm text-gray-600 dark:text-gray-400">
53
+ Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your
54
+ account, please download any data or information that you wish to retain.
60
55
  </p>
61
56
  </header>
62
57
 
@@ -64,22 +59,17 @@ export default function DeleteUserForm({
64
59
 
65
60
  <Modal show={confirmingUserDeletion} onClose={closeModal}>
66
61
  <form onSubmit={deleteUser} className="p-6">
67
- <h2 className="text-lg font-medium text-gray-900">
62
+ <h2 className="text-lg font-medium text-gray-900 dark:text-gray-100">
68
63
  Are you sure you want to delete your account?
69
64
  </h2>
70
65
 
71
- <p className="mt-1 text-sm text-gray-600">
72
- Once your account is deleted, all of its resources and data will be
73
- permanently deleted. Please enter your password to confirm you would
74
- like to permanently delete your account.
66
+ <p className="mt-1 text-sm text-gray-600 dark:text-gray-400">
67
+ Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your
68
+ password to confirm you would like to permanently delete your account.
75
69
  </p>
76
70
 
77
71
  <div className="mt-6">
78
- <InputLabel
79
- htmlFor="password"
80
- value="Password"
81
- className="sr-only"
82
- />
72
+ <InputLabel htmlFor="password" value="Password" className="sr-only" />
83
73
 
84
74
  <TextInput
85
75
  id="password"
@@ -7,20 +7,15 @@ import { useForm } from '@inertiajs/react'
7
7
  import { Transition } from '@headlessui/react'
8
8
  import { password_update_path } from '@/routes'
9
9
 
10
- export default function UpdatePasswordForm({
11
- className = '',
12
- }: {
13
- className?: string
14
- }) {
10
+ export default function UpdatePasswordForm({ className = '' }: { className?: string }) {
15
11
  const passwordInput = useRef<HTMLInputElement>(null)
16
12
  const currentPasswordInput = useRef<HTMLInputElement>(null)
17
13
 
18
- const { data, setData, errors, put, reset, processing, recentlySuccessful } =
19
- useForm({
20
- current_password: '',
21
- password: '',
22
- password_confirmation: '',
23
- })
14
+ const { data, setData, errors, put, reset, processing, recentlySuccessful } = useForm({
15
+ current_password: '',
16
+ password: '',
17
+ password_confirmation: '',
18
+ })
24
19
 
25
20
  const updatePassword: FormEventHandler = (e) => {
26
21
  e.preventDefault()
@@ -45,9 +40,9 @@ export default function UpdatePasswordForm({
45
40
  return (
46
41
  <section className={className}>
47
42
  <header>
48
- <h2 className="text-lg font-medium text-gray-900">Update Password</h2>
43
+ <h2 className="text-lg font-medium text-gray-900 dark:text-gray-100">Update Password</h2>
49
44
 
50
- <p className="mt-1 text-sm text-gray-600">
45
+ <p className="mt-1 text-sm text-gray-600 dark:text-gray-400">
51
46
  Ensure your account is using a long, random password to stay secure.
52
47
  </p>
53
48
  </header>
@@ -86,10 +81,7 @@ export default function UpdatePasswordForm({
86
81
  </div>
87
82
 
88
83
  <div>
89
- <InputLabel
90
- htmlFor="password_confirmation"
91
- value="Confirm Password"
92
- />
84
+ <InputLabel htmlFor="password_confirmation" value="Confirm Password" />
93
85
 
94
86
  <TextInput
95
87
  id="password_confirmation"
@@ -113,7 +105,7 @@ export default function UpdatePasswordForm({
113
105
  leave="transition ease-in-out"
114
106
  leaveTo="opacity-0"
115
107
  >
116
- <p className="text-sm text-gray-600">Saved.</p>
108
+ <p className="text-sm text-gray-600 dark:text-gray-400">Saved.</p>
117
109
  </Transition>
118
110
  </div>
119
111
  </form>
@@ -2,24 +2,27 @@ import InputError from '@/Components/InputError'
2
2
  import InputLabel from '@/Components/InputLabel'
3
3
  import PrimaryButton from '@/Components/PrimaryButton'
4
4
  import TextInput from '@/Components/TextInput'
5
- import { useForm, usePage } from '@inertiajs/react'
5
+ import { Link, useForm, usePage } from '@inertiajs/react'
6
6
  import { Transition } from '@headlessui/react'
7
7
  import { FormEventHandler } from 'react'
8
8
  import { PageProps } from '@/types'
9
- import { profile_update_path } from '@/routes'
9
+ import { profile_update_path, verification_send_path } from '@/routes'
10
10
 
11
11
  export default function UpdateProfileInformation({
12
+ mustVerifyEmail,
13
+ status,
12
14
  className = '',
13
15
  }: {
16
+ mustVerifyEmail: boolean
17
+ status?: string
14
18
  className?: string
15
19
  }) {
16
20
  const user = usePage<PageProps>().props.auth.user
17
21
 
18
- const { data, setData, patch, errors, processing, recentlySuccessful } =
19
- useForm({
20
- name: user.name,
21
- email: user.email,
22
- })
22
+ const { data, setData, patch, errors, processing, recentlySuccessful } = useForm({
23
+ name: user.name,
24
+ email: user.email,
25
+ })
23
26
 
24
27
  const submit: FormEventHandler = (e) => {
25
28
  e.preventDefault()
@@ -30,11 +33,9 @@ export default function UpdateProfileInformation({
30
33
  return (
31
34
  <section className={className}>
32
35
  <header>
33
- <h2 className="text-lg font-medium text-gray-900">
34
- Profile Information
35
- </h2>
36
+ <h2 className="text-lg font-medium text-gray-900 dark:text-gray-100">Profile Information</h2>
36
37
 
37
- <p className="mt-1 text-sm text-gray-600">
38
+ <p className="mt-1 text-sm text-gray-600 dark:text-gray-400">
38
39
  Update your account's profile information and email address.
39
40
  </p>
40
41
  </header>
@@ -72,6 +73,28 @@ export default function UpdateProfileInformation({
72
73
  <InputError className="mt-2" message={errors.email} />
73
74
  </div>
74
75
 
76
+ {mustVerifyEmail && user.email_verified_at === null && (
77
+ <div>
78
+ <p className="text-sm mt-2 text-gray-800 dark:text-gray-200">
79
+ Your email address is unverified.
80
+ <Link
81
+ href={verification_send_path()}
82
+ method="post"
83
+ as="button"
84
+ className="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"
85
+ >
86
+ Click here to re-send the verification email.
87
+ </Link>
88
+ </p>
89
+
90
+ {status === 'verification-link-sent' && (
91
+ <div className="mt-2 font-medium text-sm text-green-600 dark:text-green-400">
92
+ A new verification link has been sent to your email address.
93
+ </div>
94
+ )}
95
+ </div>
96
+ )}
97
+
75
98
  <div className="flex items-center gap-4">
76
99
  <PrimaryButton disabled={processing}>Save</PrimaryButton>
77
100
 
@@ -82,7 +105,7 @@ export default function UpdateProfileInformation({
82
105
  leave="transition ease-in-out"
83
106
  leaveTo="opacity-0"
84
107
  >
85
- <p className="text-sm text-gray-600">Saved.</p>
108
+ <p className="text-sm text-gray-600 dark:text-gray-400">Saved.</p>
86
109
  </Transition>
87
110
  </div>
88
111
  </form>
@@ -64,8 +64,7 @@ export default function Welcome({
64
64
  target="_blank"
65
65
  style={{
66
66
  transition: 'background 0.25s cubic-bezier(0.33, 1, 0.68, 1)',
67
- filter:
68
- 'drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08))',
67
+ filter: 'drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08))',
69
68
  }}
70
69
  >
71
70
  <img
@@ -25,11 +25,7 @@ const appName = import.meta.env.VITE_APP_NAME || 'Rails'
25
25
 
26
26
  createInertiaApp({
27
27
  title: (title) => `${title} - ${appName}`,
28
- resolve: (name) =>
29
- resolvePageComponent(
30
- `../Pages/${name}.tsx`,
31
- import.meta.glob('../Pages/**/*.tsx'),
32
- ),
28
+ resolve: (name) => resolvePageComponent(`../Pages/${name}.tsx`, import.meta.glob('../Pages/**/*.tsx')),
33
29
  setup({ el, App, props }) {
34
30
  const root = createRoot(el)
35
31
 
@@ -1,4 +1,4 @@
1
- import axios from 'axios';
2
- window.axios = axios;
1
+ import axios from 'axios'
2
+ window.axios = axios
3
3
 
4
- window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
4
+ window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'
@@ -1,7 +1,7 @@
1
- import { AxiosInstance } from 'axios';
1
+ import { AxiosInstance } from 'axios'
2
2
 
3
3
  declare global {
4
- interface Window {
5
- axios: AxiosInstance;
6
- }
4
+ interface Window {
5
+ axios: AxiosInstance
6
+ }
7
7
  }
@@ -1,12 +1,12 @@
1
1
  export interface User {
2
- id: number;
3
- name: string;
4
- email: string;
5
- email_verified_at: string;
2
+ id: number
3
+ name: string
4
+ email: string
5
+ email_verified_at: string
6
6
  }
7
7
 
8
8
  export type PageProps<T extends Record<string, unknown> = Record<string, unknown>> = T & {
9
- auth: {
10
- user: User;
11
- };
12
- };
9
+ auth: {
10
+ user: User
11
+ }
12
+ }
@@ -3,12 +3,7 @@ import forms from '@tailwindcss/forms'
3
3
 
4
4
  /** @type {import('tailwindcss').Config} */
5
5
  export default {
6
- content: [
7
- './public/*.html',
8
- './app/helpers/**/*.rb',
9
- './app/views/**/*',
10
- './app/javascript/**/*.tsx',
11
- ],
6
+ content: ['./public/*.html', './app/helpers/**/*.rb', './app/views/**/*', './app/javascript/**/*.tsx'],
12
7
 
13
8
  theme: {
14
9
  extend: {
@@ -1,5 +1,7 @@
1
1
  <template>
2
2
  <svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m 237.03985,281.43515 c -1.54085,-2.49315 -1.43016,-32.97159 0.24592,-67.72985 3.02813,-62.79557 2.98467,-63.24086 -6.84044,-70.12264 -5.43834,-3.80913 -16.32202,-6.92574 -24.18594,-6.92574 -22.00734,0 -30.84257,-6.63121 -30.84257,-23.14872 0,-18.460367 5.31742,-22.209117 35.7331,-25.191397 27.97004,-2.74248 30.5663,-4.04226 26.94175,-13.48771 -2.14986,-5.6024 -13.90805,-6.59952 -77.8227,-6.59952 -69.400535,0 -75.177944,-0.58548 -73.8551,-7.48424 1.284851,-6.700534 9.490461,-7.708169 78.36353,-9.622595 42.31063,-1.176095 74.04161,-3.44104 70.51333,-5.033217 -11.28272,-5.091508 -103.7232,-12.917843 -134.65799,-11.40068 l -29.878628,1.465415 -3.171696,17.106837 c -1.744436,9.40876 -4.948521,63.009007 -7.120182,119.111597 -2.277699,58.84196 -5.815243,103.87156 -8.360116,106.41647 -2.4264,2.42639 -7.676475,3.15877 -11.666833,1.62754 -5.877786,-2.25554 -6.747202,-6.22009 -4.579445,-20.88223 1.471667,-9.954 3.74014,-63.32438 5.041047,-118.60085 2.647925,-112.511911 3.2489,-117.857541 13.890324,-123.552663 4.513472,-2.415528 45.033525,-3.067128 100.341569,-1.613517 109.0299,2.86548 110.09891,3.263428 110.09891,40.985371 0,30.923222 -7.28516,39.906492 -35.24013,43.454229 -29.06687,3.68892 -37.46391,6.17185 -37.46391,11.07783 0,2.19365 11.40965,3.98851 25.35478,3.98851 37.65833,0 38.79584,2.06051 38.79584,70.27428 0,31.25825 -1.20855,65.65073 -2.68573,76.42778 -2.59506,18.93304 -11.18137,28.79145 -16.94872,19.45971 z M 102.84208,259.48743 c -5.809371,-2.9396 -13.184926,-10.12819 -16.390123,-15.97462 -8.396565,-15.3158 2.912296,-41.49358 19.494463,-45.12587 20.60401,-4.51326 22.42665,-5.69589 22.42665,-14.55198 0,-6.8018 -2.78507,-8.68766 -12.83013,-8.68766 -16.253558,0 -29.936969,-13.44405 -29.936969,-29.41328 0,-14.42513 5.553783,-19.82093 24.591079,-23.89154 9.82484,-2.1008 13.8993,-5.37975 13.8993,-11.1856 0,-6.50902 -3.05408,-8.21363 -14.71608,-8.21363 -16.019022,0 -24.105594,-7.285117 -14.699611,-13.242787 3.241585,-2.05321 12.812471,-3.76252 21.268621,-3.79858 19.92576,-0.0847 30.60952,11.25947 28.76224,30.540617 -1.22046,12.73879 -3.23695,14.76612 -18.47681,18.57607 -30.922304,7.73057 -36.377959,19.24518 -9.11843,19.24518 22.57064,0 29.1179,7.65172 27.56665,32.21701 l -1.34139,21.24186 -20.81946,5.13821 c -11.45071,2.826 -21.79219,6.1109 -22.981063,7.29978 -4.590664,4.59067 3.475793,15.68791 14.430943,19.85304 16.19851,6.15868 88.0503,3.43548 90.32313,-3.42324 1.28741,-3.88501 -5.33813,-5.34589 -24.24513,-5.34589 -19.38669,0 -26.01664,-1.51819 -26.01664,-5.9575 0,-8.34429 9.63998,-11.14934 38.3165,-11.14934 28.67934,0 35.63045,5.45011 33.61018,26.35253 -0.96086,9.94142 -4.50427,15.66293 -12.05276,19.46151 -14.27136,7.1817 -96.89032,7.20826 -111.06516,0.0342 z m 57.07409,-60.66299 c -4.41463,-11.5043 3.01548,-16.23905 21.50632,-13.70463 20.26375,2.77747 30.64103,-1.74032 26.8271,-11.67922 -1.8078,-4.7111 -8.00515,-6.84671 -19.86838,-6.84671 -19.48707,0 -22.72529,-6.68 -6.27087,-12.93598 25.01034,-9.50892 44.62703,0.19588 44.62703,22.07791 0,17.75258 -8.58709,23.84253 -37.57444,26.6478 -21.20481,2.05209 -27.38199,1.30033 -29.24676,-3.55917 z" />
3
+ <path
4
+ d="m 237.03985,281.43515 c -1.54085,-2.49315 -1.43016,-32.97159 0.24592,-67.72985 3.02813,-62.79557 2.98467,-63.24086 -6.84044,-70.12264 -5.43834,-3.80913 -16.32202,-6.92574 -24.18594,-6.92574 -22.00734,0 -30.84257,-6.63121 -30.84257,-23.14872 0,-18.460367 5.31742,-22.209117 35.7331,-25.191397 27.97004,-2.74248 30.5663,-4.04226 26.94175,-13.48771 -2.14986,-5.6024 -13.90805,-6.59952 -77.8227,-6.59952 -69.400535,0 -75.177944,-0.58548 -73.8551,-7.48424 1.284851,-6.700534 9.490461,-7.708169 78.36353,-9.622595 42.31063,-1.176095 74.04161,-3.44104 70.51333,-5.033217 -11.28272,-5.091508 -103.7232,-12.917843 -134.65799,-11.40068 l -29.878628,1.465415 -3.171696,17.106837 c -1.744436,9.40876 -4.948521,63.009007 -7.120182,119.111597 -2.277699,58.84196 -5.815243,103.87156 -8.360116,106.41647 -2.4264,2.42639 -7.676475,3.15877 -11.666833,1.62754 -5.877786,-2.25554 -6.747202,-6.22009 -4.579445,-20.88223 1.471667,-9.954 3.74014,-63.32438 5.041047,-118.60085 2.647925,-112.511911 3.2489,-117.857541 13.890324,-123.552663 4.513472,-2.415528 45.033525,-3.067128 100.341569,-1.613517 109.0299,2.86548 110.09891,3.263428 110.09891,40.985371 0,30.923222 -7.28516,39.906492 -35.24013,43.454229 -29.06687,3.68892 -37.46391,6.17185 -37.46391,11.07783 0,2.19365 11.40965,3.98851 25.35478,3.98851 37.65833,0 38.79584,2.06051 38.79584,70.27428 0,31.25825 -1.20855,65.65073 -2.68573,76.42778 -2.59506,18.93304 -11.18137,28.79145 -16.94872,19.45971 z M 102.84208,259.48743 c -5.809371,-2.9396 -13.184926,-10.12819 -16.390123,-15.97462 -8.396565,-15.3158 2.912296,-41.49358 19.494463,-45.12587 20.60401,-4.51326 22.42665,-5.69589 22.42665,-14.55198 0,-6.8018 -2.78507,-8.68766 -12.83013,-8.68766 -16.253558,0 -29.936969,-13.44405 -29.936969,-29.41328 0,-14.42513 5.553783,-19.82093 24.591079,-23.89154 9.82484,-2.1008 13.8993,-5.37975 13.8993,-11.1856 0,-6.50902 -3.05408,-8.21363 -14.71608,-8.21363 -16.019022,0 -24.105594,-7.285117 -14.699611,-13.242787 3.241585,-2.05321 12.812471,-3.76252 21.268621,-3.79858 19.92576,-0.0847 30.60952,11.25947 28.76224,30.540617 -1.22046,12.73879 -3.23695,14.76612 -18.47681,18.57607 -30.922304,7.73057 -36.377959,19.24518 -9.11843,19.24518 22.57064,0 29.1179,7.65172 27.56665,32.21701 l -1.34139,21.24186 -20.81946,5.13821 c -11.45071,2.826 -21.79219,6.1109 -22.981063,7.29978 -4.590664,4.59067 3.475793,15.68791 14.430943,19.85304 16.19851,6.15868 88.0503,3.43548 90.32313,-3.42324 1.28741,-3.88501 -5.33813,-5.34589 -24.24513,-5.34589 -19.38669,0 -26.01664,-1.51819 -26.01664,-5.9575 0,-8.34429 9.63998,-11.14934 38.3165,-11.14934 28.67934,0 35.63045,5.45011 33.61018,26.35253 -0.96086,9.94142 -4.50427,15.66293 -12.05276,19.46151 -14.27136,7.1817 -96.89032,7.20826 -111.06516,0.0342 z m 57.07409,-60.66299 c -4.41463,-11.5043 3.01548,-16.23905 21.50632,-13.70463 20.26375,2.77747 30.64103,-1.74032 26.8271,-11.67922 -1.8078,-4.7111 -8.00515,-6.84671 -19.86838,-6.84671 -19.48707,0 -22.72529,-6.68 -6.27087,-12.93598 25.01034,-9.50892 44.62703,0.19588 44.62703,22.07791 0,17.75258 -8.58709,23.84253 -37.57444,26.6478 -21.20481,2.05209 -27.38199,1.30033 -29.24676,-3.55917 z"
5
+ />
4
6
  </svg>
5
7
  </template>
@@ -66,10 +66,7 @@ const open = ref(false)
66
66
  style="display: none"
67
67
  @click="open = false"
68
68
  >
69
- <div
70
- class="rounded-md ring-1 ring-black ring-opacity-5"
71
- :class="contentClasses"
72
- >
69
+ <div class="rounded-md ring-1 ring-black ring-opacity-5" :class="contentClasses">
73
70
  <slot name="content" />
74
71
  </div>
75
72
  </div>
@@ -60,11 +60,7 @@ const maxWidthClass = computed(() => {
60
60
  <template>
61
61
  <Teleport to="body">
62
62
  <Transition leave-active-class="duration-200">
63
- <div
64
- v-show="show"
65
- class="fixed inset-0 overflow-y-auto px-4 py-6 sm:px-0 z-50"
66
- scroll-region
67
- >
63
+ <div v-show="show" class="fixed inset-0 overflow-y-auto px-4 py-6 sm:px-0 z-50" scroll-region>
68
64
  <Transition
69
65
  enter-active-class="ease-out duration-300"
70
66
  enter-from-class="opacity-0"
@@ -73,14 +69,8 @@ const maxWidthClass = computed(() => {
73
69
  leave-from-class="opacity-100"
74
70
  leave-to-class="opacity-0"
75
71
  >
76
- <div
77
- v-show="show"
78
- class="fixed inset-0 transform transition-all"
79
- @click="close"
80
- >
81
- <div
82
- class="absolute inset-0 bg-gray-500 dark:bg-gray-900 opacity-75"
83
- />
72
+ <div v-show="show" class="fixed inset-0 transform transition-all" @click="close">
73
+ <div class="absolute inset-0 bg-gray-500 dark:bg-gray-900 opacity-75" />
84
74
  </div>
85
75
  </Transition>
86
76