mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
89 lines
2.0 KiB
Vue
Executable File
89 lines
2.0 KiB
Vue
Executable File
<template>
|
|
<div class="userdata-card">
|
|
<div class="centerPerMargin">
|
|
<avatar
|
|
:username="username.username"
|
|
:initials="username.initials"
|
|
:color="'#fff'"
|
|
:size="90"
|
|
></avatar>
|
|
</div>
|
|
|
|
<div class="justify-content-center mt-5 mb-5">
|
|
<b-row align-v="stretch">
|
|
<b-col cols="4">
|
|
<div class="text-center font-weight-bold">
|
|
{{ $n(balance, 'decimal') }}
|
|
</div>
|
|
</b-col>
|
|
<b-col cols="4">
|
|
<div class="text-center font-weight-bold">
|
|
{{ transactionCount }}
|
|
</div>
|
|
</b-col>
|
|
<b-col cols="4">
|
|
<div class="text-center font-weight-bold">{{ CONFIG.COMMUNITY_NAME }}</div>
|
|
</b-col>
|
|
</b-row>
|
|
<b-row>
|
|
<b-col cols="4">
|
|
<div class="text-center">{{ $t('GDD') }}</div>
|
|
</b-col>
|
|
<b-col cols="4">
|
|
<div class="text-center">
|
|
{{ $t('navigation.transactions') }}
|
|
</div>
|
|
</b-col>
|
|
<b-col cols="4">
|
|
<div class="text-center">
|
|
{{ $t('community.community') }}
|
|
</div>
|
|
</b-col>
|
|
</b-row>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Avatar from 'vue-avatar'
|
|
import CONFIG from '@/config'
|
|
|
|
export default {
|
|
name: 'UserCard',
|
|
components: {
|
|
Avatar,
|
|
},
|
|
props: {
|
|
balance: { type: Number, default: 0 },
|
|
transactionCount: { type: Number, default: 0 },
|
|
},
|
|
data() {
|
|
return {
|
|
CONFIG,
|
|
}
|
|
},
|
|
computed: {
|
|
username() {
|
|
return {
|
|
username: `${this.$store.state.firstName} ${this.$store.state.lastName}`,
|
|
initials: `${this.$store.state.firstName[0]}${this.$store.state.lastName[0]}`,
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
.centerPerMargin {
|
|
padding-left: 44%;
|
|
}
|
|
@media screen and (max-width: 850px) {
|
|
.centerPerMargin {
|
|
padding-left: 38%;
|
|
}
|
|
}
|
|
@media screen and (max-width: 450px) {
|
|
.centerPerMargin {
|
|
padding-left: 34%;
|
|
}
|
|
}
|
|
</style>
|