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

103 lines
2.5 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>
<i v-if="isCurrentUser" class="you text-orange fa fa-check-circle" title="This is you!"/>
<i v-if="user.is_admin" class="is-admin text-blue fa fa-shield" title="User has admin privileges"/>
</h1>
<p class="email text-secondary">{{ user.email }}</p>
<footer>
<Btn class="btn-edit" data-testid="edit-user-btn" small orange @click="edit">
{{ isCurrentUser ? 'Your Profile' : 'Edit' }}
</Btn>
<Btn v-if="!isCurrentUser" class="btn-delete" data-testid="delete-user-btn" small red @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>
import { computed, toRefs } from 'vue'
2022-04-15 14:24:30 +00:00
import { userStore } from '@/stores'
import { alerts, eventBus } from '@/utils'
import { useAuthorization } from '@/composables'
import router from '@/router'
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 { currentUser } = useAuthorization()
const isCurrentUser = computed(() => user.value.id === currentUser.value.id)
2022-04-15 17:00:08 +00:00
const edit = () => isCurrentUser.value ? router.go('profile') : eventBus.emit('MODAL_SHOW_EDIT_USER_FORM', user.value)
2022-04-15 17:00:08 +00:00
const confirmDelete = () => alerts.confirm(`Youre about to unperson ${user.value.name}. Are you sure?`, destroy)
const destroy = async () => {
await userStore.destroy(user.value)
2022-04-21 22:51:48 +00:00
alerts.success(`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 {
border-radius: 5px;
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>