2022-01-09 21:04:24 -09:00
|
|
|
<template>
|
|
|
|
<v-container class="narrow-container">
|
|
|
|
<BaseDialog
|
|
|
|
v-model="deleteDialog"
|
|
|
|
color="error"
|
2025-06-20 00:09:12 +07:00
|
|
|
:title="$t('general.confirm')"
|
2022-01-09 21:04:24 -09:00
|
|
|
:icon="$globals.icons.alertCircle"
|
2025-06-20 00:09:12 +07:00
|
|
|
can-confirm
|
2022-01-09 21:04:24 -09:00
|
|
|
@confirm="deleteNotifier(deleteTargetId)"
|
|
|
|
>
|
|
|
|
<v-card-text>
|
|
|
|
{{ $t("general.confirm-delete-generic") }}
|
|
|
|
</v-card-text>
|
|
|
|
</BaseDialog>
|
2025-06-20 00:09:12 +07:00
|
|
|
<BaseDialog
|
|
|
|
v-model="createDialog"
|
|
|
|
:title="$t('events.new-notification')"
|
2025-06-28 15:59:58 +02:00
|
|
|
:icon="$globals.icons.bellPlus"
|
2025-06-20 00:09:12 +07:00
|
|
|
can-submit
|
|
|
|
@submit="createNewNotifier"
|
|
|
|
>
|
2022-01-09 21:04:24 -09:00
|
|
|
<v-card-text>
|
2025-06-20 00:09:12 +07:00
|
|
|
<v-text-field
|
|
|
|
v-model="createNotifierData.name"
|
|
|
|
:label="$t('general.name')"
|
|
|
|
/>
|
|
|
|
<v-text-field
|
|
|
|
v-model="createNotifierData.appriseUrl"
|
|
|
|
:label="$t('events.apprise-url')"
|
|
|
|
/>
|
2022-01-09 21:04:24 -09:00
|
|
|
</v-card-text>
|
|
|
|
</BaseDialog>
|
|
|
|
|
|
|
|
<BasePageTitle divider>
|
|
|
|
<template #header>
|
2025-06-20 00:09:12 +07:00
|
|
|
<v-img
|
|
|
|
width="100%"
|
|
|
|
max-height="125"
|
|
|
|
max-width="125"
|
|
|
|
:src="require('~/static/svgs/manage-notifiers.svg')"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
<template #title>
|
|
|
|
{{ $t("events.event-notifiers") }}
|
2022-01-09 21:04:24 -09:00
|
|
|
</template>
|
|
|
|
{{ $t("events.new-notification-form-description") }}
|
|
|
|
|
2023-10-07 21:36:47 +02:00
|
|
|
<div class="mt-3 d-flex flex-wrap justify-space-between mx-n2">
|
2025-06-20 00:09:12 +07:00
|
|
|
<a
|
|
|
|
href="https://github.com/caronc/apprise/wiki"
|
|
|
|
target="_blanks"
|
|
|
|
class="mx-2"
|
|
|
|
> Apprise </a>
|
|
|
|
<a
|
|
|
|
href="https://github.com/caronc/apprise/wiki/Notify_gotify"
|
|
|
|
target="_blanks"
|
|
|
|
class="mx-2"
|
|
|
|
> Gotify </a>
|
|
|
|
<a
|
|
|
|
href="https://github.com/caronc/apprise/wiki/Notify_discord"
|
|
|
|
target="_blanks"
|
|
|
|
class="mx-2"
|
|
|
|
> Discord </a>
|
|
|
|
<a
|
|
|
|
href="https://github.com/caronc/apprise/wiki/Notify_homeassistant"
|
|
|
|
target="_blanks"
|
|
|
|
class="mx-2"
|
|
|
|
> Home
|
|
|
|
Assistant
|
|
|
|
</a>
|
|
|
|
<a
|
|
|
|
href="https://github.com/caronc/apprise/wiki/Notify_matrix"
|
|
|
|
target="_blanks"
|
|
|
|
class="mx-2"
|
|
|
|
> Matrix </a>
|
|
|
|
<a
|
|
|
|
href="https://github.com/caronc/apprise/wiki/Notify_pushover"
|
|
|
|
target="_blanks"
|
|
|
|
class="mx-2"
|
|
|
|
> Pushover </a>
|
2022-01-09 21:04:24 -09:00
|
|
|
</div>
|
|
|
|
</BasePageTitle>
|
|
|
|
|
2025-06-20 00:09:12 +07:00
|
|
|
<BaseButton
|
|
|
|
create
|
|
|
|
@click="createDialog = true"
|
|
|
|
/>
|
|
|
|
<v-expansion-panels
|
|
|
|
v-if="notifiers"
|
|
|
|
class="mt-2"
|
|
|
|
>
|
|
|
|
<v-expansion-panel
|
|
|
|
v-for="(notifier, index) in notifiers"
|
|
|
|
:key="index"
|
|
|
|
class="my-2 left-border rounded"
|
|
|
|
>
|
|
|
|
<v-expansion-panel-title
|
|
|
|
disable-icon-rotate
|
2025-06-28 15:59:58 +02:00
|
|
|
class="text-h6"
|
2025-06-20 00:09:12 +07:00
|
|
|
>
|
2022-01-09 21:04:24 -09:00
|
|
|
<div class="d-flex align-center">
|
|
|
|
{{ notifier.name }}
|
|
|
|
</div>
|
|
|
|
<template #actions>
|
2025-06-20 00:09:12 +07:00
|
|
|
<v-btn
|
|
|
|
icon
|
2025-06-28 15:59:58 +02:00
|
|
|
flat
|
2025-06-20 00:09:12 +07:00
|
|
|
class="ml-2"
|
|
|
|
>
|
2022-01-09 21:04:24 -09:00
|
|
|
<v-icon>
|
|
|
|
{{ $globals.icons.edit }}
|
|
|
|
</v-icon>
|
|
|
|
</v-btn>
|
|
|
|
</template>
|
2025-06-20 00:09:12 +07:00
|
|
|
</v-expansion-panel-title>
|
|
|
|
<v-expansion-panel-text>
|
|
|
|
<v-text-field
|
|
|
|
v-model="notifiers[index].name"
|
|
|
|
:label="$t('general.name')"
|
|
|
|
/>
|
2023-03-21 20:45:27 +01:00
|
|
|
<v-text-field
|
|
|
|
v-model="notifiers[index].appriseUrl"
|
|
|
|
:label="$t('events.apprise-url-skipped-if-blank')"
|
2025-06-20 00:09:12 +07:00
|
|
|
/>
|
|
|
|
<v-checkbox
|
|
|
|
v-model="notifiers[index].enabled"
|
|
|
|
:label="$t('events.enable-notifier')"
|
|
|
|
density="compact"
|
|
|
|
/>
|
2022-01-09 21:04:24 -09:00
|
|
|
|
2025-06-20 00:09:12 +07:00
|
|
|
<v-divider />
|
|
|
|
<p class="pt-4">
|
|
|
|
{{ $t("events.what-events") }}
|
|
|
|
</p>
|
2023-01-07 11:18:08 -08:00
|
|
|
<div class="notifier-options">
|
2025-06-20 00:09:12 +07:00
|
|
|
<section
|
|
|
|
v-for="sec in optionsSections"
|
|
|
|
:key="sec.id"
|
|
|
|
>
|
2023-01-07 11:18:08 -08:00
|
|
|
<h4>
|
|
|
|
{{ sec.text }}
|
|
|
|
</h4>
|
|
|
|
<v-checkbox
|
|
|
|
v-for="opt in sec.options"
|
|
|
|
:key="opt.key"
|
|
|
|
v-model="notifiers[index].options[opt.key]"
|
|
|
|
hide-details
|
2025-06-20 00:09:12 +07:00
|
|
|
density="compact"
|
2023-01-07 11:18:08 -08:00
|
|
|
:label="opt.text"
|
|
|
|
/>
|
|
|
|
</section>
|
|
|
|
</div>
|
2022-01-09 21:04:24 -09:00
|
|
|
<v-card-actions class="py-0">
|
2025-06-20 00:09:12 +07:00
|
|
|
<v-spacer />
|
2022-01-09 21:04:24 -09:00
|
|
|
<BaseButtonGroup
|
|
|
|
:buttons="[
|
|
|
|
{
|
|
|
|
icon: $globals.icons.delete,
|
2025-06-20 00:09:12 +07:00
|
|
|
text: $t('general.delete'),
|
2022-01-09 21:04:24 -09:00
|
|
|
event: 'delete',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: $globals.icons.testTube,
|
2025-06-20 00:09:12 +07:00
|
|
|
text: $t('general.test'),
|
2022-01-09 21:04:24 -09:00
|
|
|
event: 'test',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: $globals.icons.save,
|
2025-06-20 00:09:12 +07:00
|
|
|
text: $t('general.save'),
|
2022-01-09 21:04:24 -09:00
|
|
|
event: 'save',
|
|
|
|
},
|
|
|
|
]"
|
|
|
|
@delete="openDelete(notifier)"
|
|
|
|
@save="saveNotifier(notifier)"
|
|
|
|
@test="testNotifier(notifier)"
|
|
|
|
/>
|
|
|
|
</v-card-actions>
|
2025-06-20 00:09:12 +07:00
|
|
|
</v-expansion-panel-text>
|
2022-01-09 21:04:24 -09:00
|
|
|
</v-expansion-panel>
|
|
|
|
</v-expansion-panels>
|
|
|
|
</v-container>
|
|
|
|
</template>
|
2025-06-20 00:09:12 +07:00
|
|
|
|
2022-01-09 21:04:24 -09:00
|
|
|
<script lang="ts">
|
|
|
|
import { useUserApi } from "~/composables/api";
|
|
|
|
import { useAsyncKey } from "~/composables/use-utils";
|
2025-06-20 00:09:12 +07:00
|
|
|
import type { GroupEventNotifierCreate, GroupEventNotifierOut } from "~/lib/api/types/household";
|
2022-01-09 21:04:24 -09:00
|
|
|
|
|
|
|
interface OptionKey {
|
|
|
|
text: string;
|
2023-01-07 11:18:08 -08:00
|
|
|
key: keyof GroupEventNotifierOut["options"];
|
2022-01-09 21:04:24 -09:00
|
|
|
}
|
|
|
|
|
2023-01-07 11:18:08 -08:00
|
|
|
interface OptionSection {
|
|
|
|
id: number;
|
2022-01-09 21:04:24 -09:00
|
|
|
text: string;
|
2023-01-07 11:18:08 -08:00
|
|
|
options: OptionKey[];
|
2022-01-09 21:04:24 -09:00
|
|
|
}
|
|
|
|
|
2025-06-20 00:09:12 +07:00
|
|
|
export default defineNuxtComponent({
|
|
|
|
middleware: ["sidebase-auth", "advanced-only"],
|
2022-01-09 21:04:24 -09:00
|
|
|
setup() {
|
|
|
|
const api = useUserApi();
|
2025-06-20 00:09:12 +07:00
|
|
|
const i18n = useI18n();
|
|
|
|
|
|
|
|
useSeoMeta({
|
|
|
|
title: i18n.t("profile.notifiers"),
|
|
|
|
});
|
2022-01-09 21:04:24 -09:00
|
|
|
|
|
|
|
const state = reactive({
|
|
|
|
deleteDialog: false,
|
|
|
|
createDialog: false,
|
|
|
|
deleteTargetId: "",
|
|
|
|
});
|
|
|
|
|
2025-06-20 00:09:12 +07:00
|
|
|
const { data: notifiers } = useAsyncData(useAsyncKey(), async () => {
|
2022-01-09 21:04:24 -09:00
|
|
|
const { data } = await api.groupEventNotifier.getAll();
|
2022-07-31 20:08:48 +02:00
|
|
|
return data?.items;
|
2025-06-20 00:09:12 +07:00
|
|
|
});
|
2022-01-09 21:04:24 -09:00
|
|
|
|
|
|
|
async function refreshNotifiers() {
|
|
|
|
const { data } = await api.groupEventNotifier.getAll();
|
2022-07-31 20:08:48 +02:00
|
|
|
notifiers.value = data?.items;
|
2022-01-09 21:04:24 -09:00
|
|
|
}
|
|
|
|
|
|
|
|
const createNotifierData: GroupEventNotifierCreate = reactive({
|
|
|
|
name: "",
|
|
|
|
enabled: true,
|
|
|
|
appriseUrl: "",
|
|
|
|
});
|
|
|
|
|
|
|
|
async function createNewNotifier() {
|
|
|
|
await api.groupEventNotifier.createOne(createNotifierData);
|
|
|
|
refreshNotifiers();
|
|
|
|
}
|
|
|
|
|
|
|
|
function openDelete(notifier: GroupEventNotifierOut) {
|
|
|
|
state.deleteDialog = true;
|
|
|
|
state.deleteTargetId = notifier.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteNotifier(targetId: string) {
|
|
|
|
await api.groupEventNotifier.deleteOne(targetId);
|
|
|
|
refreshNotifiers();
|
|
|
|
state.deleteTargetId = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
async function saveNotifier(notifier: GroupEventNotifierOut) {
|
|
|
|
await api.groupEventNotifier.updateOne(notifier.id, notifier);
|
|
|
|
refreshNotifiers();
|
|
|
|
}
|
|
|
|
|
|
|
|
async function testNotifier(notifier: GroupEventNotifierOut) {
|
|
|
|
await api.groupEventNotifier.test(notifier.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ===============================================================
|
|
|
|
// Options Definitions
|
|
|
|
|
2023-01-07 11:18:08 -08:00
|
|
|
const optionsSections: OptionSection[] = [
|
2022-01-09 21:04:24 -09:00
|
|
|
{
|
2023-01-07 11:18:08 -08:00
|
|
|
id: 1,
|
2025-06-20 00:09:12 +07:00
|
|
|
text: i18n.t("events.recipe-events"),
|
2023-01-07 11:18:08 -08:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
text: i18n.t("general.create") as string,
|
|
|
|
key: "recipeCreated",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.t("general.update") as string,
|
|
|
|
key: "recipeUpdated",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.t("general.delete") as string,
|
|
|
|
key: "recipeDeleted",
|
|
|
|
},
|
|
|
|
],
|
2022-01-09 21:04:24 -09:00
|
|
|
},
|
|
|
|
{
|
2023-01-07 11:18:08 -08:00
|
|
|
id: 2,
|
2025-06-20 00:09:12 +07:00
|
|
|
text: i18n.t("events.user-events"),
|
2023-01-07 11:18:08 -08:00
|
|
|
options: [
|
|
|
|
{
|
2025-06-20 00:09:12 +07:00
|
|
|
text: i18n.t("events.when-a-new-user-joins-your-group"),
|
2023-01-07 11:18:08 -08:00
|
|
|
key: "userSignup",
|
|
|
|
},
|
|
|
|
],
|
2022-01-09 21:04:24 -09:00
|
|
|
},
|
|
|
|
{
|
2023-01-07 11:18:08 -08:00
|
|
|
id: 3,
|
2025-06-20 00:09:12 +07:00
|
|
|
text: i18n.t("events.mealplan-events"),
|
2023-01-07 11:18:08 -08:00
|
|
|
options: [
|
|
|
|
{
|
2025-06-20 00:09:12 +07:00
|
|
|
text: i18n.t("events.when-a-user-in-your-group-creates-a-new-mealplan"),
|
2023-01-07 11:18:08 -08:00
|
|
|
key: "mealplanEntryCreated",
|
|
|
|
},
|
|
|
|
],
|
2022-01-09 21:04:24 -09:00
|
|
|
},
|
|
|
|
{
|
2023-01-07 11:18:08 -08:00
|
|
|
id: 4,
|
2025-06-20 00:09:12 +07:00
|
|
|
text: i18n.t("events.shopping-list-events"),
|
2023-01-07 11:18:08 -08:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
text: i18n.t("general.create") as string,
|
|
|
|
key: "shoppingListCreated",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.t("general.update") as string,
|
|
|
|
key: "shoppingListUpdated",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.t("general.delete") as string,
|
|
|
|
key: "shoppingListDeleted",
|
|
|
|
},
|
|
|
|
],
|
2022-01-09 21:04:24 -09:00
|
|
|
},
|
|
|
|
{
|
2023-01-07 11:18:08 -08:00
|
|
|
id: 5,
|
2025-06-20 00:09:12 +07:00
|
|
|
text: i18n.t("events.cookbook-events"),
|
2023-01-07 11:18:08 -08:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
text: i18n.t("general.create") as string,
|
|
|
|
key: "cookbookCreated",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.t("general.update") as string,
|
|
|
|
key: "cookbookUpdated",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.t("general.delete") as string,
|
|
|
|
key: "cookbookDeleted",
|
|
|
|
},
|
|
|
|
],
|
2022-01-09 21:04:24 -09:00
|
|
|
},
|
|
|
|
{
|
2023-01-07 11:18:08 -08:00
|
|
|
id: 6,
|
2025-06-20 00:09:12 +07:00
|
|
|
text: i18n.t("events.tag-events"),
|
2023-01-07 11:18:08 -08:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
text: i18n.t("general.create") as string,
|
|
|
|
key: "tagCreated",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.t("general.update") as string,
|
|
|
|
key: "tagUpdated",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.t("general.delete") as string,
|
|
|
|
key: "tagDeleted",
|
|
|
|
},
|
|
|
|
],
|
2022-01-09 21:04:24 -09:00
|
|
|
},
|
|
|
|
{
|
2023-01-07 11:18:08 -08:00
|
|
|
id: 7,
|
2025-06-20 00:09:12 +07:00
|
|
|
text: i18n.t("events.category-events"),
|
2023-01-07 11:18:08 -08:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
text: i18n.t("general.create") as string,
|
|
|
|
key: "categoryCreated",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.t("general.update") as string,
|
|
|
|
key: "categoryUpdated",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.t("general.delete") as string,
|
|
|
|
key: "categoryDeleted",
|
|
|
|
},
|
|
|
|
],
|
2022-01-09 21:04:24 -09:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
return {
|
|
|
|
...toRefs(state),
|
|
|
|
openDelete,
|
|
|
|
notifiers,
|
|
|
|
createNotifierData,
|
2023-01-07 11:18:08 -08:00
|
|
|
optionsSections,
|
2022-01-09 21:04:24 -09:00
|
|
|
deleteNotifier,
|
|
|
|
testNotifier,
|
|
|
|
saveNotifier,
|
|
|
|
createNewNotifier,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
2023-01-07 11:18:08 -08:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.notifier-options {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 1.5rem;
|
|
|
|
}
|
|
|
|
</style>
|