mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-08 19:35:14 -05:00
52 lines
1.1 KiB
JavaScript
52 lines
1.1 KiB
JavaScript
const Planner = () => import("@/pages/MealPlan/Planner");
|
|
const ThisWeek = () => import("@/pages/MealPlan/ThisWeek");
|
|
import { api } from "@/api";
|
|
import { utils } from "@/utils";
|
|
import i18n from "@/i18n.js";
|
|
|
|
export const mealRoutes = [
|
|
{
|
|
path: "/meal-plan",
|
|
component: ThisWeek,
|
|
meta: {
|
|
title: "meal-plan.dinner-this-week",
|
|
},
|
|
},
|
|
{
|
|
path: "/meal-plan/planner",
|
|
component: Planner,
|
|
meta: {
|
|
title: "meal-plan.meal-planner",
|
|
},
|
|
},
|
|
{
|
|
path: "/meal-plan/this-week",
|
|
component: ThisWeek,
|
|
meta: {
|
|
title: "meal-plan.dinner-this-week",
|
|
},
|
|
},
|
|
{
|
|
path: "/meal-plan/today",
|
|
beforeEnter: async (_to, _from, next) => {
|
|
await todaysMealRoute().then(redirect => {
|
|
if (redirect) {
|
|
next(redirect);
|
|
} else {
|
|
utils.notify.error(i18n.t("meal-plan.no-meal-planned-for-today"));
|
|
next(_from);
|
|
}
|
|
});
|
|
},
|
|
},
|
|
];
|
|
|
|
async function todaysMealRoute() {
|
|
const response = await api.mealPlans.today();
|
|
if (response.status == 200 && response.data) {
|
|
return "/recipe/" + response.data.slug;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|