purityselect_admin/resources/js/views/pages/user-profile/profile/Teams.vue
2024-10-25 19:58:19 +05:00

101 lines
1.8 KiB
Vue

<script setup>
const props = defineProps({
teamsData: {
type: Array,
required: true,
},
})
const moreList = [
{
title: 'Share connections',
value: 'Share connections',
},
{
title: 'Suggest edits',
value: 'Suggest edits',
},
{
title: 'Report Bug',
value: 'Report Bug',
},
]
</script>
<template>
<VCard
title="Teams"
class="teamsCard"
>
<template #append>
<div class="me-n2">
<MoreBtn
:menu-list="moreList"
density="compact"
/>
</div>
</template>
<VCardText>
<VList class="card-list">
<VListItem
v-for="data in props.teamsData"
:key="data.title"
>
<template #prepend>
<VAvatar
size="38"
:image="data.avatar"
/>
</template>
<VListItemTitle class="font-weight-medium mb-1">
{{ data.title }}
</VListItemTitle>
<VListItemSubtitle>{{ data.members }} Members</VListItemSubtitle>
<template #append>
<VChip
:color="data.ChipColor"
size="small"
>
{{ data.chipText }}
</VChip>
</template>
</VListItem>
<VListItem>
<VListItemTitle>
<VBtn
block
variant="text"
>
View all teams
</VBtn>
</VListItemTitle>
</VListItem>
</VList>
</VCardText>
</VCard>
</template>
<style lang="scss" scoped>
.card-list {
--v-card-list-gap: 16px;
}
</style>
<style lang="scss">
.teamsCard{
.v-list{
.v-list-item{
&__prepend{
.v-list-item__spacer{
inline-size: 8px !important;
}
}
}
}
}
</style>