Files
website-old/src/components/FormationsAbout.vue
2021-08-31 19:46:57 +02:00

48 lines
1.3 KiB
Vue
Executable File

<template>
<section class="w-full mb-10">
<h3 class="font-bold text-2xl md:text-4xl mb-3">
{{ $t('about.title.formations') }}
<DegreeHatIcon />
</h3>
<div v-if="formations" v-for="formation in formations">
<Formation
:title="formation.title.code"
:description="formation.description.code"
:location="formation.location"
:begin="formation.begin_date"
:end="formation.end_date" />
</div>
</section>
</template>
<script lang="ts">
import {defineComponent, useAsync, useContext} from "@nuxtjs/composition-api";
export default defineComponent({
name: "FormationsHome",
setup() {
const {$axios, $sentry, app} = useContext()
const formations = useAsync(async () => {
const response = await $axios.get('/api/formations', {
headers: {
'Authorization': `Bearer ${process.env.API_TOKEN}`
}
})
if (response.status === 200) {
return response.data.formations.sort((a, b) => {
return a.end_date === 'Today' ? -1 : a.end_date.split('-')[1] > b.end_date.split('-')[1] ? -1 : a.end_date.split('-')[0] > b.end_date.split('-')[0] ? 0 : 1
})
} else {
app.error({statusCode: 500})
$sentry.captureEvent(response.data)
}
}, 'formations')
return {
formations
}
}
})
</script>