mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-20 19:35:16 +00:00
93 lines
2.3 KiB
Vue
93 lines
2.3 KiB
Vue
<!--
|
|
- WebhookDelivery.vue
|
|
- Copyright (c) 2022 james@firefly-iii.org
|
|
-
|
|
- This file is part of Firefly III (https://github.com/firefly-iii).
|
|
-
|
|
- This program is free software: you can redistribute it and/or modify
|
|
- it under the terms of the GNU Affero General Public License as
|
|
- published by the Free Software Foundation, either version 3 of the
|
|
- License, or (at your option) any later version.
|
|
-
|
|
- This program is distributed in the hope that it will be useful,
|
|
- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
- GNU Affero General Public License for more details.
|
|
-
|
|
- You should have received a copy of the GNU Affero General Public License
|
|
- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<template>
|
|
<div class="form-group" v-bind:class="{ 'has-error': hasError()}">
|
|
<label class="col-sm-4 control-label">
|
|
{{ $t('form.webhook_delivery') }}
|
|
</label>
|
|
<div class="col-sm-8">
|
|
<select
|
|
ref="bill"
|
|
v-model="delivery"
|
|
:title="$t('form.webhook_delivery')"
|
|
class="form-control"
|
|
@input="handleInput"
|
|
name="webhook_delivery"
|
|
>
|
|
<option v-for="delivery in this.deliveries"
|
|
:label="delivery.name"
|
|
:value="delivery.id">{{ delivery.name }}
|
|
</option>
|
|
</select>
|
|
<p class="help-block" v-html="$t('firefly.webhook_delivery_form_help')"></p>
|
|
<ul v-for="error in this.error" class="list-unstyled">
|
|
<li class="text-danger">{{ error }}</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "WebhookDelivery",
|
|
data() {
|
|
return {
|
|
delivery : 0,
|
|
deliveries: [
|
|
|
|
],
|
|
};
|
|
},
|
|
props: {
|
|
error: {
|
|
type: Array,
|
|
required: true,
|
|
default() {
|
|
return []
|
|
}
|
|
},
|
|
value: {
|
|
type: Number,
|
|
required: true,
|
|
}
|
|
},
|
|
mounted() {
|
|
this.delivery = this.value;
|
|
this.deliveries = [
|
|
{id: 300, name: this.$t('firefly.webhook_delivery_JSON')},
|
|
];
|
|
},
|
|
watch: {
|
|
value() {
|
|
this.delivery = this.value;
|
|
}
|
|
},
|
|
methods: {
|
|
hasError() {
|
|
return this.error?.length > 0;
|
|
},
|
|
handleInput() {
|
|
this.$emit('input', this.delivery);
|
|
},
|
|
},
|
|
}
|
|
</script>
|