mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	* Fix or comment several ts-ignores * Fix typing related to BaseOverflowButton * Remove unused functionality of useCookbooks, fix usage bug * Fix more typing, add some comments * Only allow ts-ignore if it has a comment
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.5 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 { alert } from "~/composables/use-toast";
 | 
						|
import { VForm } from "~/types/vuetify";
 | 
						|
import { GroupRead } from "~/api/admin/admin-groups";
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  components: {
 | 
						|
    GroupPreferencesEditor,
 | 
						|
  },
 | 
						|
  layout: "admin",
 | 
						|
  setup() {
 | 
						|
    const route = useRoute();
 | 
						|
 | 
						|
    const groupId = route.value.params.id;
 | 
						|
 | 
						|
    // ==============================================
 | 
						|
    // New User Form
 | 
						|
 | 
						|
    const refGroupEditForm = ref<VForm | null>(null);
 | 
						|
 | 
						|
    const adminApi = useAdminApi();
 | 
						|
 | 
						|
    const group = ref<GroupRead | null>(null);
 | 
						|
 | 
						|
    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) {
 | 
						|
        group.value = data;
 | 
						|
      }
 | 
						|
    });
 | 
						|
 | 
						|
    async function handleSubmit() {
 | 
						|
      if (!refGroupEditForm.value?.validate() || group.value === null) {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
 | 
						|
      const { response, data } = await adminApi.groups.updateOne(group.value.id, group.value);
 | 
						|
      if (response?.status === 200 && data) {
 | 
						|
        group.value = data;
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    return {
 | 
						|
      group,
 | 
						|
      userError,
 | 
						|
      refGroupEditForm,
 | 
						|
      handleSubmit,
 | 
						|
    };
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 |