mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	* 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>
		
			
				
	
	
		
			99 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div v-if="preferences">
 | |
|     <BaseCardSectionTitle title="General Preferences"></BaseCardSectionTitle>
 | |
|     <v-checkbox v-model="preferences.privateGroup" class="mt-n4" label="Private Group"></v-checkbox>
 | |
|     <v-select
 | |
|       v-model="preferences.firstDayOfWeek"
 | |
|       :prepend-icon="$globals.icons.calendarWeekBegin"
 | |
|       :items="allDays"
 | |
|       item-text="name"
 | |
|       item-value="value"
 | |
|       :label="$t('settings.first-day-of-week')"
 | |
|     />
 | |
| 
 | |
|     <BaseCardSectionTitle class="mt-5" title="Group Recipe Preferences"></BaseCardSectionTitle>
 | |
|     <template v-for="(_, key) in preferences">
 | |
|       <v-checkbox
 | |
|         v-if="labels[key]"
 | |
|         :key="key"
 | |
|         v-model="preferences[key]"
 | |
|         class="mt-n4"
 | |
|         :label="labels[key]"
 | |
|       ></v-checkbox>
 | |
|     </template>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts">
 | |
| import { defineComponent, computed, useContext } from "@nuxtjs/composition-api";
 | |
| 
 | |
| export default defineComponent({
 | |
|   props: {
 | |
|     value: {
 | |
|       type: Object,
 | |
|       required: true,
 | |
|     },
 | |
|   },
 | |
|   setup(props, context) {
 | |
|     const { i18n } = useContext();
 | |
| 
 | |
|     const labels = {
 | |
|       recipePublic: "Allow users outside of your group to see your recipes",
 | |
|       recipeShowNutrition: "Show nutrition information",
 | |
|       recipeShowAssets: "Show recipe assets",
 | |
|       recipeLandscapeView: "Default to landscape view",
 | |
|       recipeDisableComments: "Disable recipe comments from users in your group",
 | |
|       recipeDisableAmount: "Disable organizing recipe ingredients by units and food",
 | |
|     };
 | |
| 
 | |
|     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,
 | |
|       },
 | |
|     ];
 | |
| 
 | |
|     const preferences = computed({
 | |
|       get() {
 | |
|         return props.value;
 | |
|       },
 | |
|       set(val) {
 | |
|         context.emit("input", val);
 | |
|       },
 | |
|     });
 | |
| 
 | |
|     return {
 | |
|       allDays,
 | |
|       labels,
 | |
|       preferences,
 | |
|     };
 | |
|   },
 | |
| });
 | |
| </script>
 | |
| 
 | |
| <style lang="scss" scoped>
 | |
| </style> |