feat: `LumeIdentity` flow triggers as a "Sign in with Lume" button
This commit is contained in:
parent
d52236e3ce
commit
f0104c5b61
|
@ -6,6 +6,7 @@ import { SwitchableComponent, SwitchableComponentProvider, useSwitchableComponen
|
||||||
import ComponentList from "./components";
|
import ComponentList from "./components";
|
||||||
import { LumeIdentityContext, Session } from './LumeIdentityContext';
|
import { LumeIdentityContext, Session } from './LumeIdentityContext';
|
||||||
import { LazyMotion, domAnimation } from 'framer-motion';
|
import { LazyMotion, domAnimation } from 'framer-motion';
|
||||||
|
import * as Dialog from '@radix-ui/react-dialog';
|
||||||
|
|
||||||
type Props = {}
|
type Props = {}
|
||||||
|
|
||||||
|
@ -57,11 +58,27 @@ const LumeIdentity: React.FC<Props> = ({ }) => {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// @ditorodev: We should see how we improve this to be more like Google's SSO
|
||||||
|
// contrast is not very good, as im testing on a train with a lot of sunlight
|
||||||
|
// hitting my screen, it is almost impossible to see whats happening the outline
|
||||||
|
// buttons have no contrast
|
||||||
export default () => {
|
export default () => {
|
||||||
const [session, setSession] = React.useState<Session>();
|
const [session, setSession] = React.useState<Session>();
|
||||||
return <LumeIdentityContext.Provider value={{ session, setSession }}>
|
return <LumeIdentityContext.Provider value={{ session, setSession }}>
|
||||||
|
<Dialog.Root>
|
||||||
|
<Dialog.Trigger asChild>
|
||||||
|
<button className='bg-primary text-primary-foreground p-2 px-4 text-sm font-semibold font-mono rounded-md'>
|
||||||
|
Open Lume
|
||||||
|
</button>
|
||||||
|
</Dialog.Trigger>
|
||||||
|
<Dialog.Portal>
|
||||||
|
<Dialog.Overlay className="bg-black/90 data-[state=open]:animate-overlayShow fixed inset-0" />
|
||||||
|
<Dialog.Content className='w-full h-full flex items-center justify-center'>
|
||||||
<SwitchableComponentProvider>
|
<SwitchableComponentProvider>
|
||||||
<LumeIdentity />
|
<LumeIdentity />
|
||||||
</SwitchableComponentProvider>
|
</SwitchableComponentProvider>
|
||||||
|
</Dialog.Content>
|
||||||
|
</Dialog.Portal>
|
||||||
|
</Dialog.Root>
|
||||||
</LumeIdentityContext.Provider>
|
</LumeIdentityContext.Provider>
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue