mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-18 20:59:41 +02:00
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
110 lines
2.1 KiB
Vue
110 lines
2.1 KiB
Vue
<template>
|
|
<div class="ma-0 pa-0 text-subtitle-1 dense-markdown ingredient-item">
|
|
<SafeMarkdown
|
|
v-if="parsedIng.quantity"
|
|
class="d-inline"
|
|
:source="parsedIng.quantity"
|
|
/>
|
|
<template v-if="parsedIng.unit">
|
|
{{ parsedIng.unit }}
|
|
</template>
|
|
<SafeMarkdown
|
|
v-if="parsedIng.note && !parsedIng.name"
|
|
class="text-bold d-inline"
|
|
:source="parsedIng.note"
|
|
/>
|
|
<template v-else>
|
|
<SafeMarkdown
|
|
v-if="parsedIng.name"
|
|
class="text-bold d-inline"
|
|
:source="parsedIng.name"
|
|
/>
|
|
<SafeMarkdown
|
|
v-if="parsedIng.note"
|
|
class="note"
|
|
:source="parsedIng.note"
|
|
/>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import type { RecipeIngredient } from "~/lib/api/types/household";
|
|
import { useParsedIngredientText } from "~/composables/recipes";
|
|
|
|
export default defineNuxtComponent({
|
|
props: {
|
|
ingredient: {
|
|
type: Object as () => RecipeIngredient,
|
|
required: true,
|
|
},
|
|
disableAmount: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
scale: {
|
|
type: Number,
|
|
default: 1,
|
|
},
|
|
},
|
|
setup(props) {
|
|
const parsedIng = computed(() => {
|
|
return useParsedIngredientText(props.ingredient, props.disableAmount, props.scale);
|
|
});
|
|
|
|
return {
|
|
parsedIng,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.ingredient-item {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 0.25em;
|
|
word-break: break-word;
|
|
min-width: 0;
|
|
|
|
.d-inline {
|
|
& > p {
|
|
display: inline;
|
|
&:has(> sub) > sup {
|
|
letter-spacing: -0.05rem;
|
|
}
|
|
}
|
|
&:has(sub) {
|
|
&:after {
|
|
letter-spacing: -0.2rem;
|
|
}
|
|
}
|
|
sup {
|
|
& + span {
|
|
letter-spacing: -0.05rem;
|
|
}
|
|
&:before {
|
|
letter-spacing: 0rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.text-bold {
|
|
font-weight: bold;
|
|
white-space: normal;
|
|
word-break: break-word;
|
|
}
|
|
}
|
|
|
|
.note {
|
|
flex-basis: 100%;
|
|
width: 100%;
|
|
display: block;
|
|
line-height: 1.3em;
|
|
font-size: 0.8em;
|
|
opacity: 0.7;
|
|
white-space: normal;
|
|
word-break: break-word;
|
|
}
|
|
</style>
|