diff --git a/README.md b/README.md
index 1fa87ab..94099da 100644
--- a/README.md
+++ b/README.md
@@ -49,30 +49,23 @@ To get started with li'l Judd, follow the instructions below.
VITE_DISCORD_CLIENT=your_discord_client_id
VITE_DISCORD_CLIENT_SECRET=your_discord_client_secret
VITE_DISCORD_BOT_TOKEN=your_discord_bot_token
- VITE_DISCORD_BOT_PERMISSIONS=18977581952080
VITE_AUTH_SECRET=your_auth_secret
VITE_DATABASE_URL=your_database_url
```
-Recieve your discord applications client id & secret, as well as the bot token from the [Applications dashboard](https://discord.com/developers/applications/).
+ #### Development
-How to generate your `VITE_AUTH_SECRET` with [`openssl rand -base64 32`](https://authjs.dev/reference/core#secret).
+ Specify `VITE_AUTH_REDIRECT_PROXY_URL` only if necessary, particularly when setting up a reverse proxy to test authentication with callbacks to your development box. [Auth.js Docs Reference](https://authjs.dev/reference/nextjs/#redirectproxyurl)
-Composite your `VITE_DATABASE_URL` like [`postgres://postgres:adminadmin@0.0.0.0:5432/db`](https://orm.drizzle.team/docs/get-started-postgresql#postgresjs).
+ The duplicate `DATABASE_URL` is only needed for Drizzle Studio.
-#### Development
+ ```
+ VITE_AUTH_REDIRECT_PROXY_URL=your_auth_redirect_proxy_url
-Specify `VITE_AUTH_REDIRECT_PROXY_URL` only if necessary, particularly when setting up a reverse proxy to test authentication with callbacks to your development box. [Auth.js Docs Reference](https://authjs.dev/reference/nextjs/#redirectproxyurl)
-
-The duplicate `DATABASE_URL` is only needed for Drizzle Studio.
-
-```
-VITE_AUTH_REDIRECT_PROXY_URL=your_auth_redirect_proxy_url
-
-DATABASE_URL=your_database_url
-```
+ DATABASE_URL=your_database_url
+ ```
### Usage
@@ -127,6 +120,6 @@ If you'd like to contribute to li'l Judd, feel free to open an issue or submit a
## License
-This project is licensed under the [GPL v3 License](LICENSE).
+This project is licensed under the [MIT License](LICENSE).
Happy splatting! 🦑🎮
diff --git a/src/components/NavBar.tsx b/src/components/NavBar.tsx
index fffda85..bdd9cf2 100644
--- a/src/components/NavBar.tsx
+++ b/src/components/NavBar.tsx
@@ -40,7 +40,7 @@ function NavBar() {
-
diff --git a/src/drizzle/schema.ts b/src/drizzle/schema.ts
index 1539c41..419eb92 100644
--- a/src/drizzle/schema.ts
+++ b/src/drizzle/schema.ts
@@ -1,7 +1,6 @@
import type { AdapterAccount } from "@auth/core/adapters";
import { relations } from "drizzle-orm";
import {
- boolean,
integer,
pgTable,
primaryKey,
@@ -72,7 +71,7 @@ export const matchPlannings = pgTable("match_planning", {
roleId: varchar("role_id", { length: 20 }).notNull(),
opponentName: varchar("opponent_name", { length: 100 }).notNull(),
messageId: varchar("message_id", { length: 20 }).notNull(),
- utc_ts: timestamp("utc_ts").notNull(),
+ ts: timestamp("ts").notNull(),
guildId: varchar("guild_id", { length: 20 })
.notNull()
.references(() => guilds.id, { onDelete: "cascade" }),
@@ -108,7 +107,6 @@ export const timePlannings = pgTable("time_planning", {
}),
channelId: varchar("channel_id", { length: 20 }).notNull(),
target_interval: smallint("target_interval").notNull(),
- roles: boolean("roles").notNull(),
isAvailableRoleId: varchar("is_available_role_id", { length: 20 }),
wantsToBeNotifieRoledId: varchar("wants_to_be_notified_role_id", {
length: 20,
diff --git a/src/routes/config/[guildId].tsx b/src/routes/config/[guildId].tsx
index 04501dc..3b18b70 100644
--- a/src/routes/config/[guildId].tsx
+++ b/src/routes/config/[guildId].tsx
@@ -98,10 +98,9 @@ const getPayload = async (
function config() {
const params = useParams();
const navigator = useNavigate();
- let [timezoneRef, setTimezoneRef] = createSignal();
- let [timePlanningRef, setTimePlanningRef] = createSignal();
- let [pingableRolesRef, setPingableRolesRef] =
- createSignal();
+ let timezoneRef: HTMLInputElement;
+ let timePlanningRef: HTMLInputElement;
+ let pingableRolesRef: HTMLInputElement;
const [timezone, setTimezone] = createSignal(guessTZ());
const [payload] = createResource(params.guildId, async (id) => {
@@ -137,21 +136,14 @@ function config() {
),
);
- createEffect(() => {
- const ref = timezoneRef();
- if (!ref) return;
- ref.value = timezone();
- });
- createEffect(() => {
- const ref = timePlanningRef();
- if (!ref) return;
- ref.checked = config.features.timePlanning.enabled;
- });
- createEffect(() => {
- const ref = pingableRolesRef();
- if (!ref) return;
- ref.checked = config.features.timePlanning.pingableRoles;
- });
+ createEffect(() => (timezoneRef.value = timezone()));
+ createEffect(
+ () => (timePlanningRef.checked = config.features.timePlanning.enabled),
+ );
+ createEffect(
+ () =>
+ (pingableRolesRef.checked = config.features.timePlanning.pingableRoles),
+ );
return (
@@ -163,9 +155,8 @@ function config() {
class="guildpfp"
src={
guild()?.icon
- ? `https://cdn.discordapp.com/icons/${guild()?.id}/${
- guild()?.icon
- }.webp?size=240`
+ ? `https://cdn.discordapp.com/icons/${guild()?.id}/${guild()
+ ?.icon}.webp?size=240`
: "https://cdn.discordapp.com/icons/1040502664506646548/bb5a51c4659cf47bdd942bb11e974da7.webp?size=240"
}
alt="Server pfp"
@@ -183,7 +174,7 @@ function config() {
type="text"
list="timezones"
id="timezone"
- ref={(e) => setTimezoneRef(e)}
+ ref={timezoneRef!}
// disabled={!tzNames().find((e) => e === timezone())}
onInput={(e) => setTimezone(e.target.value)}
/>
@@ -220,7 +211,7 @@ function config() {
hidden
type="checkbox"
id="timePlanning"
- ref={(e) => setTimePlanningRef(e)}
+ ref={timePlanningRef!}
onInput={(e) =>
setConfig("features", "timePlanning", "enabled", e.target.checked)
}
@@ -255,7 +246,7 @@ function config() {
hidden
type="checkbox"
id="pingableRoles"
- ref={(e) => setPingableRolesRef(e)}
+ ref={pingableRolesRef!}
onInput={(e) =>
setConfig(
"features",
diff --git a/src/types/env.d.ts b/src/types/env.d.ts
index 9395712..506c5b4 100644
--- a/src/types/env.d.ts
+++ b/src/types/env.d.ts
@@ -1,10 +1,9 @@
///
interface ImportMetaEnv {
- readonly VITE_DISCORD_CLIENT_ID: string;
+ readonly VITE_DISCORD_CLIENT: string;
readonly VITE_DISCORD_CLIENT_SECRET: string;
readonly VITE_DISCORD_BOT_TOKEN: string;
- readonly VITE_DISCORD_BOT_PERMISSIONS: string;
readonly VITE_AUTH_SECRET: string;
readonly VITE_AUTH_REDIRECT_PROXY_URL: string | undefined;
@@ -12,7 +11,6 @@ interface ImportMetaEnv {
readonly VITE_DATABASE_URL: string;
}
-// eslint-disable-next-line no-unused-vars
interface ImportMeta {
readonly env: ImportMetaEnv;
}