48 lines
1.3 KiB
Vue
48 lines
1.3 KiB
Vue
<template>
|
|
<div id="add-workout">
|
|
<div class="container">
|
|
<WorkoutEdition
|
|
:authUser="authUser"
|
|
:sports="sports"
|
|
:isCreation="true"
|
|
:loading="workoutData.loading"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent, ComputedRef } from 'vue'
|
|
|
|
import WorkoutEdition from '@/components/Workout/WorkoutEdition.vue'
|
|
import { SPORTS_STORE, USER_STORE, WORKOUTS_STORE } from '@/store/constants'
|
|
import { ISport } from '@/types/sports'
|
|
import { IAuthUserProfile } from '@/types/user'
|
|
import { IWorkoutData } from '@/types/workouts'
|
|
import { useStore } from '@/use/useStore'
|
|
|
|
export default defineComponent({
|
|
name: 'AddWorkout',
|
|
components: {
|
|
WorkoutEdition,
|
|
},
|
|
setup() {
|
|
const store = useStore()
|
|
const sports: ComputedRef<ISport[]> = computed(
|
|
() => store.getters[SPORTS_STORE.GETTERS.SPORTS]
|
|
)
|
|
const authUser: ComputedRef<IAuthUserProfile> = computed(
|
|
() => store.getters[USER_STORE.GETTERS.AUTH_USER_PROFILE]
|
|
)
|
|
const workoutData: ComputedRef<IWorkoutData> = computed(
|
|
() => store.getters[WORKOUTS_STORE.GETTERS.WORKOUT_DATA]
|
|
)
|
|
return { authUser, sports, workoutData }
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '~@/scss/base';
|
|
</style>
|