theodorusclarence / dialog-manager

💬 Dialog Manager using TypeScript, Zustand with Immer, and Tailwind CSS

Home Page:https://dialog.thcl.dev/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dialog Manager

ts-nextjs-tailwind-starter

Code to observe:

Key Points

Initialize the store and add the Alert

import * as React from 'react';

import useDialogStore from '@/lib/zustand/useDialogStore';

import Alert from '@/components/Alert';

export default function Layout({ children }: { children: React.ReactNode }) {
  const { open, state, handleClose, handleSubmit } = useDialogStore();

  return (
    <>
      {children}
      <Alert
        onClose={handleClose}
        onSubmit={handleSubmit}
        open={open}
        options={state}
      />
    </>
  );
}

Call the dialog

import useDialog from '@/hooks/useDialog';

const dialog = useDialog();

dialog({
  title: 'Warning!',
  description: (
    <>
      This is a <strong className='text-yellow-600'>warning dialog</strong>.
    </>
  ),
  catchOnCancel: true,
  submitText: 'Okay',
  variant: 'warning',
})
  .then(() => setStatus('Warning Dialog: Submitted'))
  .catch(() => setStatus('Warning Dialog: Rejected'));

If you don't have to catch reject, you can omit catchOnCancel

Attribution

Code is inspired from https://dev.to/dmtrkovalenko/the-neatest-way-to-handle-alert-dialogs-in-react-1aoe

Check it out if you prefer to use Context API

About

💬 Dialog Manager using TypeScript, Zustand with Immer, and Tailwind CSS

https://dialog.thcl.dev/


Languages

Language:TypeScript 81.2%Language:JavaScript 12.9%Language:CSS 5.3%Language:Shell 0.7%