mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
* feat: ✨ * fix colors * add additional support for settings meal tag * add defaults to recipe * use group reciep settings * fix login infinite loading * disable owner on initial load * add skeleton loader * add v-model support * formatting * fix overwriting existing values * feat(frontend): ✨ add markdown preview for steps * update black plus formatting * update help text * fix overwrite error * remove print Co-authored-by: hay-kot <hay-kot@pm.me>
95 lines
2.5 KiB
TypeScript
95 lines
2.5 KiB
TypeScript
import { useAsync, ref } from "@nuxtjs/composition-api";
|
|
import { addDays, subDays, format } from "date-fns";
|
|
import { useAsyncKey } from "./use-utils";
|
|
import { useUserApi } from "~/composables/api";
|
|
import { CreateMealPlan, UpdateMealPlan } from "~/api/class-interfaces/group-mealplan";
|
|
|
|
export type MealType = "breakfast" | "lunch" | "dinner" | "snack";
|
|
|
|
export const planTypeOptions = [
|
|
{ text: "Breakfast", value: "breakfast" },
|
|
{ text: "Lunch", value: "lunch" },
|
|
{ text: "Dinner", value: "dinner" },
|
|
{ text: "Snack", value: "snack" },
|
|
];
|
|
|
|
export const useMealplans = function () {
|
|
const api = useUserApi();
|
|
const loading = ref(false);
|
|
const validForm = ref(true);
|
|
|
|
const actions = {
|
|
getAll() {
|
|
loading.value = true;
|
|
const units = useAsync(async () => {
|
|
const query = {
|
|
start: format(subDays(new Date(), 30), "yyyy-MM-dd"),
|
|
limit: format(addDays(new Date(), 30), "yyyy-MM-dd"),
|
|
};
|
|
// @ts-ignore
|
|
const { data } = await api.mealplans.getAll(query.start, query.limit);
|
|
|
|
return data;
|
|
}, useAsyncKey());
|
|
|
|
loading.value = false;
|
|
return units;
|
|
},
|
|
async refreshAll() {
|
|
loading.value = true;
|
|
const query = {
|
|
start: format(subDays(new Date(), 30), "yyyy-MM-dd"),
|
|
limit: format(addDays(new Date(), 30), "yyyy-MM-dd"),
|
|
};
|
|
// @ts-ignore
|
|
const { data } = await api.mealplans.getAll(query.start, query.limit);
|
|
|
|
if (data) {
|
|
mealplans.value = data;
|
|
}
|
|
|
|
loading.value = false;
|
|
},
|
|
async createOne(payload: CreateMealPlan) {
|
|
loading.value = true;
|
|
|
|
const { data } = await api.mealplans.createOne(payload);
|
|
if (data) {
|
|
this.refreshAll();
|
|
}
|
|
|
|
loading.value = false;
|
|
},
|
|
async updateOne(updateData: UpdateMealPlan) {
|
|
if (!updateData.id) {
|
|
return;
|
|
}
|
|
|
|
loading.value = true;
|
|
// @ts-ignore
|
|
const { data } = await api.mealplans.updateOne(updateData.id, updateData);
|
|
if (data) {
|
|
this.refreshAll();
|
|
}
|
|
loading.value = false;
|
|
},
|
|
|
|
async deleteOne(id: string | number) {
|
|
loading.value = true;
|
|
const { data } = await api.mealplans.deleteOne(id);
|
|
if (data) {
|
|
this.refreshAll();
|
|
}
|
|
},
|
|
|
|
async setType(payload: UpdateMealPlan, typ: MealType) {
|
|
payload.entryType = typ;
|
|
await this.updateOne(payload);
|
|
},
|
|
};
|
|
|
|
const mealplans = actions.getAll();
|
|
|
|
return { mealplans, actions, validForm, loading };
|
|
};
|