261 lines
6.7 KiB
Vue
261 lines
6.7 KiB
Vue
<template>
|
|
<BasicModal
|
|
title="افزودن طلبه"
|
|
title-en="Add Seminarian"
|
|
width="95%"
|
|
max-width="42rem"
|
|
min-width="auto"
|
|
:show-close-button="true"
|
|
>
|
|
<template #default="{ close }">
|
|
<div class="add-term-student">
|
|
<div class="add-term-student__search">
|
|
<SvgIcon name="user" :size="18" color="var(--color-thd-gray)" />
|
|
<input
|
|
v-model="searchInput"
|
|
type="text"
|
|
class="add-term-student__search-input"
|
|
placeholder="اسم طلبه را وارد نمایید"
|
|
@input="onSearchInput"
|
|
/>
|
|
</div>
|
|
|
|
<SkeletonLoaderBlock v-if="isLoading" :rows="4" :cols-per-row="1" />
|
|
|
|
<div v-else-if="users.length > 0" class="add-term-student__list">
|
|
<div v-for="user in users" :key="user.id" class="add-term-student__row">
|
|
<div class="add-term-student__main">
|
|
<div v-if="user.avatarUrl" class="add-term-student__avatar">
|
|
<img :src="user.avatarUrl" :alt="userLabel(user)" />
|
|
</div>
|
|
<div v-else class="add-term-student__avatar add-term-student__avatar--placeholder">
|
|
<SvgIcon name="user" :size="20" color="#bcbcbc" />
|
|
</div>
|
|
<div class="add-term-student__text">
|
|
<p class="add-term-student__name">{{ userLabel(user) }}</p>
|
|
<p class="add-term-student__meta">
|
|
<span>{{ user?.province?.name || '—' }}</span>
|
|
<span class="add-term-student__sep">،</span>
|
|
<span>{{ user?.city?.name || '—' }}</span>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<CircleButton
|
|
tooltip="افزودن به ترم"
|
|
bg-color="rgba(104, 104, 104, 0.05)"
|
|
size="2.25rem"
|
|
type="button"
|
|
:loading="pendingId === user.id"
|
|
@click="onAttach(user)"
|
|
>
|
|
<template #icon>
|
|
<SvgIcon name="plus" :size="16" color="var(--color-sec-gray)" />
|
|
</template>
|
|
</CircleButton>
|
|
</div>
|
|
</div>
|
|
|
|
<NoItems v-else title="بدون نتیجه" desc="طلبهای یافت نشد." />
|
|
|
|
<div class="add-term-student__divider" />
|
|
|
|
<div class="add-term-student__footer">
|
|
<BaseButton text="تایید" custom-class="add-term-student__close-btn" @click="close">
|
|
<template #appendIcon>
|
|
<SvgIcon name="arrow-left" :size="18" color="#fff" />
|
|
</template>
|
|
</BaseButton>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</BasicModal>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { computed, ref, watch } from 'vue'
|
|
import useModal from '@/composables/useModal'
|
|
import useDebounce from '@/composables/useDebounce'
|
|
import { useQueryClient } from '@tanstack/vue-query'
|
|
import BasicModal from '@/components/BasicModal.vue'
|
|
import BaseButton from '@/components/BaseButton.vue'
|
|
import SvgIcon from '@/components/icons/SvgIcon.vue'
|
|
import NoItems from '@/components/blocks/NoItems.vue'
|
|
import CircleButton from '@/components/CircleButton.vue'
|
|
import { useAdminUsersListQuery } from '@/services/query/admin-users'
|
|
import SkeletonLoaderBlock from '@/components/blocks/SkeletonLoaderBlock.vue'
|
|
import { adminTermsKeys, useAddAdminTermStudentsMutation } from '@/services/query/admin-terms'
|
|
|
|
defineOptions({ name: 'AddTermStudentModal' })
|
|
|
|
const queryClient = useQueryClient()
|
|
const { getModal } = useModal()
|
|
|
|
const modalData = computed(() => getModal('AddTermStudentModal')?.data ?? {})
|
|
const termId = computed(() => modalData.value.termId ?? null)
|
|
|
|
const searchInput = ref('')
|
|
const searchQuery = ref('')
|
|
const userFilters = computed(() => ({ search: searchQuery.value }))
|
|
const userPagination = ref({ page: 1, perPage: 10 })
|
|
|
|
const { data: usersResponse, isLoading } = useAdminUsersListQuery(userFilters, userPagination)
|
|
const users = computed(() => usersResponse.value?.data ?? [])
|
|
|
|
const userLabel = (user) => user.name.trim() || '—'
|
|
|
|
const onSearchInput = useDebounce(() => {
|
|
searchQuery.value = searchInput.value || ''
|
|
userPagination.value = { ...userPagination.value, page: 1 }
|
|
}, 400)
|
|
|
|
const pendingId = ref(null)
|
|
|
|
const addMutation = useAddAdminTermStudentsMutation()
|
|
|
|
const invalidate = () => queryClient.invalidateQueries({ queryKey: adminTermsKeys.all })
|
|
|
|
const onAttach = async (user) => {
|
|
if (!termId.value) return
|
|
pendingId.value = user.id
|
|
try {
|
|
await addMutation.mutateAsync({
|
|
termId: termId.value,
|
|
payload: { userId: user.id },
|
|
})
|
|
invalidate()
|
|
} finally {
|
|
pendingId.value = null
|
|
}
|
|
}
|
|
|
|
watch(termId, () => {
|
|
searchInput.value = ''
|
|
searchQuery.value = ''
|
|
pendingId.value = null
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.add-term-student {
|
|
width: 100%;
|
|
text-align: start;
|
|
padding: 0.5rem 0.25rem;
|
|
|
|
&__search {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin-block: 1rem;
|
|
padding: 0 1rem;
|
|
height: 2.75rem;
|
|
border: 1px solid var(--color-thd-gray);
|
|
border-radius: 9999px;
|
|
background: #fff;
|
|
}
|
|
|
|
&__search-input {
|
|
flex: 1;
|
|
border: none;
|
|
outline: none;
|
|
background: transparent;
|
|
font-family: var(--font-family-fa);
|
|
font-size: 0.875rem;
|
|
color: #4b4b4b;
|
|
text-align: start;
|
|
|
|
&::placeholder {
|
|
color: var(--color-prim-gray);
|
|
}
|
|
}
|
|
|
|
&__list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
max-height: 22rem;
|
|
overflow-y: auto;
|
|
padding-inline-end: 0.25rem;
|
|
}
|
|
|
|
&__row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.625rem;
|
|
padding: 0.625rem 0.875rem;
|
|
background: rgba(255, 255, 255, 85%);
|
|
border-radius: 0.875rem;
|
|
box-shadow: 0 4px 10px -6px rgba(241, 241, 241, 70%);
|
|
}
|
|
|
|
&__main {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.625rem;
|
|
min-width: 0;
|
|
}
|
|
|
|
&__avatar {
|
|
width: 2.5rem;
|
|
height: 2.5rem;
|
|
border-radius: 9999px;
|
|
overflow: hidden;
|
|
border: 1px solid #eee;
|
|
flex-shrink: 0;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
&--placeholder {
|
|
background: #f5f5f5;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
&__text {
|
|
min-width: 0;
|
|
}
|
|
|
|
&__name {
|
|
font-family: var(--font-family-fa);
|
|
font-size: 0.95rem;
|
|
color: #4b4b4b;
|
|
margin: 0 0 0.25rem;
|
|
}
|
|
|
|
&__meta {
|
|
font-family: var(--font-family-fa);
|
|
font-size: 0.75rem;
|
|
font-weight: 300;
|
|
color: #848484;
|
|
margin: 0;
|
|
}
|
|
|
|
&__sep {
|
|
color: #c4c4c4;
|
|
margin-inline: 0.25rem;
|
|
}
|
|
|
|
&__divider {
|
|
border-block-end: 1px solid var(--color-thd-gray);
|
|
margin-block: 1rem;
|
|
}
|
|
|
|
&__footer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
&__close-btn {
|
|
min-width: 12rem;
|
|
}
|
|
}
|
|
</style>
|