2025-11-25 09:38:07 +00:00
|
|
|
<script>
|
|
|
|
|
import { WEBUI_API_BASE_URL, WEBUI_BASE_URL } from '$lib/constants';
|
2025-11-30 15:33:50 +00:00
|
|
|
import { WEBUI_NAME, config, user as _user, showSidebar } from '$lib/stores';
|
2025-11-25 09:38:07 +00:00
|
|
|
import { goto } from '$app/navigation';
|
|
|
|
|
import { onMount, getContext } from 'svelte';
|
|
|
|
|
|
|
|
|
|
import dayjs from 'dayjs';
|
|
|
|
|
import relativeTime from 'dayjs/plugin/relativeTime';
|
|
|
|
|
import localizedFormat from 'dayjs/plugin/localizedFormat';
|
|
|
|
|
dayjs.extend(relativeTime);
|
|
|
|
|
dayjs.extend(localizedFormat);
|
|
|
|
|
|
|
|
|
|
import { toast } from 'svelte-sonner';
|
2025-11-27 12:27:32 +00:00
|
|
|
import { getChannelMembersById } from '$lib/apis/channels';
|
2025-11-25 09:38:07 +00:00
|
|
|
|
|
|
|
|
import Pagination from '$lib/components/common/Pagination.svelte';
|
|
|
|
|
import Tooltip from '$lib/components/common/Tooltip.svelte';
|
|
|
|
|
|
|
|
|
|
import Badge from '$lib/components/common/Badge.svelte';
|
|
|
|
|
import Plus from '$lib/components/icons/Plus.svelte';
|
|
|
|
|
import Spinner from '$lib/components/common/Spinner.svelte';
|
|
|
|
|
import ProfilePreview from '../Messages/Message/ProfilePreview.svelte';
|
2025-11-30 15:33:50 +00:00
|
|
|
import XMark from '$lib/components/icons/XMark.svelte';
|
2025-11-25 09:38:07 +00:00
|
|
|
|
|
|
|
|
const i18n = getContext('i18n');
|
|
|
|
|
|
|
|
|
|
export let channel = null;
|
2025-11-30 15:33:50 +00:00
|
|
|
|
|
|
|
|
export let onAdd = null;
|
|
|
|
|
export let onRemove = null;
|
|
|
|
|
|
2025-11-27 12:27:32 +00:00
|
|
|
export let search = true;
|
|
|
|
|
export let sort = true;
|
2025-11-25 09:38:07 +00:00
|
|
|
|
|
|
|
|
let page = 1;
|
|
|
|
|
|
|
|
|
|
let users = null;
|
|
|
|
|
let total = null;
|
|
|
|
|
|
|
|
|
|
let query = '';
|
2025-11-25 10:53:31 +00:00
|
|
|
let orderBy = 'name'; // default sort key
|
2025-11-25 09:38:07 +00:00
|
|
|
let direction = 'asc'; // default sort order
|
|
|
|
|
|
|
|
|
|
const setSortKey = (key) => {
|
2025-11-27 12:27:32 +00:00
|
|
|
if (!sort) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-25 09:38:07 +00:00
|
|
|
if (orderBy === key) {
|
|
|
|
|
direction = direction === 'asc' ? 'desc' : 'asc';
|
|
|
|
|
} else {
|
|
|
|
|
orderBy = key;
|
|
|
|
|
direction = 'asc';
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const getUserList = async () => {
|
|
|
|
|
try {
|
2025-11-27 12:27:32 +00:00
|
|
|
const res = await getChannelMembersById(
|
2025-11-25 09:38:07 +00:00
|
|
|
localStorage.token,
|
|
|
|
|
channel.id,
|
|
|
|
|
query,
|
|
|
|
|
orderBy,
|
|
|
|
|
direction,
|
|
|
|
|
page
|
|
|
|
|
).catch((error) => {
|
|
|
|
|
toast.error(`${error}`);
|
|
|
|
|
return null;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (res) {
|
|
|
|
|
users = res.users;
|
|
|
|
|
total = res.total;
|
|
|
|
|
}
|
|
|
|
|
} catch (err) {
|
|
|
|
|
console.error(err);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2025-11-30 15:33:50 +00:00
|
|
|
$: if (
|
|
|
|
|
channel !== null &&
|
|
|
|
|
page !== null &&
|
|
|
|
|
query !== null &&
|
|
|
|
|
orderBy !== null &&
|
|
|
|
|
direction !== null
|
|
|
|
|
) {
|
2025-11-25 09:38:07 +00:00
|
|
|
getUserList();
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
2025-11-25 09:52:03 +00:00
|
|
|
<div class="flex flex-col justify-center">
|
2025-11-25 09:38:07 +00:00
|
|
|
{#if users === null || total === null}
|
|
|
|
|
<div class="my-10">
|
|
|
|
|
<Spinner className="size-5" />
|
|
|
|
|
</div>
|
2025-11-25 09:56:26 +00:00
|
|
|
{:else}
|
2025-11-30 15:33:50 +00:00
|
|
|
<div class="flex items-center justify-between px-2 mb-1">
|
|
|
|
|
<div class="flex gap-1 items-center">
|
|
|
|
|
<span class="text-sm">
|
|
|
|
|
{$i18n.t('Members')}
|
|
|
|
|
</span>
|
|
|
|
|
<span class="text-sm text-gray-500">{total}</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{#if onAdd}
|
|
|
|
|
<div class="">
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
2025-12-10 02:01:39 +00:00
|
|
|
class=" px-3 py-1.5 gap-1 rounded-xl bg-gray-100/50 dark:text-white dark:bg-gray-850/50 text-black transition font-medium text-xs flex items-center justify-center"
|
2025-11-30 15:33:50 +00:00
|
|
|
on:click={onAdd}
|
|
|
|
|
>
|
|
|
|
|
<Plus className="size-3.5 " />
|
|
|
|
|
<span>{$i18n.t('Add Member')}</span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
{/if}
|
|
|
|
|
</div>
|
|
|
|
|
<!-- <hr class="my-1 border-gray-100/5- dark:border-gray-850/50" /> -->
|
|
|
|
|
|
2025-11-27 12:27:32 +00:00
|
|
|
{#if search}
|
2025-11-30 15:33:50 +00:00
|
|
|
<div class="flex gap-1 px-1 mb-1">
|
2025-11-27 12:27:32 +00:00
|
|
|
<div class=" flex w-full space-x-2">
|
2025-11-30 15:33:50 +00:00
|
|
|
<div class="flex flex-1 items-center">
|
2025-11-27 12:27:32 +00:00
|
|
|
<div class=" self-center ml-1 mr-3">
|
|
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
viewBox="0 0 20 20"
|
|
|
|
|
fill="currentColor"
|
|
|
|
|
class="w-4 h-4"
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
fill-rule="evenodd"
|
|
|
|
|
d="M9 3.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM2 9a7 7 0 1112.452 4.391l3.328 3.329a.75.75 0 11-1.06 1.06l-3.329-3.328A7 7 0 012 9z"
|
|
|
|
|
clip-rule="evenodd"
|
|
|
|
|
/>
|
|
|
|
|
</svg>
|
|
|
|
|
</div>
|
|
|
|
|
<input
|
|
|
|
|
class=" w-full text-sm pr-4 py-1 rounded-r-xl outline-hidden bg-transparent"
|
|
|
|
|
bind:value={query}
|
|
|
|
|
placeholder={$i18n.t('Search')}
|
|
|
|
|
/>
|
2025-11-25 09:38:07 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-11-27 12:27:32 +00:00
|
|
|
{/if}
|
2025-11-25 09:56:26 +00:00
|
|
|
|
|
|
|
|
{#if users.length > 0}
|
|
|
|
|
<div class="scrollbar-hidden relative whitespace-nowrap w-full max-w-full">
|
|
|
|
|
<div class=" text-sm text-left text-gray-500 dark:text-gray-400 w-full max-w-full">
|
2025-11-30 15:33:50 +00:00
|
|
|
<!-- <div
|
2025-11-25 09:56:26 +00:00
|
|
|
class="text-xs text-gray-800 uppercase bg-transparent dark:text-gray-200 w-full mb-0.5"
|
2025-11-25 09:38:07 +00:00
|
|
|
>
|
2025-11-25 09:56:26 +00:00
|
|
|
<div
|
2025-11-27 12:27:32 +00:00
|
|
|
class=" border-b-[1.5px] border-gray-50/50 dark:border-gray-800/10 flex items-center justify-between"
|
2025-11-25 09:38:07 +00:00
|
|
|
>
|
2025-11-25 09:56:26 +00:00
|
|
|
<button
|
2025-11-27 12:27:32 +00:00
|
|
|
type="button"
|
2025-11-25 09:56:26 +00:00
|
|
|
class="px-2.5 py-2 cursor-pointer select-none"
|
|
|
|
|
on:click={() => setSortKey('name')}
|
|
|
|
|
>
|
|
|
|
|
<div class="flex gap-1.5 items-center">
|
|
|
|
|
{$i18n.t('Name')}
|
|
|
|
|
|
|
|
|
|
{#if orderBy === 'name'}
|
|
|
|
|
<span class="font-normal"
|
|
|
|
|
>{#if direction === 'asc'}
|
|
|
|
|
<ChevronUp className="size-2" />
|
|
|
|
|
{:else}
|
|
|
|
|
<ChevronDown className="size-2" />
|
|
|
|
|
{/if}
|
|
|
|
|
</span>
|
|
|
|
|
{:else}
|
|
|
|
|
<span class="invisible">
|
2025-11-25 09:38:07 +00:00
|
|
|
<ChevronUp className="size-2" />
|
2025-11-25 09:56:26 +00:00
|
|
|
</span>
|
|
|
|
|
{/if}
|
|
|
|
|
</div>
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<button
|
2025-11-27 12:27:32 +00:00
|
|
|
type="button"
|
2025-11-25 09:56:26 +00:00
|
|
|
class="px-2.5 py-2 cursor-pointer select-none"
|
|
|
|
|
on:click={() => setSortKey('role')}
|
|
|
|
|
>
|
|
|
|
|
<div class="flex gap-1.5 items-center">
|
|
|
|
|
{$i18n.t('Role')}
|
|
|
|
|
|
|
|
|
|
{#if orderBy === 'role'}
|
|
|
|
|
<span class="font-normal"
|
|
|
|
|
>{#if direction === 'asc'}
|
|
|
|
|
<ChevronUp className="size-2" />
|
|
|
|
|
{:else}
|
|
|
|
|
<ChevronDown className="size-2" />
|
|
|
|
|
{/if}
|
|
|
|
|
</span>
|
|
|
|
|
{:else}
|
|
|
|
|
<span class="invisible">
|
2025-11-25 09:38:07 +00:00
|
|
|
<ChevronUp className="size-2" />
|
2025-11-25 09:56:26 +00:00
|
|
|
</span>
|
2025-11-25 09:38:07 +00:00
|
|
|
{/if}
|
|
|
|
|
</div>
|
2025-11-25 09:56:26 +00:00
|
|
|
</button>
|
|
|
|
|
</div>
|
2025-11-30 15:33:50 +00:00
|
|
|
</div> -->
|
2025-11-25 09:56:26 +00:00
|
|
|
<div class="w-full">
|
2025-11-29 17:57:17 +00:00
|
|
|
{#each users as user, userIdx (user.id)}
|
2025-11-25 09:56:26 +00:00
|
|
|
<div class=" dark:border-gray-850 text-xs flex items-center justify-between">
|
2025-11-30 15:33:50 +00:00
|
|
|
<div class="px-2 py-1.5 font-medium text-gray-900 dark:text-white flex-1">
|
2025-11-25 09:56:26 +00:00
|
|
|
<div class="flex items-center gap-2">
|
|
|
|
|
<ProfilePreview {user} side="right" align="center" sideOffset={6}>
|
|
|
|
|
<img
|
|
|
|
|
class="rounded-2xl w-6 h-6 object-cover flex-shrink-0"
|
|
|
|
|
src={`${WEBUI_API_BASE_URL}/users/${user.id}/profile/image`}
|
|
|
|
|
alt="user"
|
|
|
|
|
/>
|
|
|
|
|
</ProfilePreview>
|
|
|
|
|
<Tooltip content={user.email} placement="top-start">
|
|
|
|
|
<div class="font-medium truncate">{user.name}</div>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
|
|
|
|
|
{#if user?.is_active}
|
|
|
|
|
<div>
|
|
|
|
|
<span class="relative flex size-1.5">
|
|
|
|
|
<span
|
|
|
|
|
class="absolute inline-flex h-full w-full animate-ping rounded-full bg-green-400 opacity-75"
|
|
|
|
|
></span>
|
|
|
|
|
<span class="relative inline-flex size-1.5 rounded-full bg-green-500"
|
|
|
|
|
></span>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
{/if}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-11-25 09:38:07 +00:00
|
|
|
|
2025-11-30 15:33:50 +00:00
|
|
|
<div class="px-2 py-1 flex items-center gap-1 translate-y-0.5">
|
|
|
|
|
<div class=" ">
|
2025-11-25 09:56:26 +00:00
|
|
|
<Badge
|
|
|
|
|
type={user.role === 'admin'
|
|
|
|
|
? 'info'
|
|
|
|
|
: user.role === 'user'
|
|
|
|
|
? 'success'
|
|
|
|
|
: 'muted'}
|
|
|
|
|
content={$i18n.t(user.role)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2025-11-30 15:33:50 +00:00
|
|
|
|
|
|
|
|
{#if onRemove}
|
|
|
|
|
<div>
|
|
|
|
|
<button
|
|
|
|
|
class=" rounded-full p-1 hover:bg-gray-100 dark:hover:bg-gray-850 transition disabled:opacity-50 disabled:cursor-not-allowed"
|
|
|
|
|
type="button"
|
|
|
|
|
disabled={user.id === $_user?.id}
|
|
|
|
|
on:click={() => {
|
|
|
|
|
onRemove(user.id);
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<XMark />
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
{/if}
|
2025-11-25 09:38:07 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-11-25 09:56:26 +00:00
|
|
|
{/each}
|
|
|
|
|
</div>
|
2025-11-25 09:38:07 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-11-25 09:56:26 +00:00
|
|
|
{#if total > 30}
|
|
|
|
|
<Pagination bind:page count={total} perPage={30} />
|
|
|
|
|
{/if}
|
|
|
|
|
{:else}
|
|
|
|
|
<div class="text-gray-500 text-xs text-center py-5 px-10">
|
|
|
|
|
{$i18n.t('No users were found.')}
|
|
|
|
|
</div>
|
2025-11-25 09:38:07 +00:00
|
|
|
{/if}
|
|
|
|
|
{/if}
|
|
|
|
|
</div>
|