add Nostr-login package #217

Merged
enes merged 20 commits from nostr-login-9-30 into staging 2024-10-09 08:54:33 +00:00
Showing only changes of commit 67d545de2f - Show all commits

View File

@ -10,9 +10,14 @@ import { launch as launchNostrLoginDialog } from 'nostr-login'
import { Container } from '../../../components/Container' import { Container } from '../../../components/Container'
import PeopleIcon from '@mui/icons-material/People' import PeopleIcon from '@mui/icons-material/People'
import ImportExportIcon from '@mui/icons-material/ImportExport' import ImportExportIcon from '@mui/icons-material/ImportExport'
import { useAppSelector } from '../../../hooks/store'
import { NostrLoginAuthMethod } from '../../../store/auth/types'
export const NostrLoginPage = () => { export const NostrLoginPage = () => {
const theme = useTheme() const theme = useTheme()
const nostrLoginAuthMethod = useAppSelector(
(state) => state.auth?.nostrLoginAuthMethod
)
return ( return (
<Container> <Container>
@ -50,21 +55,23 @@ export const NostrLoginPage = () => {
}} }}
/> />
</ListItemButton> </ListItemButton>
<ListItemButton {nostrLoginAuthMethod === NostrLoginAuthMethod.Local && (
onClick={() => { <ListItemButton
launchNostrLoginDialog('import') onClick={() => {
}} launchNostrLoginDialog('import')
>
<ListItemIcon>
<ImportExportIcon />
</ListItemIcon>
<ListItemText
primary={'Import / Export Keys'}
sx={{
color: theme.palette.text.primary
}} }}
/> >
</ListItemButton> <ListItemIcon>
<ImportExportIcon />
</ListItemIcon>
<ListItemText
primary={'Import / Export Keys'}
sx={{
color: theme.palette.text.primary
}}
/>
</ListItemButton>
)}
</List> </List>
</Container> </Container>
) )