* feat: implement prefs -> credentials section UI (w/o backend integration) * feat: implement credentials information on Prefs -> Account pane - implement email changing UI (w/o backend integration) - implement password changing UI and reuse existing change password logic - replace 2FA dialog with shared one - implement React hook for preventing window refresh * fix: provide correct types * refactor: reuse styles from stylekit, rename components and create enum for input types * refactor: update default exports to named ones, correct texts * chore: remove unnecessary depenedency * chore: yarn.lock without unnecessary packages * Revert "chore: yarn.lock without unnecessary packages" This reverts commit 64aa75e8408b06884d6e7383180292a4a9a3e8ad.
59 lines
1.9 KiB
TypeScript
59 lines
1.9 KiB
TypeScript
import { FunctionComponent } from 'preact';
|
|
import { AlertDialog, AlertDialogDescription, AlertDialogLabel } from '@node_modules/@reach/alert-dialog';
|
|
import { useRef } from '@node_modules/preact/hooks';
|
|
import { IconButton } from '@/components/IconButton';
|
|
|
|
export const ModalDialog: FunctionComponent = ({ children }) => {
|
|
const ldRef = useRef<HTMLButtonElement>();
|
|
|
|
return (
|
|
<AlertDialog leastDestructiveRef={ldRef}>
|
|
{/* sn-component is focusable by default, but doesn't stretch to child width
|
|
resulting in a badly focused dialog. Utility classes are not available
|
|
at the sn-component level, only below it. tabIndex -1 disables focus
|
|
and enables it on the child component */}
|
|
<div tabIndex={-1} className="sn-component">
|
|
<div
|
|
tabIndex={0}
|
|
className="w-160 bg-default rounded shadow-overlay focus:padded-ring-info"
|
|
>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
</AlertDialog>
|
|
);
|
|
};
|
|
|
|
export const ModalDialogLabel: FunctionComponent<{
|
|
closeDialog: () => void;
|
|
}> = ({ children, closeDialog }) => (
|
|
<AlertDialogLabel className="">
|
|
<div className="px-4 pt-4 pb-3 flex flex-row">
|
|
<div className="flex-grow color-black text-lg font-bold">
|
|
{children}
|
|
</div>
|
|
<IconButton
|
|
className="color-grey-1 h-5 w-5"
|
|
icon="close"
|
|
onClick={() => closeDialog()}
|
|
/>
|
|
</div>
|
|
<hr className="h-1px bg-border no-border m-0" />
|
|
</AlertDialogLabel>
|
|
);
|
|
|
|
export const ModalDialogDescription: FunctionComponent = ({ children }) => (
|
|
<AlertDialogDescription className="px-4 py-4">
|
|
{children}
|
|
</AlertDialogDescription>
|
|
);
|
|
|
|
export const ModalDialogButtons: FunctionComponent = ({ children }) => (
|
|
<>
|
|
<hr className="h-1px bg-border no-border m-0" />
|
|
<div className="px-4 py-4 flex flex-row justify-end gap-3">{children}</div>
|
|
</>
|
|
);
|
|
|
|
export default ModalDialog;
|