FitTrackee/fittrackee_client/src/components/Dashboard/UserMonthStats.vue
2021-11-29 11:23:26 +01:00

51 lines
1.2 KiB
Vue

<template>
<div class="user-month-stats">
<Card>
<template #title>{{ $t('dashboard.THIS_MONTH') }}</template>
<template #content>
<StatChart
:sports="sports"
:user="user"
:chart-params="chartParams"
:displayed-sport-ids="selectedSportIds"
:hide-chart-if-no-data="true"
/>
</template>
</Card>
</div>
</template>
<script setup lang="ts">
import { endOfMonth, startOfMonth } from 'date-fns'
import { toRefs } from 'vue'
import StatChart from '@/components/Common/StatsChart/index.vue'
import { ISport } from '@/types/sports'
import { IUserProfile } from '@/types/user'
interface Props {
sports: ISport[]
user: IUserProfile
}
const props = defineProps<Props>()
const { sports, user } = toRefs(props)
const date = new Date()
const chartParams = {
duration: 'week',
start: startOfMonth(date),
end: endOfMonth(date),
}
const selectedSportIds = props.sports.map((sport) => sport.id)
</script>
<style lang="scss" scoped>
@import '~@/scss/vars.scss';
.user-month-stats {
::v-deep(.card-content) {
padding: $default-padding;
}
}
</style>