Files
Mace-AIO-Discord-Bot---With…/dashboard/components/dashboard/vanityrole-form.tsx
TheOnlyMace b4110c3d66
Some checks failed
CI / Bot (Python) (push) Failing after 49s
CI / Dashboard (Next.js) (push) Failing after 11s
Update project configuration files, and API routes accordingly. Add SQLite runtime file ignores to .gitignore for better file management.
2026-07-21 17:11:38 +02:00

199 lines
8.2 KiB
TypeScript

/**
* ╔══════════════════════════════════════════════════════════════════╗
* ║ ║
* ║ +-+-+-+-+-+-+-+-+ ║
* ║ |H|e|x|a|H|o|s|t| ║
* ║ +-+-+-+-+-+-+-+-+ ║
* ║ ║
* ║ © 2026 HexaHost — All Rights Reserved ║
* ║ ║
* ║ discord ── https://discord.gg/hexahost ║
* ║ github ── https://github.com/theoneandonlymace ║
* ║ ║
* ╚══════════════════════════════════════════════════════════════════╝
*/
"use client";
import React, { useState } from "react";
import { Link2, Trash2, Plus, RefreshCcw, Save } from "lucide-react";
import { toast } from "sonner";
import { api } from "@/lib/api";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
import { VanityRoleSetup, DiscordChannel } from "@/types/api";
interface VanityRoleFormProps {
initialSetups: VanityRoleSetup[];
channels: DiscordChannel[];
roles: any[];
guildId: string;
}
export function VanityRoleForm({ initialSetups, channels, roles, guildId }: VanityRoleFormProps) {
const [setups, setSetups] = useState<VanityRoleSetup[]>(initialSetups);
const [saving, setSaving] = useState(false);
const textChannels = channels.filter(c => c.type === "0" || c.type === "text" || !c.type); // ensure text channels
const [newVanity, setNewVanity] = useState("");
const [newRole, setNewRole] = useState<string | null>(null);
const [newChannel, setNewChannel] = useState<string | null>(null);
const handleCreate = async () => {
if (!newVanity || !newRole || !newChannel) {
toast.error("Please fill in all fields (vanity, role, channel).");
return;
}
setSaving(true);
try {
await api.addVanityRole(guildId, {
vanity: newVanity,
role_id: newRole,
log_channel_id: newChannel
});
setSetups([...setups, { vanity: newVanity, role_id: newRole, log_channel_id: newChannel }]);
setNewVanity("");
setNewRole(null);
setNewChannel(null);
toast.success("Vanity role setup added!");
} catch (err) {
toast.error("Failed to add vanity role setup.");
} finally {
setSaving(false);
}
};
const handleDelete = async (vanity: string) => {
setSaving(true);
try {
await api.deleteVanityRole(guildId, vanity);
setSetups(setups.filter(s => s.vanity !== vanity));
toast.success("Vanity role setup deleted.");
} catch (err) {
toast.error("Failed to delete vanity role setup.");
} finally {
setSaving(false);
}
};
return (
<div className="space-y-8">
{/* List Existing Ones */}
<div className="bg-[#141B2D] border border-slate-800 rounded-3xl shadow-xl p-8">
<h3 className="text-xl font-bold text-white mb-6">Active Vanity Roles</h3>
{setups.length === 0 ? (
<div className="flex flex-col items-center justify-center py-10 text-slate-500">
<Link2 className="h-12 w-12 mb-4 opacity-50 bg-slate-800 p-2 rounded-xl" />
<p>No vanity roles configured yet.</p>
</div>
) : (
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{setups.map((setup, idx) => {
const r = roles.find(ro => ro.id.toString() === setup.role_id?.toString());
const c = channels.find(ch => ch.id.toString() === setup.log_channel_id?.toString());
return (
<div key={idx} className="bg-slate-900/50 p-6 rounded-2xl border border-slate-800 relative group">
<div className="flex items-center justify-between mb-4">
<h4 className="font-bold text-lg text-primary">{setup.vanity}</h4>
<Button
variant="destructive"
size="icon"
onClick={() => handleDelete(setup.vanity)}
disabled={saving}
className="opacity-0 group-hover:opacity-100 transition-opacity"
>
<Trash2 className="h-4 w-4" />
</Button>
</div>
<div className="space-y-2 text-sm">
<div className="flex items-center gap-2">
<span className="text-slate-400">Role:</span>
<span className="text-white font-medium">
{r ? r.name : setup.role_id}
</span>
</div>
<div className="flex items-center gap-2">
<span className="text-slate-400">Log Channel:</span>
<span className="text-white font-medium">
{c ? `#${c.name}` : setup.log_channel_id}
</span>
</div>
</div>
</div>
);
})}
</div>
)}
</div>
{/* Add New Setup */}
<div className="bg-[#141B2D] border border-slate-800 rounded-3xl shadow-xl p-8">
<h3 className="text-xl font-bold text-white mb-6">Add New Vanity Role</h3>
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
<div className="space-y-3">
<label className="text-sm font-bold text-slate-300">Vanity Code</label>
<Input
value={newVanity}
onChange={(e) => setNewVanity(e.target.value)}
placeholder="e.g. zyx"
className="h-12 bg-slate-900 border-slate-800"
/>
</div>
<div className="space-y-3">
<label className="text-sm font-bold text-slate-300">Reward Role</label>
<Select
value={newRole || ""}
onValueChange={(val) => setNewRole(val)}
>
<SelectTrigger className="w-full h-12 bg-slate-900 border-slate-800 text-left">
<SelectValue placeholder="Select a role..." />
</SelectTrigger>
<SelectContent className="bg-slate-900 border-slate-800">
{roles.map((r) => (
<SelectItem key={r.id} value={r.id.toString()} className="focus:bg-slate-800">
{r.name}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
<div className="space-y-3">
<label className="text-sm font-bold text-slate-300">Log Channel</label>
<Select
value={newChannel || ""}
onValueChange={(val) => setNewChannel(val)}
>
<SelectTrigger className="w-full h-12 bg-slate-900 border-slate-800 text-left">
<SelectValue placeholder="Select log channel..." />
</SelectTrigger>
<SelectContent className="bg-slate-900 border-slate-800">
{textChannels.map((c) => (
<SelectItem key={c.id} value={c.id.toString()} className="focus:bg-slate-800">
# {c.name}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
</div>
<Button
onClick={handleCreate}
disabled={saving}
className="w-full h-14 mt-8 font-bold gap-2 text-base"
>
{saving ? <RefreshCcw className="h-5 w-5 animate-spin" /> : <Plus className="h-5 w-5" />}
Add Vanity Configuration
</Button>
</div>
</div>
);
}