| <script lang="ts"> |
| import { WEBUI_API_BASE_URL, WEBUI_BASE_URL } from '$lib/constants'; |
| import { WEBUI_NAME, config, user as _user, showSidebar } from '$lib/stores'; |
| 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'; |
| import { getChannelMembersById } from '$lib/apis/channels'; |
| |
| 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'; |
| import XMark from '$lib/components/icons/XMark.svelte'; |
| |
| const i18n = getContext('i18n'); |
| |
| export let channel = null; |
| |
| export let onAdd = null; |
| export let onRemove = null; |
| |
| export let search = true; |
| export let sort = true; |
| |
| let page = 1; |
| |
| let users = null; |
| let total = null; |
| |
| let query = ''; |
| let debounceTimer: ReturnType<typeof setTimeout> | null = null; |
| |
| let orderBy = 'name'; |
| let direction = 'asc'; |
| |
| const setSortKey = (key) => { |
| if (!sort) { |
| return; |
| } |
| |
| if (orderBy === key) { |
| direction = direction === 'asc' ? 'desc' : 'asc'; |
| } else { |
| orderBy = key; |
| direction = 'asc'; |
| } |
| }; |
| |
| const getUserList = async () => { |
| try { |
| const res = await getChannelMembersById( |
| 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); |
| } |
| }; |
| |
| |
| $: if (query !== undefined && channel !== null) { |
| clearTimeout(debounceTimer); |
| debounceTimer = setTimeout(() => { |
| getUserList(); |
| }, 300); |
| } |
| |
| |
| $: if (channel !== null && page && orderBy && direction) { |
| getUserList(); |
| } |
| </script> |
|
|
| <div class="flex flex-col justify-center"> |
| {#if users === null || total === null} |
| <div class="my-10"> |
| <Spinner className="size-5" /> |
| </div> |
| {:else} |
| <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" |
| 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" |
| 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" /> --> |
|
|
| {#if search} |
| <div class="flex gap-1 px-1 mb-1"> |
| <div class=" flex w-full space-x-2"> |
| <div class="flex flex-1 items-center"> |
| <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')} |
| /> |
| </div> |
| </div> |
| </div> |
| {/if} |
|
|
| {#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"> |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| {() => setSortKey('name')} |
| |
| |
| {$i18n.t('Name')} |
| |
| {#if orderBy === 'name'} |
| |
| {#if direction === 'asc'} |
| |
| {:else} |
| |
| {/if} |
| |
| {:else} |
| |
| |
| |
| {/if} |
| |
| |
|
|
| <button |
| type="button" |
| class="px-2.5 py-2 cursor-pointer select-none" |
| on:click={() => setSortKey('role')} |
| > |
| |
| {$i18n.t('Role')} |
| |
| {#if orderBy === 'role'} |
| |
| {#if direction === 'asc'} |
| |
| {:else} |
| |
| {/if} |
| |
| {:else} |
| |
| |
| |
| {/if} |
| </div> |
| </button> |
| </div> |
| </div> --> |
| |
| {#each users as user, userIdx (user.id)} |
| |
| |
| |
| {user}{6} |
| |
| |
| {`${WEBUI_API_BASE_URL}{user.id} |
| |
| |
| |
| {user.email} |
| {user.name} |
| |
| |
| {#if user?.is_active} |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| {/if} |
| </div> |
| </div> |
|
|
| |
| |
| |
| {user.role === 'admin' |
| ? 'info' |
| : user.role === 'user' |
| ? 'success' |
| : 'muted'} |
| {$i18n.t(user.role)} |
| |
| |
| |
| {#if onRemove} |
| |
| |
| |
| |
| {user.id === $_user?.id} |
| {() => { |
| onRemove(user.id); |
| } |
| |
| |
| |
| |
| {/if} |
| </div> |
| </div> |
| {/each} |
| </div> |
| </div> |
| </div> |
|
|
| {#if total > 30} |
| <Pagination bind:page count={total} perPage={30} /> |
| {/if} |
| {:else} |
| |
| {$i18n.t('No users were found.')} |
| |
| {/if} |
| {/if} |
| </div> |
|
|