| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <!-- Component d'un formulaire d'un cycle -->
- <template>
- <main>
- <LayoutContainer>
- <v-card class="mb-5 mt-4">
- <FormToolbar title="cycle" icon="fa-bars"/>
- <UiForm
- :id="id"
- :model="model"
- :query="query()"
- :submitActions="submitActions">
- <template #form.input="{entry, updateRepository}">
- <v-container fluid class="container">
- <v-row>
- <v-col cols="12" sm="6">
- <UiInputText field="label" label="title" :data="entry['label']" @update="updateRepository" />
- </v-col>
- </v-row>
- </v-container>
- </template>
- <template #form.button>
- <NuxtLink :to="{ path: '/parameters/education'}" class="no-decoration">
- <v-btn class="mr-4 ot_light_grey ot_grey--text">
- {{ $t('back') }}
- </v-btn>
- </NuxtLink>
- </template>
- </UiForm>
- </v-card>
- </LayoutContainer>
- </main>
- </template>
- <script lang="ts">
- import { defineComponent, computed} from '@nuxtjs/composition-api'
- import { Repository as VuexRepository } from '@vuex-orm/core/dist/src/repository/Repository'
- import { Query, Model } from '@vuex-orm/core'
- import { SUBMIT_TYPE} from '~/types/enums'
- import { repositoryHelper } from '~/services/store/repository'
- import {AnyJson} from "~/types/interfaces";
- import {Cycle} from "~/models/Education/Cycle";
- export default defineComponent({
- props: {
- id:{
- type: [Number, String],
- required: true
- }
- },
- setup () {
- const repository: VuexRepository<Model> = repositoryHelper.getRepository(Cycle)
- const query: Query = repository.query()
- const submitActions = computed(() => {
- let actions:AnyJson = {}
- actions[SUBMIT_TYPE.SAVE_AND_BACK] = { path: `/parameters/education` }
- actions[SUBMIT_TYPE.SAVE] = { path: `/parameters/education/cycle/` }
- return actions
- })
- /** Computed properties needs to be returned as functions until nuxt3 : https://github.com/nuxt-community/composition-api/issues/207 **/
- return {
- model: Cycle,
- query: () => query,
- panel: 0,
- submitActions
- }
- },
- beforeDestroy() {
- repositoryHelper.cleanRepository(Cycle)
- }
- })
- </script>
|