mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			167 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			167 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <v-container v-if="household"
 | |
|                class="narrow-container"
 | |
|   >
 | |
|     <BasePageTitle class="mb-5">
 | |
|       <template #header>
 | |
|         <v-img
 | |
|           width="100%"
 | |
|           max-height="100"
 | |
|           max-width="100"
 | |
|           :src="require('~/static/svgs/manage-group-settings.svg')"
 | |
|         />
 | |
|       </template>
 | |
|       <template #title>
 | |
|         {{ $t("profile.household-settings") }}
 | |
|       </template>
 | |
|       {{ $t("profile.household-description") }}
 | |
|     </BasePageTitle>
 | |
|     <v-form ref="refHouseholdEditForm" @submit.prevent="handleSubmit">
 | |
|       <v-card variant="outlined" style="border-color: lightgray;">
 | |
|         <v-card-text>
 | |
|           <HouseholdPreferencesEditor v-if="household.preferences" v-model="household.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 HouseholdPreferencesEditor from "~/components/Domain/Household/HouseholdPreferencesEditor.vue";
 | |
| import { useHouseholdSelf } from "~/composables/use-households";
 | |
| import type { ReadHouseholdPreferences } from "~/lib/api/types/household";
 | |
| import { alert } from "~/composables/use-toast";
 | |
| import type { VForm } from "~/types/auto-forms";
 | |
| 
 | |
| export default defineNuxtComponent({
 | |
|   components: {
 | |
|     HouseholdPreferencesEditor,
 | |
|   },
 | |
|   middleware: ["sidebase-auth", "can-manage-household-only"],
 | |
|   setup() {
 | |
|     const { household, actions: householdActions } = useHouseholdSelf();
 | |
|     const i18n = useI18n();
 | |
| 
 | |
|     useSeoMeta({
 | |
|       title: i18n.t("household.household"),
 | |
|     });
 | |
| 
 | |
|     const refHouseholdEditForm = ref<VForm | null>(null);
 | |
| 
 | |
| 		type Preference = {
 | |
| 		  key: keyof ReadHouseholdPreferences;
 | |
| 		  value: boolean;
 | |
| 		  label: string;
 | |
| 		  description: string;
 | |
| 		};
 | |
| 
 | |
| 		const preferencesEditor = computed<Preference[]>(() => {
 | |
| 		  if (!household.value || !household.value.preferences) {
 | |
| 		    return [];
 | |
| 		  }
 | |
| 		  return [
 | |
| 		    {
 | |
| 		      key: "recipePublic",
 | |
| 		      value: household.value.preferences.recipePublic || false,
 | |
| 		      label: i18n.t("household.allow-users-outside-of-your-household-to-see-your-recipes"),
 | |
| 		      description: i18n.t("household.allow-users-outside-of-your-household-to-see-your-recipes-description"),
 | |
| 		    } as Preference,
 | |
| 		    {
 | |
| 		      key: "recipeShowNutrition",
 | |
| 		      value: household.value.preferences.recipeShowNutrition || false,
 | |
| 		      label: i18n.t("group.show-nutrition-information"),
 | |
| 		      description: i18n.t("group.show-nutrition-information-description"),
 | |
| 		    } as Preference,
 | |
| 		    {
 | |
| 		      key: "recipeShowAssets",
 | |
| 		      value: household.value.preferences.recipeShowAssets || false,
 | |
| 		      label: i18n.t("group.show-recipe-assets"),
 | |
| 		      description: i18n.t("group.show-recipe-assets-description"),
 | |
| 		    } as Preference,
 | |
| 		    {
 | |
| 		      key: "recipeLandscapeView",
 | |
| 		      value: household.value.preferences.recipeLandscapeView || false,
 | |
| 		      label: i18n.t("group.default-to-landscape-view"),
 | |
| 		      description: i18n.t("group.default-to-landscape-view-description"),
 | |
| 		    } as Preference,
 | |
| 		    {
 | |
| 		      key: "recipeDisableComments",
 | |
| 		      value: household.value.preferences.recipeDisableComments || false,
 | |
| 		      label: i18n.t("group.disable-users-from-commenting-on-recipes"),
 | |
| 		      description: i18n.t("group.disable-users-from-commenting-on-recipes-description"),
 | |
| 		    } as Preference,
 | |
| 		  ];
 | |
| 		});
 | |
| 
 | |
| 		const allDays = [
 | |
| 		  {
 | |
| 		    name: i18n.t("general.sunday"),
 | |
| 		    value: 0,
 | |
| 		  },
 | |
| 		  {
 | |
| 		    name: i18n.t("general.monday"),
 | |
| 		    value: 1,
 | |
| 		  },
 | |
| 		  {
 | |
| 		    name: i18n.t("general.tuesday"),
 | |
| 		    value: 2,
 | |
| 		  },
 | |
| 		  {
 | |
| 		    name: i18n.t("general.wednesday"),
 | |
| 		    value: 3,
 | |
| 		  },
 | |
| 		  {
 | |
| 		    name: i18n.t("general.thursday"),
 | |
| 		    value: 4,
 | |
| 		  },
 | |
| 		  {
 | |
| 		    name: i18n.t("general.friday"),
 | |
| 		    value: 5,
 | |
| 		  },
 | |
| 		  {
 | |
| 		    name: i18n.t("general.saturday"),
 | |
| 		    value: 6,
 | |
| 		  },
 | |
| 		];
 | |
| 
 | |
| 		async function handleSubmit() {
 | |
| 		  if (!refHouseholdEditForm.value?.validate() || !household.value?.preferences) {
 | |
| 		    console.log(refHouseholdEditForm.value?.validate());
 | |
| 		    return;
 | |
| 		  }
 | |
| 
 | |
| 		  const data = await householdActions.updatePreferences();
 | |
| 		  if (data) {
 | |
| 		    alert.success(i18n.t("settings.settings-updated"));
 | |
| 		  }
 | |
| 		  else {
 | |
| 		    alert.error(i18n.t("settings.settings-update-failed"));
 | |
| 		  }
 | |
| 		}
 | |
| 
 | |
| 		return {
 | |
| 		  household,
 | |
| 		  householdActions,
 | |
| 		  allDays,
 | |
| 		  preferencesEditor,
 | |
| 		  refHouseholdEditForm,
 | |
| 		  handleSubmit,
 | |
| 		};
 | |
|   },
 | |
| });
 | |
| </script>
 | |
| 
 | |
| <style lang="css">
 | |
| .preference-container {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   gap: 0.5rem;
 | |
|   max-width: 600px;
 | |
| }
 | |
| </style>
 |