feat(dashboard): ignored users page
This commit is contained in:
parent
8ed9b4b143
commit
a22057b9fa
8 changed files with 247 additions and 45 deletions
|
|
@ -56,6 +56,12 @@
|
|||
>
|
||||
Ignored channels
|
||||
</NavLink>
|
||||
<NavLink
|
||||
href="/dash/{data.guild.id}/ignored-users"
|
||||
active={$page.url.pathname === `/dash/${data.guild.id}/ignored-users`}
|
||||
>
|
||||
Ignored users
|
||||
</NavLink>
|
||||
<NavLink
|
||||
href="/dash/{data.guild.id}/key-roles"
|
||||
active={$page.url.pathname === `/dash/${data.guild.id}/key-roles`}
|
||||
|
|
@ -70,7 +76,7 @@
|
|||
</NavLink>
|
||||
</Nav>
|
||||
|
||||
{#if $page.url.pathname === `/dash/${data.guild.id}` || $page.url.pathname === `/dash/${data.guild.id}/ignored-channels`}
|
||||
{#if $page.url.pathname === `/dash/${data.guild.id}`}
|
||||
<Button on:click={save} class="mb-2">Save changes</Button>
|
||||
{/if}
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -82,8 +82,9 @@
|
|||
<h3>Ignored channels</h3>
|
||||
|
||||
<p>
|
||||
Messages from ignored channels will not be logged. Note that this does not
|
||||
ignore channel update events, any changes to the channel will still be logged.
|
||||
Messages from ignored channels will not be logged. Changes to ignored channels
|
||||
will also not be logged, but note that ignored channels being <em>deleted</em>
|
||||
(or new channels being created in an ignored category) will still be logged.
|
||||
</p>
|
||||
|
||||
<div>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,119 @@
|
|||
<script lang="ts">
|
||||
import {
|
||||
Button,
|
||||
Label,
|
||||
ListGroup,
|
||||
ListGroupItem,
|
||||
} from "@sveltestrap/sveltestrap";
|
||||
import type { PageData } from "./$types";
|
||||
import { addToast } from "$lib/toast";
|
||||
import apiFetch, { fastFetch, TOKEN_KEY, type ApiError } from "$lib/api";
|
||||
import Svelecte from "svelecte";
|
||||
|
||||
export let data: PageData;
|
||||
|
||||
let toIgnore: string | null = null;
|
||||
const idRegex = /^\d{15,}$/;
|
||||
|
||||
const addIgnore = async () => {
|
||||
if (!toIgnore) return;
|
||||
|
||||
try {
|
||||
const user = await apiFetch<{ id: string; tag: string }>(
|
||||
"PUT",
|
||||
`/api/guilds/${data.guild.id}/ignored-users/${toIgnore}`,
|
||||
);
|
||||
data.users.push(user);
|
||||
data.users = data.users;
|
||||
addToast({
|
||||
header: "Ignored user",
|
||||
body: `Added ${user.tag} to the list of ignored users.`,
|
||||
});
|
||||
toIgnore = null;
|
||||
} catch (e) {
|
||||
addToast({
|
||||
header: "Error ignoring user",
|
||||
body:
|
||||
(e as ApiError).message || "Unknown error. Please try again later.",
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
const removeIgnore = async (id: string) => {
|
||||
try {
|
||||
await fastFetch(
|
||||
"DELETE",
|
||||
`/api/guilds/${data.guild.id}/ignored-users/${id}`,
|
||||
);
|
||||
const user = data.users.find((u) => u.id === id);
|
||||
const idx = data.users.findIndex((u) => u.id === id);
|
||||
if (idx > -1) data.users.splice(idx, 1);
|
||||
data.users = data.users;
|
||||
addToast({
|
||||
header: "Stopped ignoring user",
|
||||
body: `Removed ${user?.tag || "unknown user " + id} from the list of ignored users.`,
|
||||
});
|
||||
} catch (e) {
|
||||
addToast({
|
||||
header: "Error removing user",
|
||||
body:
|
||||
(e as ApiError).message || "Unknown error. Please try again later.",
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
const fetchProps: RequestInit = {
|
||||
method: "GET",
|
||||
headers: {
|
||||
Authorization: localStorage.getItem(TOKEN_KEY) || "",
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<h3>Ignored users</h3>
|
||||
|
||||
<p>Messages from ignored users will not be logged.</p>
|
||||
|
||||
<div>
|
||||
<Label><strong>Ignore a new user</strong></Label>
|
||||
<Svelecte
|
||||
bind:value={toIgnore}
|
||||
fetch="/api/guilds/{data.guild.id}/users?query=[query]"
|
||||
{fetchProps}
|
||||
multiple={false}
|
||||
searchable={true}
|
||||
creatable={true}
|
||||
labelField="name"
|
||||
valueField="id"
|
||||
creatablePrefix="user with ID "
|
||||
/>
|
||||
{#if toIgnore && !idRegex.test(toIgnore)}
|
||||
<p class="text-danger mt-2">
|
||||
If you're not ignoring a member of your server, you need to give a
|
||||
<strong>user ID</strong>, not their username.
|
||||
</p>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="my-2 d-grid d-md-block">
|
||||
<Button
|
||||
color="primary"
|
||||
on:click={() => addIgnore()}
|
||||
disabled={!toIgnore || !idRegex.test(toIgnore)}
|
||||
>
|
||||
Ignore user
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
<h4>Currently ignored users</h4>
|
||||
|
||||
<ListGroup>
|
||||
{#each data.users as user (user.id)}
|
||||
<ListGroupItem class="d-flex justify-content-between align-items-center">
|
||||
<span>{user.tag} (ID: {user.id})</span>
|
||||
<Button color="link" on:click={() => removeIgnore(user.id)}>
|
||||
Stop ignoring
|
||||
</Button>
|
||||
</ListGroupItem>
|
||||
{/each}
|
||||
</ListGroup>
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
import apiFetch from "$lib/api";
|
||||
|
||||
export const load = async ({ params }) => {
|
||||
const users = await apiFetch<Array<{ id: string; tag: string }>>(
|
||||
"GET",
|
||||
`/api/guilds/${params.guildId}/ignored-users`,
|
||||
);
|
||||
|
||||
return { users };
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue