Spaces:
Sleeping
Sleeping
File size: 4,765 Bytes
05c5ed5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | "use client";
import { generateUUID } from "lib/utils";
import { ReactNode, useState } from "react";
import { createRoot } from "react-dom/client";
import { Button } from "ui/button";
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
} from "ui/dialog";
import { Textarea } from "ui/textarea";
type Alert = {
title?: ReactNode;
description: ReactNode;
};
const createContainer = () => {
const container = document.createElement("div");
container.id = generateUUID();
document.body.appendChild(container);
return container;
};
export const notify = {
component({
children,
className,
}: { children: ReactNode; className?: string }) {
return new Promise<void>((resolve) => {
const container = createContainer();
const root = createRoot(container);
const close = () => {
root.unmount();
container.remove();
resolve();
};
root.render(
<Dialog open onOpenChange={close}>
<DialogContent className={className}>
<DialogHeader className="hidden">
<DialogTitle></DialogTitle>
<DialogDescription></DialogDescription>
</DialogHeader>
{children}
</DialogContent>
</Dialog>,
);
});
},
alert(alert: Alert) {
return new Promise<void>((resolve) => {
const container = createContainer();
const root = createRoot(container);
const close = () => {
root.unmount();
container.remove();
resolve();
};
root.render(
<Dialog open onOpenChange={close}>
<DialogContent>
<DialogHeader>
<DialogTitle>{alert.title}</DialogTitle>
<DialogDescription>{alert.description}</DialogDescription>
</DialogHeader>
<DialogFooter>
<Button variant={"ghost"} onClick={close}>
Confirm
</Button>
</DialogFooter>
</DialogContent>
</Dialog>,
);
});
},
confirm: (confirm: Alert & { okText?: string; cancelText?: string }) => {
return new Promise<boolean>((resolve) => {
const container = createContainer();
const root = createRoot(container);
const close = () => {
root.unmount();
container.remove();
};
const ok = () => {
resolve(true);
close();
};
const cancel = () => {
resolve(false);
close();
};
function Component() {
return (
<Dialog open onOpenChange={cancel}>
<DialogContent>
<DialogHeader>
<DialogTitle>{confirm.title}</DialogTitle>
<DialogDescription className="whitespace-pre-wrap">
{confirm.description}
</DialogDescription>
</DialogHeader>
<DialogFooter>
<Button variant={"ghost"} onClick={cancel}>
{confirm.cancelText || "Cancel"}
</Button>
<Button variant={"secondary"} onClick={ok}>
{confirm.okText || "Confirm"}
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
);
}
root.render(<Component />);
});
},
prompt: (prompt: Alert) => {
return new Promise<string>((resolve) => {
const container = createContainer();
const root = createRoot(container);
const close = (text: string = "") => {
root.unmount();
container.remove();
resolve(text);
};
const Component = () => {
const [text, setText] = useState("");
return (
<Dialog open onOpenChange={() => close()}>
<DialogContent>
<DialogHeader>
<DialogTitle>{prompt.title}</DialogTitle>
<DialogDescription asChild>
{prompt.description}
</DialogDescription>
<Textarea
className="resize-none"
value={text}
onChange={(e) => setText(e.target.value)}
/>
</DialogHeader>
<DialogFooter>
<Button variant={"ghost"} onClick={() => close()}>
Cancel
</Button>
<Button
disabled={!text.trim()}
variant={"secondary"}
onClick={() => close(text)}
>
Confirm
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
);
};
root.render(<Component />);
});
},
};
|