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

87 lines
3.2 KiB
Vue
Raw Normal View History

2023-06-01 15:02:35 +02:00
<template>
<page-layout>
<template #toolbar>
2023-06-01 15:45:02 +02:00
<page-toolbar-button @click.prevent="model = data.meta.default" color="primary" icon="plus">Neue Verbindung</page-toolbar-button>
2023-06-01 15:02:35 +02:00
</template>
2023-06-01 15:45:02 +02:00
<ui-popup heading="Neue Verbindung" v-if="model !== null && !model.id" @close="model = null">
2023-06-01 15:02:35 +02:00
<div>
<div class="grid grid-cols-2 gap-3 mt-6">
2023-06-01 15:45:02 +02:00
<f-text v-model="model.name" name="name" id="name" label="Bezeichnung" required></f-text>
<f-text v-model="model.domain" name="domain" id="domain" label="Domain" required></f-text>
<f-select :value="model.type.class" @input="model.type.class = $event" label="Typ" name="type" id="type" :options="data.meta.types"></f-select>
</div>
<div class="flex mt-4 space-x-2">
2023-06-01 15:02:35 +02:00
<a href="#" @click.prevent="submit" class="text-center btn btn-danger">Speichern</a>
2023-06-01 15:45:02 +02:00
<a href="#" @click.prevent="model = null" class="text-center btn btn-primary">Abbrechen</a>
2023-06-01 15:02:35 +02:00
</div>
</div>
</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-06-01 15:45:02 +02:00
<tr v-for="(gateway, index) in inner.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>
<td></td>
</tr>
</table>
<div class="px-6">
<ui-pagination class="mt-4" :value="data.meta" :only="['data']"></ui-pagination>
</div>
</div>
</setting-layout>
</page-layout>
</template>
<script>
import SettingLayout from '../setting/Layout.vue';
2023-06-01 15:45:02 +02:00
import indexHelpers from '../../mixins/indexHelpers.js';
2023-06-01 15:02:35 +02:00
export default {
2023-06-01 15:45:02 +02:00
mixins: [indexHelpers],
2023-06-01 15:02:35 +02:00
data: function () {
return {
2023-06-01 15:45:02 +02:00
model: null,
inner: {...this.data},
2023-06-01 15:02:35 +02:00
};
},
props: {
data: {},
},
2023-06-01 15:45:02 +02:00
methods: {
async submit() {
try {
await this.axios.post(this.data.meta.links.store, this.model);
this.reload();
this.model = null;
} catch (e) {
this.errorsFromException(e);
}
},
},
2023-06-01 15:02:35 +02:00
components: {
SettingLayout,
},
};
</script>