mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			105 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <BaseDialog
 | 
						|
    v-model="dialog"
 | 
						|
    :icon="$globals.icons.printerSettings"
 | 
						|
    :title="$t('general.print-preferences')"
 | 
						|
    width="70%"
 | 
						|
    max-width="816px"
 | 
						|
  >
 | 
						|
    <div class="pa-6">
 | 
						|
      <v-container class="print-config mb-3 pa-0">
 | 
						|
        <v-row>
 | 
						|
          <v-col
 | 
						|
            cols="auto"
 | 
						|
            align-self="center"
 | 
						|
            class="text-center"
 | 
						|
          >
 | 
						|
            <div
 | 
						|
              class="text-subtitle-2"
 | 
						|
              style="text-align: center;"
 | 
						|
            >
 | 
						|
              {{ $t('recipe.recipe-image') }}
 | 
						|
            </div>
 | 
						|
            <v-btn-toggle
 | 
						|
              v-model="preferences.imagePosition"
 | 
						|
              mandatory="force"
 | 
						|
              style="width: fit-content;"
 | 
						|
            >
 | 
						|
              <v-btn :value="ImagePosition.left">
 | 
						|
                <v-icon>{{ $globals.icons.dockLeft }}</v-icon>
 | 
						|
              </v-btn>
 | 
						|
              <v-btn :value="ImagePosition.right">
 | 
						|
                <v-icon>{{ $globals.icons.dockRight }}</v-icon>
 | 
						|
              </v-btn>
 | 
						|
              <v-btn :value="ImagePosition.hidden">
 | 
						|
                <v-icon>{{ $globals.icons.windowClose }}</v-icon>
 | 
						|
              </v-btn>
 | 
						|
            </v-btn-toggle>
 | 
						|
          </v-col>
 | 
						|
          <v-col
 | 
						|
            cols="auto"
 | 
						|
            align-self="start"
 | 
						|
          >
 | 
						|
            <v-row no-gutters>
 | 
						|
              <v-switch
 | 
						|
                v-model="preferences.showDescription"
 | 
						|
                hide-details
 | 
						|
                color="primary"
 | 
						|
                :label="$t('recipe.description')"
 | 
						|
              />
 | 
						|
            </v-row>
 | 
						|
            <v-row no-gutters>
 | 
						|
              <v-switch
 | 
						|
                v-model="preferences.showNotes"
 | 
						|
                hide-details
 | 
						|
                color="primary"
 | 
						|
                :label="$t('recipe.notes')"
 | 
						|
              />
 | 
						|
            </v-row>
 | 
						|
          </v-col>
 | 
						|
          <v-col
 | 
						|
            cols="auto"
 | 
						|
            align-self="start"
 | 
						|
          >
 | 
						|
            <v-row no-gutters>
 | 
						|
              <v-switch
 | 
						|
                v-model="preferences.showNutrition"
 | 
						|
                hide-details
 | 
						|
                color="primary"
 | 
						|
                :label="$t('recipe.nutrition')"
 | 
						|
              />
 | 
						|
            </v-row>
 | 
						|
            <v-row no-gutters />
 | 
						|
          </v-col>
 | 
						|
        </v-row>
 | 
						|
      </v-container>
 | 
						|
      <v-card
 | 
						|
        height="fit-content"
 | 
						|
        max-height="40vh"
 | 
						|
        width="100%"
 | 
						|
        class="print-preview"
 | 
						|
        style="overflow-y: auto;"
 | 
						|
      >
 | 
						|
        <RecipePrintView :recipe="recipe" />
 | 
						|
      </v-card>
 | 
						|
    </div>
 | 
						|
  </BaseDialog>
 | 
						|
</template>
 | 
						|
 | 
						|
<script setup lang="ts">
 | 
						|
import type { Recipe } from "~/lib/api/types/recipe";
 | 
						|
import { ImagePosition, useUserPrintPreferences } from "~/composables/use-users/preferences";
 | 
						|
import RecipePrintView from "~/components/Domain/Recipe/RecipePrintView.vue";
 | 
						|
import type { NoUndefinedField } from "~/lib/api/types/non-generated";
 | 
						|
 | 
						|
interface Props {
 | 
						|
  recipe?: NoUndefinedField<Recipe>;
 | 
						|
}
 | 
						|
withDefaults(defineProps<Props>(), {
 | 
						|
  recipe: undefined,
 | 
						|
});
 | 
						|
 | 
						|
const dialog = defineModel<boolean>({ default: false });
 | 
						|
const preferences = useUserPrintPreferences();
 | 
						|
</script>
 |