113 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
| <template>
 | |
|     <div class="sidebar flex flex-col">
 | |
|         <sidebar-header
 | |
|             :links="indexLinks"
 | |
|             @close="$emit('close')"
 | |
|             @create="
 | |
|                 mode = 'create';
 | |
|                 single = {};
 | |
|             "
 | |
|             title="Ausbildungen"
 | |
|         ></sidebar-header>
 | |
| 
 | |
|         <form v-if="single" class="p-6 grid gap-4 justify-start" @submit.prevent="submit">
 | |
|             <f-text id="completed_at" type="date" v-model="single.completed_at" label="Datum" required></f-text>
 | |
|             <f-select
 | |
|                 id="course_id"
 | |
|                 name="course_id"
 | |
|                 :options="courses"
 | |
|                 v-model="single.course_id"
 | |
|                 label="Baustein"
 | |
|                 required
 | |
|             ></f-select>
 | |
|             <f-text id="event_name" v-model="single.event_name" label="Veranstaltung" required></f-text>
 | |
|             <f-text id="organizer" v-model="single.organizer" label="Veranstalter" required></f-text>
 | |
|             <button type="submit" class="btn btn-primary">Absenden</button>
 | |
|         </form>
 | |
| 
 | |
|         <div class="grow" v-else>
 | |
|             <table class="custom-table custom-table-light custom-table-sm text-sm grow">
 | |
|                 <thead>
 | |
|                     <th>Baustein</th>
 | |
|                     <th>Veranstaltung</th>
 | |
|                     <th>Veranstalter</th>
 | |
|                     <th>Datum</th>
 | |
|                     <th></th>
 | |
|                 </thead>
 | |
| 
 | |
|                 <tr v-for="(course, index) in value.courses" :key="index">
 | |
|                     <td v-text="course.course_name"></td>
 | |
|                     <td v-text="course.event_name"></td>
 | |
|                     <td v-text="course.organizer"></td>
 | |
|                     <td v-text="course.completed_at_human"></td>
 | |
|                     <td class="flex">
 | |
|                         <a
 | |
|                             href="#"
 | |
|                             @click.prevent="
 | |
|                                 single = course;
 | |
|                                 mode = 'edit';
 | |
|                             "
 | |
|                             class="inline-flex btn btn-warning btn-sm"
 | |
|                             ><svg-sprite src="pencil"></svg-sprite
 | |
|                         ></a>
 | |
|                         <i-link href="#" @click.prevent="remove(course)" class="inline-flex btn btn-danger btn-sm"
 | |
|                             ><svg-sprite src="trash"></svg-sprite
 | |
|                         ></i-link>
 | |
|                     </td>
 | |
|                 </tr>
 | |
|             </table>
 | |
|         </div>
 | |
|     </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import SidebarHeader from '../../components/SidebarHeader.vue';
 | |
| 
 | |
| export default {
 | |
|     data: function () {
 | |
|         return {
 | |
|             mode: null,
 | |
|             single: null,
 | |
|             indexLinks: [{event: 'create', label: 'Neuer Kurs'}],
 | |
|         };
 | |
|     },
 | |
| 
 | |
|     props: {
 | |
|         courses: {},
 | |
|         value: {},
 | |
|     },
 | |
| 
 | |
|     components: {SidebarHeader},
 | |
| 
 | |
|     methods: {
 | |
|         remove(payment) {
 | |
|             this.$inertia.delete(`/member/${this.value.id}/course/${payment.id}`);
 | |
|         },
 | |
| 
 | |
|         openLink(link) {
 | |
|             if (link.disabled) {
 | |
|                 return;
 | |
|             }
 | |
| 
 | |
|             window.open(link.href);
 | |
|         },
 | |
| 
 | |
|         submit() {
 | |
|             var _self = this;
 | |
| 
 | |
|             this.mode === 'create'
 | |
|                 ? this.$inertia.post(`/member/${this.value.id}/course`, this.single, {
 | |
|                       onFinish() {
 | |
|                           _self.single = null;
 | |
|                       },
 | |
|                   })
 | |
|                 : this.$inertia.patch(`/member/${this.value.id}/course/${this.single.id}`, this.single, {
 | |
|                       onFinish() {
 | |
|                           _self.single = null;
 | |
|                       },
 | |
|                   });
 | |
|         },
 | |
|     },
 | |
| };
 | |
| </script>
 |