86c99b10a2
* Activate more linting rules from eslint and typescript * Properly add VForm as type information * Fix usage of native types * Fix more linting issues * Rename vuetify types file, add VTooltip * Fix some more typing problems * Use composition API for more components * Convert RecipeRating * Convert RecipeNutrition * Convert more components to composition API * Fix globals plugin for type checking * Add missing icon types * Fix vuetify types in Nuxt context * Use composition API for RecipeActionMenu * Convert error.vue to composition API * Convert RecipeContextMenu to composition API * Use more composition API and type checking in recipe/create * Convert AppButtonUpload to composition API * Fix some type checking in RecipeContextMenu * Remove unused components BaseAutoForm and BaseColorPicker * Convert RecipeCategoryTagDialog to composition API * Convert RecipeCardSection to composition API * Convert RecipeCategoryTagSelector to composition API * Properly import vuetify type definitions * Convert BaseButton to composition API * Convert AutoForm to composition API * Remove unused requests API file * Remove static routes from recipe API * Fix more type errors * Convert AppHeader to composition API, fixing some search bar focus problems * Convert RecipeDialogSearch to composition API * Update API types from pydantic models, handle undefined values * Improve more typing problems * Add types to other plugins * Properly type the CRUD API access * Fix typing of static image routes * Fix more typing stuff * Fix some more typing problems * Turn off more rules
97 lines
2.7 KiB
Vue
97 lines
2.7 KiB
Vue
<template>
|
|
<v-container v-if="group" class="narrow-container">
|
|
<BasePageTitle>
|
|
<template #header>
|
|
<v-img max-height="125" max-width="125" :src="require('~/static/svgs/manage-group-settings.svg')"></v-img>
|
|
</template>
|
|
<template #title> Admin Group Management </template>
|
|
Changes to this group will be reflected immediately.
|
|
</BasePageTitle>
|
|
<AppToolbar back> </AppToolbar>
|
|
<v-card-text> Group Id: {{ group.id }} </v-card-text>
|
|
<v-form v-if="!userError" ref="refGroupEditForm" @submit.prevent="handleSubmit">
|
|
<v-card outlined>
|
|
<v-card-text>
|
|
<v-text-field v-model="group.name" label="Group Name"> </v-text-field>
|
|
<GroupPreferencesEditor v-if="group.preferences" v-model="group.preferences" />
|
|
</v-card-text>
|
|
</v-card>
|
|
<div class="d-flex pa-2">
|
|
<BaseButton type="submit" edit class="ml-auto"> {{ $t("general.update") }}</BaseButton>
|
|
</div>
|
|
</v-form>
|
|
</v-container>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, useRoute, onMounted, ref } from "@nuxtjs/composition-api";
|
|
import GroupPreferencesEditor from "~/components/Domain/Group/GroupPreferencesEditor.vue";
|
|
import { useAdminApi } from "~/composables/api";
|
|
import { useGroups } from "~/composables/use-groups";
|
|
import { alert } from "~/composables/use-toast";
|
|
import { useUserForm } from "~/composables/use-users";
|
|
import { validators } from "~/composables/use-validators";
|
|
import { VForm } from "~/types/vuetify";
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
GroupPreferencesEditor,
|
|
},
|
|
layout: "admin",
|
|
setup() {
|
|
const { userForm } = useUserForm();
|
|
const { groups } = useGroups();
|
|
const route = useRoute();
|
|
|
|
const groupId = route.value.params.id;
|
|
|
|
// ==============================================
|
|
// New User Form
|
|
|
|
const refGroupEditForm = ref<VForm | null>(null);
|
|
|
|
const adminApi = useAdminApi();
|
|
|
|
const group = ref({});
|
|
|
|
const userError = ref(false);
|
|
|
|
onMounted(async () => {
|
|
const { data, error } = await adminApi.groups.getOne(groupId);
|
|
|
|
if (error?.response?.status === 404) {
|
|
alert.error("User Not Found");
|
|
userError.value = true;
|
|
}
|
|
|
|
if (data) {
|
|
// @ts-ignore
|
|
group.value = data;
|
|
}
|
|
});
|
|
|
|
async function handleSubmit() {
|
|
if (!refGroupEditForm.value?.validate()) {
|
|
return;
|
|
}
|
|
|
|
// @ts-ignore
|
|
const { response, data } = await adminApi.groups.updateOne(group.value.id, group.value);
|
|
if (response?.status === 200 && data) {
|
|
// @ts-ignore
|
|
group.value = data;
|
|
}
|
|
}
|
|
|
|
return {
|
|
group,
|
|
userError,
|
|
userForm,
|
|
refGroupEditForm,
|
|
handleSubmit,
|
|
groups,
|
|
validators,
|
|
};
|
|
},
|
|
});
|
|
</script>
|