koel/resources/assets/js/components/user/UserCard.vue

114 lines
2.8 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<article :class="{ me: isCurrentUser }" class="user-card" data-testid="user-card">
<img :alt="`${user.name}'s avatar`" :src="user.avatar" height="80" width="80">
<main>
<h1>
<span class="name">{{ user.name }}</span>
2022-07-15 07:23:55 +00:00
<icon v-if="isCurrentUser" :icon="faCircleCheck" class="you text-highlight" title="This is you!"/>
<icon
v-if="user.is_admin"
:icon="faShield"
class="is-admin text-blue"
title="User has admin privileges"
/>
</h1>
<p class="email text-secondary">{{ user.email }}</p>
<footer>
<Btn class="btn-edit" data-testid="edit-user-btn" orange small @click="edit">
{{ isCurrentUser ? 'Your Profile' : 'Edit' }}
</Btn>
<Btn v-if="!isCurrentUser" class="btn-delete" data-testid="delete-user-btn" red small @click="confirmDelete">
Delete
</Btn>
</footer>
</main>
2022-04-15 14:24:30 +00:00
</article>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
2022-07-15 07:23:55 +00:00
import { faCircleCheck, faShield } from '@fortawesome/free-solid-svg-icons'
import { computed, toRefs } from 'vue'
2022-04-15 14:24:30 +00:00
import { userStore } from '@/stores'
2022-11-18 18:44:20 +00:00
import { eventBus } from '@/utils'
import { useAuthorization, useDialogBox, useMessageToaster, useRouter } from '@/composables'
2022-04-15 14:24:30 +00:00
import Btn from '@/components/ui/Btn.vue'
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const props = defineProps<{ user: User }>()
const { user } = toRefs(props)
2022-04-15 14:24:30 +00:00
const { toastSuccess } = useMessageToaster()
const { showConfirmDialog } = useDialogBox()
2022-11-18 18:44:20 +00:00
const { go } = useRouter()
const { currentUser } = useAuthorization()
const isCurrentUser = computed(() => user.value.id === currentUser.value.id)
2022-04-15 17:00:08 +00:00
2022-11-18 18:44:20 +00:00
const edit = () => isCurrentUser.value ? go('profile') : eventBus.emit('MODAL_SHOW_EDIT_USER_FORM', user.value)
const confirmDelete = async () =>
await showConfirmDialog(`Youre about to unperson ${user.value.name}. Are you sure?`) && await destroy()
2022-04-15 17:00:08 +00:00
const destroy = async () => {
await userStore.destroy(user.value)
toastSuccess(`User "${user.value.name}" deleted.`)
2022-04-15 17:00:08 +00:00
}
2022-04-15 14:24:30 +00:00
</script>
<style lang="scss" scoped>
.user-card {
padding: 10px;
display: flex;
flex-direction: row;
align-items: center;
border-radius: 5px;
background: var(--color-bg-secondary);
border: 1px solid var(--color-bg-secondary);
gap: 1rem;
img {
2022-07-18 17:01:30 +00:00
border-radius: 50%;
flex: 0 0 80px;
background: rgba(0, 0, 0, .2)
}
2022-04-15 14:24:30 +00:00
main {
flex: 1;
2022-04-15 14:24:30 +00:00
display: flex;
flex-direction: column;
justify-content: space-between;
position: relative;
gap: .5rem;
}
2022-04-15 14:24:30 +00:00
h1 {
font-size: 1rem;
font-weight: var(--font-weight-normal);
2022-04-15 14:24:30 +00:00
> * + * {
margin-left: .5rem
2022-04-15 14:24:30 +00:00
}
}
2022-04-15 14:24:30 +00:00
footer {
visibility: hidden;
2022-04-23 21:46:25 +00:00
> * + * {
margin-left: .3rem;
2022-04-15 14:24:30 +00:00
}
@media (hover: none) {
visibility: visible;
2022-04-15 14:24:30 +00:00
}
}
&:hover footer {
visibility: visible;
2022-04-15 14:24:30 +00:00
}
}
</style>