mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-16 10:03:54 -07:00
112 lines
No EOL
2.9 KiB
Vue
112 lines
No EOL
2.9 KiB
Vue
<template>
|
|
<v-card>
|
|
<v-card-title class="headline">
|
|
{{ $t("settings.webhooks.meal-planner-webhooks") }}
|
|
</v-card-title>
|
|
<v-card-text>
|
|
<p>
|
|
{{
|
|
$t(
|
|
"settings.webhooks.the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at"
|
|
)
|
|
}}
|
|
<strong>{{ time }}</strong>
|
|
</p>
|
|
|
|
<v-row dense align="center">
|
|
<v-col cols="12" md="2" sm="5">
|
|
<v-switch v-model="enabled" :label="$t('general.enabled')"></v-switch>
|
|
</v-col>
|
|
<v-col cols="12" md="3" sm="5">
|
|
<TimePickerDialog @save-time="saveTime" />
|
|
</v-col>
|
|
<v-col cols="12" md="4" sm="5">
|
|
<v-btn text color="info" @click="testWebhooks">
|
|
<v-icon left> mdi-webhook </v-icon>
|
|
{{ $t("settings.webhooks.test-webhooks") }}
|
|
</v-btn>
|
|
</v-col>
|
|
</v-row>
|
|
|
|
<v-row v-for="(url, index) in webhooks" :key="index" align="center" dense>
|
|
<v-col cols="1">
|
|
<v-btn icon color="error" @click="removeWebhook(index)">
|
|
<v-icon>mdi-minus</v-icon>
|
|
</v-btn>
|
|
</v-col>
|
|
<v-col>
|
|
<v-text-field
|
|
v-model="webhooks[index]"
|
|
:label="$t('settings.webhooks.webhook-url')"
|
|
></v-text-field>
|
|
</v-col>
|
|
</v-row>
|
|
</v-card-text>
|
|
<v-card-actions>
|
|
<v-btn icon color="success" @click="addWebhook">
|
|
<v-icon>mdi-plus</v-icon>
|
|
</v-btn>
|
|
<v-spacer></v-spacer>
|
|
<v-btn color="success" @click="saveWebhooks" class="mr-2 mb-1">
|
|
<v-icon left> mdi-content-save </v-icon>
|
|
{{ $t("general.save") }}
|
|
</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script>
|
|
import api from "../../../api";
|
|
import TimePickerDialog from "./TimePickerDialog";
|
|
export default {
|
|
components: {
|
|
TimePickerDialog,
|
|
},
|
|
data() {
|
|
return {
|
|
name: "main",
|
|
webhooks: [],
|
|
enabled: false,
|
|
time: "",
|
|
};
|
|
},
|
|
mounted() {
|
|
this.getSiteSettings();
|
|
},
|
|
methods: {
|
|
saveTime(value) {
|
|
this.time = value;
|
|
},
|
|
async getSiteSettings() {
|
|
let settings = await api.settings.requestAll();
|
|
this.webhooks = settings.webhooks.webhookURLs;
|
|
this.name = settings.name;
|
|
this.time = settings.webhooks.webhookTime;
|
|
this.enabled = settings.webhooks.enabled;
|
|
},
|
|
addWebhook() {
|
|
this.webhooks.push(" ");
|
|
},
|
|
removeWebhook(index) {
|
|
this.webhooks.splice(index, 1);
|
|
},
|
|
saveWebhooks() {
|
|
const body = {
|
|
name: this.name,
|
|
webhooks: {
|
|
webhookURLs: this.webhooks,
|
|
webhookTime: this.time,
|
|
enabled: this.enabled,
|
|
},
|
|
};
|
|
api.settings.update(body);
|
|
},
|
|
testWebhooks() {
|
|
api.settings.testWebhooks();
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
</style> |