Client - use nested routes for user profile
This commit is contained in:
47
fittrackee_client/src/views/workouts/AddWorkout.vue
Normal file
47
fittrackee_client/src/views/workouts/AddWorkout.vue
Normal file
@ -0,0 +1,47 @@
|
||||
<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>
|
Reference in New Issue
Block a user