koel/resources/assets/js/components/screens/UserListScreen.vue

130 lines
3.3 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<section id="usersWrapper">
2022-07-16 15:44:45 +00:00
<ScreenHeader layout="collapsed">
2022-04-15 14:24:30 +00:00
Users
2022-12-02 16:17:37 +00:00
<ControlsToggle v-model="showingControls" />
2022-04-15 14:24:30 +00:00
2022-12-02 16:17:37 +00:00
<template #controls>
<BtnGroup v-if="showingControls || !isPhone" uppercased>
<Btn class="btn-add" green @click="showAddUserForm">
2023-11-10 13:16:06 +00:00
<Icon :icon="faPlus" />
2022-04-15 14:24:30 +00:00
Add
2022-04-15 17:00:08 +00:00
</Btn>
2024-02-25 19:32:53 +00:00
<Btn v-if="canInvite" class="btn-invite" orange @click="showInviteUserForm">Invite</Btn>
2022-04-15 17:00:08 +00:00
</BtnGroup>
2022-04-15 14:24:30 +00:00
</template>
2022-04-15 17:00:08 +00:00
</ScreenHeader>
2022-04-15 14:24:30 +00:00
<div v-koel-overflow-fade class="main-scroll-wrap">
<ul class="users">
<li v-for="user in users" :key="user.id">
2022-12-02 16:17:37 +00:00
<UserCard :user="user" />
</li>
</ul>
2023-08-20 22:35:58 +00:00
<template v-if="prospects.length">
<h2 class="invited-heading" data-testid="prospects-heading">
<i />
<span>Invited</span>
<i />
</h2>
<ul class="users">
<li v-for="user in prospects" :key="user.id">
<UserCard :user="user" />
</li>
</ul>
</template>
2022-04-15 14:24:30 +00:00
</div>
</section>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
2022-07-15 07:23:55 +00:00
import { faPlus } from '@fortawesome/free-solid-svg-icons'
2022-04-15 14:24:30 +00:00
import isMobile from 'ismobilejs'
2023-08-20 22:35:58 +00:00
import { computed, defineAsyncComponent, onMounted, ref, toRef } from 'vue'
2022-04-15 14:24:30 +00:00
import { userStore } from '@/stores'
import { eventBus } from '@/utils'
import {useAuthorization} from '@/composables'
2022-04-15 14:24:30 +00:00
import ScreenHeader from '@/components/ui/ScreenHeader.vue'
import ControlsToggle from '@/components/ui/ScreenControlsToggle.vue'
import UserCard from '@/components/user/UserCard.vue'
2022-04-21 18:39:18 +00:00
const Btn = defineAsyncComponent(() => import('@/components/ui/Btn.vue'))
2022-04-21 16:06:45 +00:00
const BtnGroup = defineAsyncComponent(() => import('@/components/ui/BtnGroup.vue'))
2022-04-15 14:24:30 +00:00
const { currentUser } = useAuthorization()
2023-08-20 22:35:58 +00:00
const allUsers = toRef(userStore.state, 'users')
2024-02-25 19:32:53 +00:00
const users = computed(() => allUsers
.value
.filter(({ is_prospect }) => !is_prospect)
.sort((a, b) => a.id === currentUser.value.id ? -1 : b.id === currentUser.value.id ? 1 : a.name.localeCompare(b.name))
)
2024-02-25 19:32:53 +00:00
2024-01-24 22:39:47 +00:00
const prospects = computed(() => allUsers.value.filter(({ is_prospect }) => is_prospect))
2023-08-20 22:35:58 +00:00
2022-04-15 17:00:08 +00:00
const isPhone = isMobile.phone
const showingControls = ref(false)
2024-02-25 19:32:53 +00:00
const canInvite = window.MAILER_CONFIGURED
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const showAddUserForm = () => eventBus.emit('MODAL_SHOW_ADD_USER_FORM')
2023-08-20 22:35:58 +00:00
const showInviteUserForm = () => eventBus.emit('MODAL_SHOW_INVITE_USER_FORM')
2022-06-10 10:47:46 +00:00
onMounted(async () => await userStore.fetch())
2022-04-15 14:24:30 +00:00
</script>
<style lang="scss" scoped>
.users {
display: flex;
flex-direction: column;
gap: .5rem;
2022-04-15 14:24:30 +00:00
}
2023-08-20 22:35:58 +00:00
.invited-heading {
margin: 2rem 0 1rem;
text-transform: uppercase;
letter-spacing: .1rem;
color: var(--color-text-secondary);
text-align: center;
position: relative;
display: flex;
justify-content: center;
i {
position: relative;
flex: 1;
&::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
background: var(--color-text-secondary);
opacity: .2;
}
}
span {
padding: 0.2rem .8rem;
position: relative;
&::before {
border: 1px solid var(--color-text-secondary);
opacity: .2;
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 5px;
}
}
}
2022-04-15 14:24:30 +00:00
</style>