mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-20 07:44:01 -05:00
218 lines
7.8 KiB
TypeScript
218 lines
7.8 KiB
TypeScript
import {useState} from 'react'
|
|
import {PrivateUser} from 'common/src/user'
|
|
import {useForm} from 'react-hook-form'
|
|
import {Input} from 'web/components/widgets/input'
|
|
import {Col} from 'web/components/layout/col'
|
|
import toast from 'react-hot-toast'
|
|
import {NoSEO} from 'web/components/NoSEO'
|
|
import {UncontrolledTabs} from 'web/components/layout/tabs'
|
|
import {PageBase} from 'web/components/page-base'
|
|
import {Title} from 'web/components/widgets/title'
|
|
import {useRedirectIfSignedOut} from "web/hooks/use-redirect-if-signed-out";
|
|
import {deleteAccount} from "web/lib/util/delete";
|
|
import router from "next/router";
|
|
import {Button} from "web/components/buttons/button";
|
|
import {sendEmailVerification, updateEmail} from 'firebase/auth';
|
|
import {auth} from "web/lib/firebase/users";
|
|
import {NotificationSettings} from "web/components/notifications";
|
|
import ThemeIcon from "web/components/theme-icon";
|
|
import {WithPrivateUser} from "web/components/user/with-user";
|
|
import {sendPasswordReset} from "web/lib/firebase/password";
|
|
import {AboutSettings} from "web/components/about-settings";
|
|
import {LanguagePicker} from "web/components/language/language-picker";
|
|
import {useT} from "web/lib/locale";
|
|
import HiddenProfilesModal from 'web/components/settings/hidden-profiles-modal'
|
|
|
|
export default function NotificationsPage() {
|
|
const t = useT()
|
|
useRedirectIfSignedOut()
|
|
return (
|
|
<PageBase trackPageView={'settings page'} className={'mx-4 mb-4'}>
|
|
<NoSEO/>
|
|
<Title>{t('settings.title', 'Settings')}</Title>
|
|
<UncontrolledTabs
|
|
name={'settings-page'}
|
|
tabs={[
|
|
{title: t('settings.tabs.general', 'General'), content: <GeneralSettings/>},
|
|
{title: t('settings.tabs.notifications', 'Notifications'), content: <NotificationSettings/>},
|
|
{title: t('settings.tabs.about', 'About'), content: <AboutSettings/>},
|
|
]}
|
|
trackingName={'settings page'}
|
|
/>
|
|
</PageBase>
|
|
)
|
|
}
|
|
|
|
export const GeneralSettings = () => (
|
|
<WithPrivateUser>
|
|
{user => <LoadedGeneralSettings privateUser={user}/>}
|
|
</WithPrivateUser>
|
|
)
|
|
|
|
const LoadedGeneralSettings = (props: {
|
|
privateUser: PrivateUser,
|
|
}) => {
|
|
const {privateUser} = props
|
|
|
|
const [isChangingEmail, setIsChangingEmail] = useState(false)
|
|
const [showHiddenProfiles, setShowHiddenProfiles] = useState(false)
|
|
const {register, handleSubmit, formState: {errors}, reset} = useForm<{ newEmail: string }>()
|
|
const t = useT()
|
|
|
|
const user = auth.currentUser
|
|
if (!user) return null
|
|
|
|
const handleDeleteAccount = async () => {
|
|
const confirmed = confirm(t('settings.delete_confirm', "Are you sure you want to delete your profile? This cannot be undone."))
|
|
if (confirmed) {
|
|
toast
|
|
.promise(deleteAccount(), {
|
|
loading: t('settings.delete.loading', 'Deleting account...'),
|
|
success: () => {
|
|
router.push('/')
|
|
return t('settings.delete.success', 'Your account has been deleted.')
|
|
},
|
|
error: () => {
|
|
return t('settings.delete.error', 'Failed to delete account.')
|
|
},
|
|
})
|
|
.catch(() => {
|
|
console.log("Failed to delete account")
|
|
})
|
|
}
|
|
}
|
|
|
|
const changeUserEmail = async (newEmail: string) => {
|
|
if (!user) return
|
|
|
|
try {
|
|
await updateEmail(user, newEmail)
|
|
toast.success(t('settings.email.updated_success', 'Email updated successfully'))
|
|
setIsChangingEmail(false)
|
|
reset()
|
|
// Force a reload to update the UI with the new email
|
|
// window.location.reload()
|
|
} catch (error: any) {
|
|
console.error('Error updating email:', error)
|
|
toast.error(error.message || t('settings.email.update_failed', 'Failed to update email'))
|
|
}
|
|
}
|
|
|
|
const onSubmitEmailChange = (data: { newEmail: string }) => {
|
|
if (!user) return
|
|
if (data.newEmail === user.email) {
|
|
toast.error(t('settings.email.same_as_current', 'New email is the same as current email'))
|
|
return
|
|
}
|
|
changeUserEmail(data.newEmail)
|
|
}
|
|
|
|
|
|
const sendVerificationEmail = async () => {
|
|
if (!privateUser?.email) {
|
|
toast.error(t('settings.email.no_email', 'No email found on your account.'))
|
|
return
|
|
}
|
|
if (!user) {
|
|
toast.error(t('settings.email.must_sign_in', 'You must be signed in to send a verification email.'))
|
|
return
|
|
}
|
|
toast
|
|
.promise(sendEmailVerification(user), {
|
|
loading: t('settings.email.sending', 'Sending verification email...'),
|
|
success: t('settings.email.verification_sent', 'Verification email sent — check your inbox and spam.'),
|
|
error: t('settings.email.verification_failed', 'Failed to send verification email.'),
|
|
})
|
|
.catch(() => {
|
|
console.log("Failed to send verification email")
|
|
})
|
|
}
|
|
|
|
const isEmailVerified = user.emailVerified
|
|
|
|
return <>
|
|
<div className="flex flex-col gap-2 max-w-fit">
|
|
<h3>{t('settings.general.theme', 'Theme')}</h3>
|
|
<ThemeIcon className="h-6 w-6"/>
|
|
|
|
<h3>{t('settings.general.language', 'Language')}</h3>
|
|
<LanguagePicker className={'w-fit min-w-[120px]'}/>
|
|
|
|
<h3>{t('settings.general.people', 'People')}</h3>
|
|
{/*<h5>{t('settings.hidden_profiles.title', 'Hidden profiles')}</h5>*/}
|
|
<Button color={'gray-outline'} onClick={() => setShowHiddenProfiles(true)}>
|
|
{t('settings.hidden_profiles.manage', 'Manage hidden profiles')}
|
|
</Button>
|
|
|
|
<h3>{t('settings.general.account', 'Account')}</h3>
|
|
<h5>{t('settings.general.email', 'Email')}</h5>
|
|
|
|
<Button color={'gray-outline'} onClick={sendVerificationEmail} disabled={!privateUser?.email || isEmailVerified}>
|
|
{isEmailVerified ? t('settings.email.verified', 'Email Verified ✔️') : t('settings.email.send_verification', 'Send verification email')}
|
|
</Button>
|
|
|
|
{!isChangingEmail ? (
|
|
<Button color={'gray-outline'} onClick={() => setIsChangingEmail(true)}>
|
|
{t('settings.email.change', 'Change email address')}
|
|
</Button>
|
|
) : (
|
|
<form onSubmit={handleSubmit(onSubmitEmailChange)} className="flex flex-col gap-2">
|
|
<Col>
|
|
<Input
|
|
type="email"
|
|
placeholder={t('settings.email.new_placeholder', 'New email address')}
|
|
{...register('newEmail', {
|
|
required: 'Email is required',
|
|
pattern: {
|
|
value: /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i,
|
|
message: t('settings.email.invalid', 'Invalid email address'),
|
|
},
|
|
})}
|
|
disabled={!user}
|
|
/>
|
|
{errors.newEmail && (
|
|
<span className="text-red-500 text-sm">
|
|
{errors.newEmail.message === 'Email is required'
|
|
? t('settings.email.required', 'Email is required')
|
|
: errors.newEmail.message}
|
|
</span>
|
|
)}
|
|
</Col>
|
|
<div className="flex gap-2">
|
|
<Button type="submit" color="green">
|
|
{t('settings.action.save', 'Save')}
|
|
</Button>
|
|
<Button
|
|
type="button"
|
|
color="gray"
|
|
onClick={() => {
|
|
setIsChangingEmail(false)
|
|
reset()
|
|
}}
|
|
>
|
|
{t('settings.action.cancel', 'Cancel')}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
)}
|
|
|
|
<h5>{t('settings.general.password', 'Password')}</h5>
|
|
<Button
|
|
onClick={() => sendPasswordReset(privateUser?.email)}
|
|
className="mb-2 max-w-[250px]"
|
|
color={'gray-outline'}
|
|
>
|
|
{t('settings.password.send_reset', 'Send password reset email')}
|
|
</Button>
|
|
|
|
<h5>{t('settings.danger_zone', 'Danger Zone')}</h5>
|
|
<Button color="red" onClick={handleDeleteAccount}>
|
|
{t('settings.delete_account', 'Delete Account')}
|
|
</Button>
|
|
</div>
|
|
|
|
{/* Hidden profiles modal */}
|
|
<HiddenProfilesModal open={showHiddenProfiles} setOpen={setShowHiddenProfiles}/>
|
|
</>
|
|
}
|