mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-11 23:57:14 -07:00
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Docker Nightly Production / Backend Server Tests (push) Waiting to run
Docker Nightly Production / Frontend Tests (push) Waiting to run
Docker Nightly Production / Build Package (push) Waiting to run
Docker Nightly Production / Build Tagged Release (push) Blocked by required conditions
Docker Nightly Production / Notify Discord (push) Blocked by required conditions
Release Drafter / ✏️ Draft release (push) Waiting to run
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
127 lines
3.1 KiB
TypeScript
127 lines
3.1 KiB
TypeScript
import { useAsyncKey } from "./use-utils";
|
|
import { useUserApi } from "~/composables/api";
|
|
import type { ReadWebhook } from "~/lib/api/types/household";
|
|
|
|
export const useGroupWebhooks = function () {
|
|
const api = useUserApi();
|
|
const loading = ref(false);
|
|
const validForm = ref(true);
|
|
|
|
const actions = {
|
|
getAll() {
|
|
loading.value = true;
|
|
const { data: units } = useAsyncData(useAsyncKey(), async () => {
|
|
const { data } = await api.groupWebhooks.getAll();
|
|
|
|
if (data) {
|
|
return data.items;
|
|
}
|
|
else {
|
|
return null;
|
|
}
|
|
});
|
|
|
|
loading.value = false;
|
|
return units;
|
|
},
|
|
async refreshAll() {
|
|
loading.value = true;
|
|
const { data } = await api.groupWebhooks.getAll();
|
|
|
|
if (data && data.items) {
|
|
webhooks.value = data.items;
|
|
}
|
|
|
|
loading.value = false;
|
|
},
|
|
async createOne() {
|
|
loading.value = true;
|
|
|
|
const payload = {
|
|
enabled: false,
|
|
name: "New Webhook",
|
|
url: "",
|
|
scheduledTime: "00:00",
|
|
};
|
|
|
|
const { data } = await api.groupWebhooks.createOne(payload);
|
|
if (data) {
|
|
this.refreshAll();
|
|
}
|
|
|
|
loading.value = false;
|
|
},
|
|
async updateOne(updateData: ReadWebhook) {
|
|
if (!updateData.id) {
|
|
return;
|
|
}
|
|
|
|
// Convert to UTC time
|
|
const [hours, minutes] = updateData.scheduledTime.split(":");
|
|
|
|
const newDt = new Date();
|
|
newDt.setHours(Number(hours));
|
|
newDt.setMinutes(Number(minutes));
|
|
|
|
updateData.scheduledTime = `${pad(newDt.getUTCHours(), 2)}:${pad(newDt.getUTCMinutes(), 2)}`;
|
|
|
|
const payload = {
|
|
...updateData,
|
|
scheduledTime: updateData.scheduledTime,
|
|
};
|
|
|
|
loading.value = true;
|
|
const { data } = await api.groupWebhooks.updateOne(updateData.id, payload);
|
|
if (data) {
|
|
this.refreshAll();
|
|
}
|
|
loading.value = false;
|
|
},
|
|
|
|
async deleteOne(id: string | number) {
|
|
loading.value = true;
|
|
const { data } = await api.groupWebhooks.deleteOne(id);
|
|
if (data) {
|
|
this.refreshAll();
|
|
}
|
|
loading.value = false;
|
|
},
|
|
|
|
async testOne(id: string | number) {
|
|
loading.value = true;
|
|
await api.groupWebhooks.testOne(id);
|
|
loading.value = false;
|
|
},
|
|
};
|
|
|
|
const webhooks = actions.getAll();
|
|
|
|
return { webhooks, actions, validForm };
|
|
};
|
|
|
|
function pad(num: number, size: number) {
|
|
let numStr = num.toString();
|
|
while (numStr.length < size) numStr = "0" + numStr;
|
|
return numStr;
|
|
}
|
|
|
|
export function timeUTC(time: string): Date {
|
|
const [hours, minutes] = time.split(":");
|
|
const dt = new Date();
|
|
dt.setUTCMinutes(Number(minutes));
|
|
dt.setUTCHours(Number(hours));
|
|
return dt;
|
|
}
|
|
|
|
export function timeUTCToLocal(time: string): string {
|
|
const dt = timeUTC(time);
|
|
return `${pad(dt.getHours(), 2)}:${pad(dt.getMinutes(), 2)}`;
|
|
}
|
|
|
|
export function timeLocalToUTC(time: string) {
|
|
const [hours, minutes] = time.split(":");
|
|
const dt = new Date();
|
|
dt.setHours(Number(hours));
|
|
dt.setMinutes(Number(minutes));
|
|
return `${pad(dt.getUTCHours(), 2)}:${pad(dt.getUTCMinutes(), 2)}`;
|
|
}
|