mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			80 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div
 | |
|     v-if="yieldDisplay"
 | |
|     class="d-flex align-center"
 | |
|   >
 | |
|     <v-row
 | |
|       no-gutters
 | |
|       class="d-flex flex-wrap align-center"
 | |
|       style="font-size: larger;"
 | |
|     >
 | |
|       <v-icon
 | |
|         size="x-large"
 | |
|         start
 | |
|         color="primary"
 | |
|       >
 | |
|         {{ $globals.icons.bread }}
 | |
|       </v-icon>
 | |
|       <p class="my-0 opacity-80">
 | |
|         <span class="font-weight-bold">{{ $t("recipe.yield") }}</span><br>
 | |
|         <!-- eslint-disable-next-line vue/no-v-html -->
 | |
|         <span v-html="yieldDisplay" />
 | |
|       </p>
 | |
|     </v-row>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts">
 | |
| import DOMPurify from "dompurify";
 | |
| import { useScaledAmount } from "~/composables/recipes/use-scaled-amount";
 | |
| 
 | |
| export default defineNuxtComponent({
 | |
|   props: {
 | |
|     yieldQuantity: {
 | |
|       type: Number,
 | |
|       default: 0,
 | |
|     },
 | |
|     yieldText: {
 | |
|       type: String,
 | |
|       default: "",
 | |
|     },
 | |
|     scale: {
 | |
|       type: Number,
 | |
|       default: 1,
 | |
|     },
 | |
|     color: {
 | |
|       type: String,
 | |
|       default: "accent custom-transparent",
 | |
|     },
 | |
|   },
 | |
|   setup(props) {
 | |
|     function sanitizeHTML(rawHtml: string) {
 | |
|       return DOMPurify.sanitize(rawHtml, {
 | |
|         USE_PROFILES: { html: true },
 | |
|         ALLOWED_TAGS: ["strong", "sup"],
 | |
|       });
 | |
|     }
 | |
| 
 | |
|     const yieldDisplay = computed<string>(() => {
 | |
|       const components: string[] = [];
 | |
| 
 | |
|       const { scaledAmountDisplay } = useScaledAmount(props.yieldQuantity, props.scale);
 | |
|       if (scaledAmountDisplay) {
 | |
|         components.push(scaledAmountDisplay);
 | |
|       }
 | |
| 
 | |
|       const text = props.yieldText;
 | |
|       if (text) {
 | |
|         components.push(text);
 | |
|       }
 | |
| 
 | |
|       return sanitizeHTML(components.join(" "));
 | |
|     });
 | |
| 
 | |
|     return {
 | |
|       yieldDisplay,
 | |
|     };
 | |
|   },
 | |
| });
 | |
| </script>
 |