adrema/resources/js/views/mailgateway/Index.vue

101 lines
4.4 KiB
Vue
Raw Normal View History

2023-06-01 15:02:35 +02:00
<template>
<page-layout>
<template #toolbar>
2023-07-27 17:22:06 +02:00
<page-toolbar-button color="primary" icon="plus" @click.prevent="model = {...meta.default}">Neue Verbindung</page-toolbar-button>
2023-06-01 15:02:35 +02:00
</template>
2023-07-27 17:22:06 +02:00
<ui-popup v-if="model !== null" :heading="model.id ? 'Verbindung bearbeiten' : 'Neue Verbindung'" @close="model = null">
2023-06-07 22:52:02 +02:00
<form @submit.prevent="submit">
<section class="grid grid-cols-2 gap-3 mt-6">
2023-07-27 17:22:06 +02:00
<f-text id="name" v-model="model.name" name="name" label="Bezeichnung" required></f-text>
<f-text id="domain" v-model="model.domain" name="domain" label="Domain" required></f-text>
2023-06-01 16:50:50 +02:00
<f-select
2023-07-27 17:22:06 +02:00
id="type"
:model-value="model.type.cls"
label="Typ"
name="type"
:options="meta.types"
:placeholder="''"
required
@update:model-value="
2023-06-01 16:50:50 +02:00
model.type = {
cls: $event,
params: {...getType($event).defaults},
}
"
></f-select>
<template v-for="(field, index) in getType(model.type.cls).fields">
2023-06-07 22:52:02 +02:00
<f-text
v-if="field.type === 'text' || field.type === 'password' || field.type === 'email'"
2023-07-27 17:22:06 +02:00
:id="field.name"
:key="index"
v-model="model.type.params[field.name]"
2023-06-07 22:52:02 +02:00
:label="field.label"
2023-06-07 22:59:58 +02:00
:type="field.type"
2023-06-07 22:52:02 +02:00
:name="field.name"
:required="field.is_required"
></f-text>
2023-06-01 16:50:50 +02:00
</template>
2023-06-07 22:52:02 +02:00
</section>
<section class="flex mt-4 space-x-2">
<ui-button type="submit" class="btn-danger">Speichern</ui-button>
2023-07-27 17:22:06 +02:00
<ui-button class="btn-primary" @click.prevent="model = null">Abbrechen</ui-button>
2023-06-07 22:52:02 +02:00
</section>
</form>
2023-06-01 15:02:35 +02:00
</ui-popup>
<setting-layout>
<div class="w-full h-full pb-6">
<table cellspacing="0" cellpadding="0" border="0" class="custom-table custom-table-sm hidden md:table">
<thead>
2023-06-01 15:45:02 +02:00
<th>Bezeichnung</th>
2023-06-01 15:02:35 +02:00
<th>Domain</th>
<th>Typ</th>
<th>Prüfung</th>
<th>Aktion</th>
</thead>
2023-07-27 17:22:06 +02:00
<tr v-for="(gateway, index) in data" :key="index">
2023-06-01 15:02:35 +02:00
<td v-text="gateway.name"></td>
<td v-text="gateway.domain"></td>
<td v-text="gateway.type_human"></td>
<td>
<ui-boolean-display
:value="gateway.works"
long-label="Verbindungsstatus"
:label="gateway.works ? 'Verbindung erfolgreich' : 'Verbindung fehlgeschlagen'"
></ui-boolean-display>
</td>
2023-06-07 21:40:58 +02:00
<td>
2023-07-27 17:22:06 +02:00
<a v-tooltip="`Bearbeiten`" href="#" class="inline-flex btn btn-warning btn-sm" @click.prevent="model = {...gateway}"><ui-sprite src="pencil"></ui-sprite></a>
2023-06-07 21:40:58 +02:00
</td>
2023-06-01 15:02:35 +02:00
</tr>
</table>
<div class="px-6">
2023-07-27 17:22:06 +02:00
<ui-pagination class="mt-4" :value="meta" :only="['data']"></ui-pagination>
2023-06-01 15:02:35 +02:00
</div>
</div>
</setting-layout>
</page-layout>
</template>
2023-07-27 17:22:06 +02:00
<script setup>
import {ref, inject} from 'vue';
import {indexProps, useIndex} from '../../composables/useIndex.js';
2023-06-01 15:02:35 +02:00
import SettingLayout from '../setting/Layout.vue';
2023-06-01 15:45:02 +02:00
2023-07-27 17:22:06 +02:00
const props = defineProps(indexProps);
const {meta, data, reload} = useIndex(props.data);
const model = ref(null);
const axios = inject('axios');
2023-06-01 15:45:02 +02:00
2023-07-27 17:22:06 +02:00
function getType(type) {
return meta.value.types.find((t) => t.id === type);
}
async function submit() {
await axios[model.value.id ? 'patch' : 'post'](model.value.id ? model.value.links.update : meta.value.links.store, model.value);
2023-06-01 15:45:02 +02:00
2023-07-27 17:22:06 +02:00
reload();
model.value = null;
}
2023-06-01 15:02:35 +02:00
</script>