import { Client } from "discord.js" import "dotenv/config" import React from "react" import { ReacordDiscordJs } from "../library/main" import { createCommandHandler } from "./command-handler" import { Counter } from "./counter" import { FruitSelect } from "./fruit-select" const client = new Client({ intents: ["GUILDS"], }) const reacord = new ReacordDiscordJs(client) // client.on("ready", async () => { // const now = new Date() // function UptimeCounter() { // const [uptime, setUptime] = React.useState(0) // React.useEffect(() => { // const interval = setInterval(() => { // setUptime(Date.now() - now.getTime()) // }, 5000) // return () => clearInterval(interval) // }, []) // return ( // this bot has been running for {prettyMilliseconds(uptime)} // ) // } // const channelId = "671787605624487941" // const channel = // client.channels.cache.get(channelId) || // (await client.channels.fetch(channelId)) // if (!channel?.isText()) { // throw new Error("channel is not text") // } // reacord.send(channel).render() // }) createCommandHandler(client, [ { name: "counter", description: "shows a counter button", run: (interaction) => { const reply = reacord.reply(interaction) reply.render( reply.destroy()} />) }, }, { name: "select", description: "shows a select", run: (interaction) => { reacord.reply(interaction).render() }, }, ]) await client.login(process.env.TEST_BOT_TOKEN)