mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	* added basic recipe print settings added print settings dialog refactored print view to live inside print container * removed unwanted padding * changed preferences layout
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <BaseDialog
 | 
						|
    v-model="dialog"
 | 
						|
    :icon="$globals.icons.printerSettings"
 | 
						|
    :title="$tc('general.print-preferences')"
 | 
						|
    width="70%"
 | 
						|
  >
 | 
						|
    <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;">{{ $tc('recipe.recipe-image') }}</div>
 | 
						|
            <v-btn-toggle v-model="preferences.imagePosition" mandatory 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 :label="$tc('recipe.description')" />
 | 
						|
            </v-row>
 | 
						|
            <v-row no-gutters>
 | 
						|
              <v-switch v-model="preferences.showNotes" hide-details :label="$tc('recipe.notes')" />
 | 
						|
            </v-row>
 | 
						|
          </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 lang="ts">
 | 
						|
import { computed, defineComponent } from "@nuxtjs/composition-api";
 | 
						|
import { Recipe } from "~/lib/api/types/recipe";
 | 
						|
import { NoUndefinedField } from "~/lib/api/types/non-generated";
 | 
						|
import { ImagePosition, useUserPrintPreferences } from "~/composables/use-users/preferences";
 | 
						|
import RecipePrintView from "~/components/Domain/Recipe/RecipePrintView.vue";
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  components: {
 | 
						|
    RecipePrintView,
 | 
						|
  },
 | 
						|
  props: {
 | 
						|
    value: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
    recipe: {
 | 
						|
      type: Object as () => NoUndefinedField<Recipe>,
 | 
						|
      required: true,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  setup(props, context) {
 | 
						|
    const preferences = useUserPrintPreferences();
 | 
						|
 | 
						|
    // V-Model Support
 | 
						|
    const dialog = computed({
 | 
						|
      get: () => {
 | 
						|
        return props.value;
 | 
						|
      },
 | 
						|
      set: (val) => {
 | 
						|
        context.emit("input", val);
 | 
						|
      },
 | 
						|
    });
 | 
						|
 | 
						|
    return {
 | 
						|
      dialog,
 | 
						|
      ImagePosition,
 | 
						|
      preferences,
 | 
						|
    }
 | 
						|
  }
 | 
						|
});
 | 
						|
</script>
 |