159 lines
5 KiB
TypeScript
159 lines
5 KiB
TypeScript
import AboutInfoDialog from '@/components/AboutInfoDialog'
|
|
import Donation from '@/components/Donation'
|
|
import { Select, SelectContent, SelectItem, SelectTrigger } from '@/components/ui/select'
|
|
import { LocalizedLanguageNames, TLanguage } from '@/i18n'
|
|
import SecondaryPageLayout from '@/layouts/SecondaryPageLayout'
|
|
import { toRelaySettings, toWallet } from '@/lib/link'
|
|
import { cn } from '@/lib/utils'
|
|
import { useSecondaryPage } from '@/PageManager'
|
|
import { useNostr } from '@/providers/NostrProvider'
|
|
import { useTheme } from '@/providers/ThemeProvider'
|
|
import { SelectValue } from '@radix-ui/react-select'
|
|
import {
|
|
Check,
|
|
ChevronRight,
|
|
Copy,
|
|
Info,
|
|
KeyRound,
|
|
Languages,
|
|
Server,
|
|
SunMoon,
|
|
Wallet
|
|
} from 'lucide-react'
|
|
import { forwardRef, HTMLProps, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
const SettingsPage = forwardRef(({ index }: { index?: number }, ref) => {
|
|
const { t, i18n } = useTranslation()
|
|
const { nsec, ncryptsec } = useNostr()
|
|
const { push } = useSecondaryPage()
|
|
const [language, setLanguage] = useState<TLanguage>(i18n.language as TLanguage)
|
|
const { themeSetting, setThemeSetting } = useTheme()
|
|
const [copiedNsec, setCopiedNsec] = useState(false)
|
|
const [copiedNcryptsec, setCopiedNcryptsec] = useState(false)
|
|
|
|
const handleLanguageChange = (value: TLanguage) => {
|
|
i18n.changeLanguage(value)
|
|
setLanguage(value)
|
|
}
|
|
|
|
return (
|
|
<SecondaryPageLayout ref={ref} index={index} title={t('Settings')}>
|
|
<SettingItem>
|
|
<div className="flex items-center gap-4">
|
|
<Languages />
|
|
<div>{t('Languages')}</div>
|
|
</div>
|
|
<Select defaultValue="en" value={language} onValueChange={handleLanguageChange}>
|
|
<SelectTrigger className="w-48">
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{Object.entries(LocalizedLanguageNames).map(([key, value]) => (
|
|
<SelectItem key={key} value={key}>
|
|
{value}
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
</SettingItem>
|
|
<SettingItem>
|
|
<div className="flex items-center gap-4">
|
|
<SunMoon />
|
|
<div>{t('Theme')}</div>
|
|
</div>
|
|
<Select defaultValue="system" value={themeSetting} onValueChange={setThemeSetting}>
|
|
<SelectTrigger className="w-48">
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="system">{t('System')}</SelectItem>
|
|
<SelectItem value="light">{t('Light')}</SelectItem>
|
|
<SelectItem value="dark">{t('Dark')}</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</SettingItem>
|
|
<SettingItem onClick={() => push(toRelaySettings())}>
|
|
<div className="flex items-center gap-4">
|
|
<Server />
|
|
<div>{t('Relays')}</div>
|
|
</div>
|
|
<ChevronRight />
|
|
</SettingItem>
|
|
<SettingItem onClick={() => push(toWallet())}>
|
|
<div className="flex items-center gap-4">
|
|
<Wallet />
|
|
<div>{t('Wallet')}</div>
|
|
</div>
|
|
<ChevronRight />
|
|
</SettingItem>
|
|
{!!nsec && (
|
|
<SettingItem
|
|
onClick={() => {
|
|
navigator.clipboard.writeText(nsec)
|
|
setCopiedNsec(true)
|
|
setTimeout(() => setCopiedNsec(false), 2000)
|
|
}}
|
|
>
|
|
<div className="flex items-center gap-4">
|
|
<KeyRound />
|
|
<div>{t('Copy private key')} (nsec)</div>
|
|
</div>
|
|
{copiedNsec ? <Check /> : <Copy />}
|
|
</SettingItem>
|
|
)}
|
|
{!!ncryptsec && (
|
|
<SettingItem
|
|
onClick={() => {
|
|
navigator.clipboard.writeText(ncryptsec)
|
|
setCopiedNcryptsec(true)
|
|
setTimeout(() => setCopiedNcryptsec(false), 2000)
|
|
}}
|
|
>
|
|
<div className="flex items-center gap-4">
|
|
<KeyRound />
|
|
<div>{t('Copy private key')} (ncryptsec)</div>
|
|
</div>
|
|
{copiedNcryptsec ? <Check /> : <Copy />}
|
|
</SettingItem>
|
|
)}
|
|
<AboutInfoDialog>
|
|
<SettingItem>
|
|
<div className="flex items-center gap-4">
|
|
<Info />
|
|
<div>{t('About')}</div>
|
|
</div>
|
|
<div className="flex gap-2 items-center">
|
|
<div className="text-muted-foreground">
|
|
v{__APP_VERSION__} ({__GIT_COMMIT__})
|
|
</div>
|
|
<ChevronRight />
|
|
</div>
|
|
</SettingItem>
|
|
</AboutInfoDialog>
|
|
<div className="px-4 mt-4">
|
|
<Donation />
|
|
</div>
|
|
</SecondaryPageLayout>
|
|
)
|
|
})
|
|
SettingsPage.displayName = 'SettingsPage'
|
|
export default SettingsPage
|
|
|
|
const SettingItem = forwardRef<HTMLDivElement, HTMLProps<HTMLDivElement>>(
|
|
({ children, className, ...props }, ref) => {
|
|
return (
|
|
<div
|
|
className={cn(
|
|
'flex clickable justify-between items-center px-4 py-2 h-[52px] rounded-lg [&_svg]:size-4 [&_svg]:shrink-0',
|
|
className
|
|
)}
|
|
{...props}
|
|
ref={ref}
|
|
>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|
|
)
|
|
SettingItem.displayName = 'SettingItem'
|