1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-19 05:09:40 +02:00

feat(backend): refactor/fix group management for admins (#838)

* fix(frontend): 🐛 update dialog implementation to simplify state management

* test(backend):  refactor test fixtures + admin group tests

* chore(backend): 🔨 add launcher.json for python debugging (tests)

* fix typing

* feat(backend):  refactor/fix group management for admins

* feat(frontend):  add/fix admin group management

* add LDAP checker

Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
Hayden 2021-11-25 14:17:02 -09:00 committed by GitHub
parent 0db8a58963
commit 791aa8c610
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
52 changed files with 881 additions and 331 deletions

View file

@ -1,7 +1,7 @@
<template>
<div class="text-center">
<BaseDialog
ref="domConfirmDelete"
v-model="recipeDeleteDialog"
:title="$t('recipe.delete-recipe')"
color="error"
:icon="$globals.icons.alertCircle"
@ -12,7 +12,7 @@
</v-card-text>
</BaseDialog>
<BaseDialog
ref="domMealplanDialog"
v-model="mealplannerDialog"
title="Add Recipe to Mealplan"
color="primary"
:icon="$globals.icons.calendar"
@ -74,7 +74,7 @@
</template>
<script lang="ts">
import { defineComponent, reactive, ref, toRefs, useContext, useRouter } from "@nuxtjs/composition-api";
import { defineComponent, reactive, toRefs, useContext, useRouter } from "@nuxtjs/composition-api";
import { useClipboard, useShare } from "@vueuse/core";
import { useUserApi } from "~/composables/api";
import { alert } from "~/composables/use-toast";
@ -152,6 +152,8 @@ export default defineComponent({
const api = useUserApi();
const state = reactive({
recipeDeleteDialog: false,
mealplannerDialog: false,
loading: false,
menuItems: [] as ContextMenuItem[],
newMealdate: "",
@ -232,8 +234,6 @@ export default defineComponent({
const router = useRouter();
const domConfirmDelete = ref(null);
async function deleteRecipe() {
await api.recipes.deleteOne(props.slug);
context.emit("delete", props.slug);
@ -264,7 +264,6 @@ export default defineComponent({
}
}
const domMealplanDialog = ref(null);
async function addRecipeToPlan() {
const { response } = await api.mealplans.createOne({
date: state.newMealdate,
@ -284,11 +283,15 @@ export default defineComponent({
// Note: Print is handled as an event in the parent component
const eventHandlers: { [key: string]: Function } = {
// @ts-ignore - Doens't know about open()
delete: () => domConfirmDelete?.value?.open(),
delete: () => {
state.recipeDeleteDialog = true;
},
edit: () => router.push(`/recipe/${props.slug}` + "?edit=true"),
download: handleDownloadEvent,
// @ts-ignore - Doens't know about open()
mealplanner: () => domMealplanDialog?.value?.open(),
mealplanner: () => {
state.mealplannerDialog = true;
},
share: handleShareEvent,
};
@ -310,8 +313,6 @@ export default defineComponent({
contextMenuEventHandler,
deleteRecipe,
addRecipeToPlan,
domConfirmDelete,
domMealplanDialog,
icon,
planTypeOptions,
};