refactor(servers): convert delete modal to edit server modal with patch endpoint
This commit is contained in:
parent
be4e10893e
commit
7a5d8051e4
5 changed files with 340 additions and 205 deletions
|
|
@ -1,52 +1,144 @@
|
|||
/**
|
||||
* @file app/api/servers/[serverId]/route.ts
|
||||
* @description API route handler for deleting a server.
|
||||
* @description API route handler for updating and deleting servers.
|
||||
*/
|
||||
|
||||
import { auth } from "@/auth";
|
||||
import { db } from "@/db";
|
||||
import { servers } from "@/db/schema";
|
||||
import { and, eq } from "drizzle-orm";
|
||||
import { eq } from "drizzle-orm";
|
||||
import { revalidatePath } from "next/cache";
|
||||
import { NextResponse } from "next/server";
|
||||
|
||||
/**
|
||||
* Handles DELETE requests to remove a server if the requesting user is the owner.
|
||||
* Handles PATCH requests to update an existing server's name.
|
||||
*
|
||||
* @param {Request} req - The incoming HTTP request.
|
||||
* @param {Object} context - Route parameters context.
|
||||
* @param {Promise<{ serverId: string }>} context.params - Async route parameters containing the `serverId`.
|
||||
* @returns {Promise<NextResponse>} A JSON response with the deleted server data on success, or an appropriate error response.
|
||||
* @async
|
||||
* @function PATCH
|
||||
* @param {Request} req - The incoming HTTP request object containing the updated server name in the body.
|
||||
* @param {Object} context - The route context parameters.
|
||||
* @param {Promise<{ serverId: string }>} context.params - A promise resolving to the route parameters containing the server ID.
|
||||
* @returns {Promise<NextResponse>} A JSON response containing the updated server object or an error message.
|
||||
*/
|
||||
export async function PATCH(
|
||||
req: Request,
|
||||
{ params }: { params: Promise<{ serverId: string }> },
|
||||
) {
|
||||
try {
|
||||
const { serverId } = await params;
|
||||
const session = await auth();
|
||||
|
||||
if (!session?.user?.id) {
|
||||
return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
||||
}
|
||||
|
||||
const body = await req.json().catch(() => null);
|
||||
const name = body?.name;
|
||||
|
||||
// Ensure name is present, valid string type, and not just whitespace
|
||||
if (!name || typeof name !== "string" || !name.trim()) {
|
||||
return NextResponse.json(
|
||||
{ error: "Server name is required and cannot be empty." },
|
||||
{ status: 400 },
|
||||
);
|
||||
}
|
||||
|
||||
const trimmedName = name.trim();
|
||||
|
||||
// Ensure server name stays within allowable character limits
|
||||
if (trimmedName.length > 32) {
|
||||
return NextResponse.json(
|
||||
{ error: "Server name cannot exceed 32 characters." },
|
||||
{ status: 400 },
|
||||
);
|
||||
}
|
||||
|
||||
// Check if the server exists
|
||||
const [existingServer] = await db
|
||||
.select()
|
||||
.from(servers)
|
||||
.where(eq(servers.id, serverId))
|
||||
.limit(1);
|
||||
|
||||
if (!existingServer) {
|
||||
return NextResponse.json({ error: "Server not found." }, { status: 404 });
|
||||
}
|
||||
|
||||
// Check if the user is the owner of the server
|
||||
if (existingServer.ownerId !== session.user.id) {
|
||||
return NextResponse.json(
|
||||
{ error: "You do not have permission to edit this server." },
|
||||
{ status: 403 },
|
||||
);
|
||||
}
|
||||
|
||||
// Update Server
|
||||
const [updatedServer] = await db
|
||||
.update(servers)
|
||||
.set({ name: trimmedName })
|
||||
.where(eq(servers.id, serverId))
|
||||
.returning();
|
||||
|
||||
revalidatePath("/", "layout");
|
||||
return NextResponse.json(updatedServer);
|
||||
} catch (error) {
|
||||
console.error("API Server PATCH error:", error);
|
||||
return NextResponse.json(
|
||||
{ error: "An unexpected internal server error occurred." },
|
||||
{ status: 500 },
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles DELETE requests to remove an existing server.
|
||||
*
|
||||
* @async
|
||||
* @function DELETE
|
||||
* @param {Request} req - The incoming HTTP request object.
|
||||
* @param {Object} context - The route context parameters.
|
||||
* @param {Promise<{ serverId: string }>} context.params - A promise resolving to the route parameters containing the server ID.
|
||||
* @returns {Promise<NextResponse>} A JSON response confirming deletion or returning an error message.
|
||||
*/
|
||||
export async function DELETE(
|
||||
req: Request,
|
||||
{ params }: { params: Promise<{ serverId: string }> },
|
||||
) {
|
||||
try {
|
||||
const { serverId } = await params;
|
||||
const session = await auth();
|
||||
|
||||
if (!session?.user?.id) {
|
||||
return new NextResponse("Unauthorized", { status: 401 });
|
||||
return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
||||
}
|
||||
|
||||
const { serverId } = await params;
|
||||
// Check if the server exists
|
||||
const [existingServer] = await db
|
||||
.select()
|
||||
.from(servers)
|
||||
.where(eq(servers.id, serverId))
|
||||
.limit(1);
|
||||
|
||||
// Delete the server only if the current user is the OWNER
|
||||
const [deletedServer] = await db
|
||||
.delete(servers)
|
||||
.where(
|
||||
and(eq(servers.id, serverId), eq(servers.ownerId, session.user.id)),
|
||||
)
|
||||
.returning();
|
||||
|
||||
if (!deletedServer) {
|
||||
return new NextResponse("Server not found or forbidden", { status: 404 });
|
||||
if (!existingServer) {
|
||||
return NextResponse.json({ error: "Server not found." }, { status: 404 });
|
||||
}
|
||||
|
||||
revalidatePath("/", "layout");
|
||||
return NextResponse.json(deletedServer);
|
||||
// Check if the user is the owner of the server
|
||||
if (existingServer.ownerId !== session.user.id) {
|
||||
return NextResponse.json(
|
||||
{ error: "You do not have permission to delete this server." },
|
||||
{ status: 403 },
|
||||
);
|
||||
}
|
||||
|
||||
// Delete Server
|
||||
await db.delete(servers).where(eq(servers.id, serverId));
|
||||
return NextResponse.json({ success: true });
|
||||
} catch (error) {
|
||||
console.error("[SERVER_DELETE]", error);
|
||||
return new NextResponse("Internal Error", { status: 500 });
|
||||
console.error("API Server DELETE error:", error);
|
||||
return NextResponse.json(
|
||||
{ error: "An unexpected internal server error occurred." },
|
||||
{ status: 500 },
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,20 +1,20 @@
|
|||
/**
|
||||
* @file components/layout/ServerSettingsMenu.tsx
|
||||
* @description Header menu button providing server-level action options like deleting a server.
|
||||
* @description Header button triggering the server overview/settings modal.
|
||||
*/
|
||||
|
||||
"use client";
|
||||
|
||||
import { useState, useRef, useEffect } from "react";
|
||||
import { Settings, Trash2 } from "lucide-react";
|
||||
import { DeleteServerModal } from "@/components/modals/DeleteServerModal";
|
||||
import { useState } from "react";
|
||||
import { Settings } from "lucide-react";
|
||||
import { EditServerModal } from "@/components/modals/EditServerModal";
|
||||
|
||||
/**
|
||||
* Props for the ServerSettingsMenu component.
|
||||
*
|
||||
* @interface ServerSettingsMenuProps
|
||||
* @property {string} serverId - The unique identifier of the server.
|
||||
* @property {string} serverName - The name of the server used for display and verification during deletion.
|
||||
* @property {string} serverName - The display name of the server.
|
||||
*/
|
||||
interface ServerSettingsMenuProps {
|
||||
serverId: string;
|
||||
|
|
@ -22,73 +22,36 @@ interface ServerSettingsMenuProps {
|
|||
}
|
||||
|
||||
/**
|
||||
* Renders a dropdown menu button for server settings, including an option to open the server deletion modal.
|
||||
* Renders a settings button that opens the edit server modal.
|
||||
*
|
||||
* @param {ServerSettingsMenuProps} props - The component props.
|
||||
* @param {string} props.serverId - The unique identifier of the server.
|
||||
* @param {string} props.serverName - The display name of the server.
|
||||
* @returns {JSX.Element} The rendered server settings dropdown menu and modal component.
|
||||
* @returns {JSX.Element} The rendered server settings trigger and modal component.
|
||||
*/
|
||||
export function ServerSettingsMenu({
|
||||
serverId,
|
||||
serverName,
|
||||
}: ServerSettingsMenuProps) {
|
||||
const [isOpen, setIsOpen] = useState(false);
|
||||
const [isDeleteModalOpen, setIsDeleteModalOpen] = useState(false);
|
||||
const menuRef = useRef<HTMLDivElement>(null);
|
||||
|
||||
// Close dropdown when clicking outside
|
||||
useEffect(() => {
|
||||
/**
|
||||
* Handles mouse click events outside of the menu container to close the dropdown.
|
||||
*
|
||||
* @param {MouseEvent} event - The mouse click event object.
|
||||
*/
|
||||
function handleClickOutside(event: MouseEvent) {
|
||||
if (menuRef.current && !menuRef.current.contains(event.target as Node)) {
|
||||
setIsOpen(false);
|
||||
}
|
||||
}
|
||||
document.addEventListener("mousedown", handleClickOutside);
|
||||
return () => document.removeEventListener("mousedown", handleClickOutside);
|
||||
}, []);
|
||||
const [isModalOpen, setIsModalOpen] = useState(false);
|
||||
|
||||
return (
|
||||
<div className="relative" ref={menuRef}>
|
||||
{/* Icon Button */}
|
||||
<>
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => setIsOpen((prev) => !prev)}
|
||||
onClick={() => setIsModalOpen(true)}
|
||||
title="Server Settings"
|
||||
className="p-1.5 rounded-md text-muted hover:text-white hover:bg-surface transition-colors cursor-pointer"
|
||||
>
|
||||
<Settings className="w-5 h-5" />
|
||||
</button>
|
||||
|
||||
{/* Dropdown Menu */}
|
||||
{isOpen && (
|
||||
<div className="absolute right-0 mt-2 w-48 bg-surface border border-surface/50 rounded-xl shadow-xl p-1.5 z-50 animate-in fade-in zoom-in-95 duration-100">
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => {
|
||||
setIsOpen(false);
|
||||
setIsDeleteModalOpen(true);
|
||||
}}
|
||||
className="w-full flex items-center gap-2 px-3 py-2 text-xs font-medium text-rose-500 hover:bg-rose-500/10 rounded-lg transition-colors cursor-pointer"
|
||||
>
|
||||
<Trash2 className="w-4 h-4" />
|
||||
Delete Server
|
||||
</button>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Delete Modal */}
|
||||
<DeleteServerModal
|
||||
isOpen={isDeleteModalOpen}
|
||||
<EditServerModal
|
||||
isOpen={isModalOpen}
|
||||
serverId={serverId}
|
||||
serverName={serverName}
|
||||
onClose={() => setIsDeleteModalOpen(false)}
|
||||
initialName={serverName}
|
||||
onClose={() => setIsModalOpen(false)}
|
||||
/>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,128 +0,0 @@
|
|||
/**
|
||||
* @file components/modals/DeleteServerModal.tsx
|
||||
* @description Confirmation modal for permanently deleting a server.
|
||||
*/
|
||||
|
||||
"use client";
|
||||
|
||||
import { useState } from "react";
|
||||
import { X, Loader2, AlertTriangle } from "lucide-react";
|
||||
|
||||
/**
|
||||
* Properties for the DeleteServerModal component.
|
||||
*
|
||||
* @interface DeleteServerModalProps
|
||||
* @property {boolean} isOpen - Indicates whether the modal dialog is currently visible.
|
||||
* @property {() => void} onClose - Callback function to handle closing the modal dialog.
|
||||
* @property {string} serverId - The unique identifier of the server to be deleted.
|
||||
* @property {string} serverName - The name of the server displayed in the confirmation message.
|
||||
*/
|
||||
interface DeleteServerModalProps {
|
||||
isOpen: boolean;
|
||||
onClose: () => void;
|
||||
serverId: string;
|
||||
serverName: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders a confirmation modal allowing users to permanently delete a server.
|
||||
*
|
||||
* @param {DeleteServerModalProps} props - Component properties.
|
||||
* @returns {JSX.Element | null} The modal component or null if not open.
|
||||
*/
|
||||
export function DeleteServerModal({
|
||||
isOpen,
|
||||
onClose,
|
||||
serverId,
|
||||
serverName,
|
||||
}: DeleteServerModalProps) {
|
||||
const [isLoading, setIsLoading] = useState(false);
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
|
||||
if (!isOpen) return null;
|
||||
|
||||
/**
|
||||
* Sends a DELETE request to remove the server and redirects to the home route upon success.
|
||||
*/
|
||||
const handleDelete = async () => {
|
||||
try {
|
||||
setIsLoading(true);
|
||||
setError(null);
|
||||
|
||||
const response = await fetch(`/api/servers/${serverId}`, {
|
||||
method: "DELETE",
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error("Failed to delete server.");
|
||||
}
|
||||
|
||||
onClose();
|
||||
|
||||
window.location.href = "/";
|
||||
} catch (err: unknown) {
|
||||
setError(err instanceof Error ? err.message : "Something went wrong.");
|
||||
} finally {
|
||||
setIsLoading(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
/* Outer Backdrop */
|
||||
<div
|
||||
onClick={onClose}
|
||||
className="fixed inset-0 z-50 bg-black/70 flex items-center justify-center p-4"
|
||||
>
|
||||
{/* Inner Modal Content */}
|
||||
<div
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
className="bg-surface border border-surface/50 rounded-2xl w-full max-w-md p-6 shadow-2xl relative animate-in fade-in zoom-in-95 duration-150"
|
||||
>
|
||||
<button
|
||||
type="button"
|
||||
onClick={onClose}
|
||||
disabled={isLoading}
|
||||
className="absolute top-4 right-4 text-muted hover:text-white transition-colors cursor-pointer"
|
||||
>
|
||||
<X className="w-5 h-5" />
|
||||
</button>
|
||||
|
||||
<div className="flex items-center gap-3 mb-2">
|
||||
<div className="p-2 bg-rose-500/10 text-rose-500 rounded-xl">
|
||||
<AlertTriangle className="w-6 h-6" />
|
||||
</div>
|
||||
<h2 className="text-xl font-bold text-white">Delete Server</h2>
|
||||
</div>
|
||||
|
||||
<p className="text-sm text-muted mb-6">
|
||||
Are you sure you want to delete{" "}
|
||||
<span className="font-semibold text-white">{serverName}</span>? This
|
||||
action cannot be undone and will permanently remove all channels and
|
||||
messages.
|
||||
</p>
|
||||
|
||||
{error && <p className="text-xs text-rose-400 mb-4">{error}</p>}
|
||||
|
||||
<div className="flex items-center justify-end gap-3">
|
||||
<button
|
||||
type="button"
|
||||
onClick={onClose}
|
||||
disabled={isLoading}
|
||||
className="px-4 py-2 text-sm font-medium text-muted hover:text-white transition-colors cursor-pointer"
|
||||
>
|
||||
Cancel
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
onClick={handleDelete}
|
||||
disabled={isLoading}
|
||||
className="px-5 py-2 bg-rose-600 text-white font-medium text-sm rounded-xl hover:bg-rose-700 transition-all disabled:opacity-50 flex items-center gap-2 cursor-pointer"
|
||||
>
|
||||
{isLoading && <Loader2 className="w-4 h-4 animate-spin" />}
|
||||
Delete Server
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
208
components/modals/EditServerModal.tsx
Normal file
208
components/modals/EditServerModal.tsx
Normal file
|
|
@ -0,0 +1,208 @@
|
|||
/**
|
||||
* @file components/modals/EditServerModal.tsx
|
||||
* @description Modal dialog to edit server settings or delete the server.
|
||||
*/
|
||||
|
||||
"use client";
|
||||
|
||||
import { useState, useEffect } from "react";
|
||||
import { useRouter } from "next/navigation";
|
||||
import { X, Loader2, Trash2 } from "lucide-react";
|
||||
|
||||
/**
|
||||
* Properties for the EditServerModal component.
|
||||
*
|
||||
* @interface EditServerModalProps
|
||||
* @property {boolean} isOpen - Determines whether the modal dialog is currently visible.
|
||||
* @property {() => void} onClose - Callback function triggered to close the modal.
|
||||
* @property {string} serverId - The unique identifier of the server being edited.
|
||||
* @property {string} initialName - The current name of the server.
|
||||
*/
|
||||
interface EditServerModalProps {
|
||||
isOpen: boolean;
|
||||
onClose: () => void;
|
||||
serverId: string;
|
||||
initialName: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders a modal dialog allowing users to modify server properties or delete the server.
|
||||
*
|
||||
* @param {EditServerModalProps} props - The component props.
|
||||
* @param {boolean} props.isOpen - Determines whether the modal dialog is currently visible.
|
||||
* @param {() => void} props.onClose - Callback function triggered to close the modal.
|
||||
* @param {string} props.serverId - The unique identifier of the server.
|
||||
* @param {string} props.initialName - The current name of the server.
|
||||
* @returns {JSX.Element | null} The rendered edit server modal, or null if closed.
|
||||
*/
|
||||
export function EditServerModal({
|
||||
isOpen,
|
||||
onClose,
|
||||
serverId,
|
||||
initialName,
|
||||
}: EditServerModalProps) {
|
||||
const [name, setName] = useState(initialName);
|
||||
const [isLoading, setIsLoading] = useState(false);
|
||||
const [isDeleting, setIsDeleting] = useState(false);
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
|
||||
const router = useRouter();
|
||||
|
||||
useEffect(() => {
|
||||
setName(initialName);
|
||||
}, [initialName]);
|
||||
|
||||
if (!isOpen) return null;
|
||||
|
||||
const isChanged = name.trim() !== initialName;
|
||||
const isValid = name.trim().length > 0;
|
||||
const canSave = isChanged && isValid && !isLoading && !isDeleting;
|
||||
|
||||
/**
|
||||
* Handles the asynchronous update of the server name.
|
||||
*
|
||||
* @async
|
||||
* @function handleUpdate
|
||||
* @param {React.FormEvent} e - The form submission event.
|
||||
* @returns {Promise<void>} Resolves when the server update process completes or fails.
|
||||
*/
|
||||
const handleUpdate = async (e: React.FormEvent) => {
|
||||
e.preventDefault();
|
||||
if (!canSave) return;
|
||||
|
||||
try {
|
||||
setIsLoading(true);
|
||||
setError(null);
|
||||
|
||||
const response = await fetch(`/api/servers/${serverId}`, {
|
||||
method: "PATCH",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({ name: name.trim() }),
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error("Error updating the server.");
|
||||
}
|
||||
|
||||
router.refresh();
|
||||
onClose();
|
||||
} catch (err: unknown) {
|
||||
setError(err instanceof Error ? err.message : "Something went wrong.");
|
||||
} finally {
|
||||
setIsLoading(false);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Handles the asynchronous deletion of the server and redirects the user to the home page.
|
||||
*
|
||||
* @async
|
||||
* @function handleDelete
|
||||
* @returns {Promise<void>} Resolves when the server deletion process completes or fails.
|
||||
*/
|
||||
const handleDelete = async () => {
|
||||
if (isDeleting || isLoading) return;
|
||||
|
||||
try {
|
||||
setIsDeleting(true);
|
||||
setError(null);
|
||||
|
||||
const response = await fetch(`/api/servers/${serverId}`, {
|
||||
method: "DELETE",
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error("Error deleting the server.");
|
||||
}
|
||||
|
||||
onClose();
|
||||
window.location.href = "/";
|
||||
} catch (err: unknown) {
|
||||
setError(err instanceof Error ? err.message : "Something went wrong.");
|
||||
} finally {
|
||||
setIsDeleting(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div
|
||||
onClick={onClose}
|
||||
className="fixed inset-0 z-50 bg-black/70 flex items-center justify-center p-4"
|
||||
>
|
||||
<div
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
className="bg-surface border border-surface/50 rounded-2xl w-full max-w-md p-6 shadow-2xl relative animate-in fade-in zoom-in-95 duration-150"
|
||||
>
|
||||
<button
|
||||
type="button"
|
||||
onClick={onClose}
|
||||
disabled={isLoading || isDeleting}
|
||||
className="absolute top-4 right-4 text-muted hover:text-white transition-colors cursor-pointer"
|
||||
>
|
||||
<X className="w-5 h-5" />
|
||||
</button>
|
||||
|
||||
<h2 className="text-xl font-bold text-white mb-1">Edit Server</h2>
|
||||
<p className="text-sm text-muted mb-6">
|
||||
Change server details or delete this server.
|
||||
</p>
|
||||
|
||||
<form onSubmit={handleUpdate} className="space-y-4">
|
||||
<div>
|
||||
<label className="block text-xs font-semibold text-muted uppercase tracking-wider mb-2">
|
||||
Server Name
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
required
|
||||
value={name}
|
||||
maxLength={32}
|
||||
onChange={(e) => setName(e.target.value)}
|
||||
placeholder="server-name"
|
||||
disabled={isLoading || isDeleting}
|
||||
autoFocus
|
||||
className="w-full bg-background border border-surface/80 rounded-xl px-3.5 py-2.5 text-sm text-white placeholder:text-muted focus:outline-none focus:ring-2 focus:ring-accent transition-all disabled:opacity-50"
|
||||
/>
|
||||
</div>
|
||||
|
||||
{error && <p className="text-xs text-red-400 mt-2">{error}</p>}
|
||||
|
||||
<div className="flex items-center justify-between pt-4">
|
||||
<button
|
||||
type="button"
|
||||
onClick={handleDelete}
|
||||
disabled={isLoading || isDeleting}
|
||||
className="flex items-center gap-1.5 text-xs font-semibold text-red-400 hover:text-red-300 transition-colors cursor-pointer disabled:opacity-50"
|
||||
>
|
||||
{isDeleting ? (
|
||||
<Loader2 className="w-4 h-4 animate-spin" />
|
||||
) : (
|
||||
<Trash2 className="w-4 h-4" />
|
||||
)}
|
||||
Delete Server
|
||||
</button>
|
||||
|
||||
<div className="flex items-center gap-3">
|
||||
<button
|
||||
type="button"
|
||||
onClick={onClose}
|
||||
disabled={isLoading || isDeleting}
|
||||
className="px-4 py-2 text-sm font-medium text-muted hover:text-white transition-colors cursor-pointer"
|
||||
>
|
||||
Cancel
|
||||
</button>
|
||||
<button
|
||||
type="submit"
|
||||
disabled={!canSave}
|
||||
className="px-5 py-2 bg-accent text-white font-medium text-sm rounded-xl hover:bg-accent/90 transition-all disabled:opacity-50 flex items-center gap-2 cursor-pointer"
|
||||
>
|
||||
{isLoading && <Loader2 className="w-4 h-4 animate-spin" />}
|
||||
Save
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
@ -56,9 +56,9 @@ export const users = pgTable("users", {
|
|||
*/
|
||||
export const servers = pgTable("servers", {
|
||||
id: uuid("id").primaryKey().defaultRandom(),
|
||||
name: text("name").notNull(),
|
||||
name: varchar("name", { length: 32 }).notNull(),
|
||||
color: varchar("color", { length: 50 }).default("bg-indigo-500").notNull(),
|
||||
inviteCode: text("invite_code").notNull().unique(),
|
||||
inviteCode: varchar("invite_code", { length: 20 }).notNull().unique(),
|
||||
ownerId: uuid("owner_id")
|
||||
.references(() => users.id, { onDelete: "cascade" })
|
||||
.notNull(),
|
||||
|
|
|
|||
Loading…
Reference in a new issue