2024-05-11 06:03:29 +00:00
|
|
|
<template>
|
|
|
|
|
|
|
|
|
|
<!-- Show a card of the product with the total, taking up the available space and have an expanding section to view sources -->
|
|
|
|
|
<div class="shopping-list-item">
|
2025-07-27 01:58:57 +00:00
|
|
|
<img :src="`${ productGrouping.product?.img_small ?? require('@/assets/missing-product.svg') }`" class="product-image" />
|
2024-05-11 06:03:29 +00:00
|
|
|
<div class="product-details">
|
|
|
|
|
<h3 class="header">
|
2025-07-27 01:58:57 +00:00
|
|
|
<strong><a :href="productGrouping.product?.link">{{ productGrouping.product.name }}</a></strong>,
|
2024-05-19 03:43:59 +00:00
|
|
|
<small>
|
2024-10-13 08:19:36 +00:00
|
|
|
<span v-for="(total, index) in remainingRequired" :key="total.id">
|
2024-05-19 03:43:59 +00:00
|
|
|
<span v-if="index">, </span>
|
2024-05-19 11:57:28 +00:00
|
|
|
<span>{{ formatQuantity(total.quantity) }} {{ total.unit }}</span>
|
2024-05-19 10:21:49 +00:00
|
|
|
</span>
|
2024-10-13 08:19:36 +00:00
|
|
|
<span class="found-marker partial" v-if="productGrouping.purchased.length > 0">✓ {{ getFriendlyDate(lastPurchased) }}</span>
|
2024-05-19 03:43:59 +00:00
|
|
|
</small>
|
2024-05-11 06:03:29 +00:00
|
|
|
</h3>
|
2024-10-13 08:19:36 +00:00
|
|
|
<p class="sources" v-if="productGrouping.requested.length > 0">
|
|
|
|
|
<strong>Need: </strong>
|
|
|
|
|
<span v-for="(source, index) in productGrouping.requested" :key="source.id">
|
|
|
|
|
<span v-if="index">, and </span>
|
|
|
|
|
<span v-if="source.person">
|
|
|
|
|
{{ formatQuantity(source.ingredient.quantity) }} {{ source.ingredient.unit }} for {{ source.person.name }}
|
|
|
|
|
</span>
|
|
|
|
|
<span v-else-if="source.recipe">
|
|
|
|
|
{{ formatQuantity(source.ingredient.quantity) }} {{ source.ingredient.unit }}
|
|
|
|
|
in <router-link :to="`/recipes/${ source.recipe.id }/`">{{ source.recipe.name }}</router-link>
|
|
|
|
|
for <router-link :to="`/meals/${ source.meal.id }/`">{{ source.meal.suggested_date.toLocaleDateString("en-AU", { weekday: 'long', month: 'long', day: 'numeric' }) }}</router-link>
|
|
|
|
|
</span>
|
|
|
|
|
<span v-else-if="source.meal">
|
|
|
|
|
{{ source.ingredient.line }} for <router-link :to="`/meals/${ source.meal.id }/`">{{ source.meal.suggested_date.toLocaleDateString("en-AU", { weekday: 'long', month: 'long', day: 'numeric' }) }}</router-link>
|
|
|
|
|
</span>
|
|
|
|
|
</span>
|
|
|
|
|
</p>
|
|
|
|
|
<p v-if="productGrouping.purchased.length > 0">
|
|
|
|
|
<strong>Already found or purchased: </strong>
|
|
|
|
|
<span v-for="(source, index) in productGrouping.purchased" :key="source.id">
|
2024-05-11 06:03:29 +00:00
|
|
|
<span v-if="index">, and </span>
|
2024-05-12 03:32:18 +00:00
|
|
|
<span v-if="source.person">
|
2024-05-19 11:57:28 +00:00
|
|
|
{{ formatQuantity(source.ingredient.quantity) }} {{ source.ingredient.unit }} for {{ source.person.name }}
|
2024-05-11 06:03:29 +00:00
|
|
|
</span>
|
2024-05-12 03:32:18 +00:00
|
|
|
<span v-else-if="source.recipe">
|
2024-05-19 11:57:28 +00:00
|
|
|
{{ formatQuantity(source.ingredient.quantity) }} {{ source.ingredient.unit }}
|
2024-05-11 06:03:29 +00:00
|
|
|
in <router-link :to="`/recipes/${ source.recipe.id }/`">{{ source.recipe.name }}</router-link>
|
2024-05-25 02:09:27 +00:00
|
|
|
for <router-link :to="`/meals/${ source.meal.id }/`">{{ source.meal.suggested_date.toLocaleDateString("en-AU", { weekday: 'long', month: 'long', day: 'numeric' }) }}</router-link>
|
2024-05-11 06:03:29 +00:00
|
|
|
</span>
|
2024-05-12 03:32:18 +00:00
|
|
|
<span v-else-if="source.meal">
|
2024-05-25 02:09:27 +00:00
|
|
|
{{ source.ingredient.line }} for <router-link :to="`/meals/${ source.meal.id }/`">{{ source.meal.suggested_date.toLocaleDateString("en-AU", { weekday: 'long', month: 'long', day: 'numeric' }) }}</router-link>
|
2024-05-11 06:03:29 +00:00
|
|
|
</span>
|
|
|
|
|
</span>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
/* Show the product image to the left, then the product name and size to the right */
|
|
|
|
|
|
|
|
|
|
.shopping-list-item {
|
2024-05-19 10:21:49 +00:00
|
|
|
position: relative;
|
2024-05-11 06:03:29 +00:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.product-image {
|
|
|
|
|
max-width: 5em;
|
|
|
|
|
max-height: 4em;
|
|
|
|
|
margin-right: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.product-details {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-19 10:21:49 +00:00
|
|
|
.found-marker {
|
|
|
|
|
margin: 1ex;
|
|
|
|
|
padding-top: 0.6ex;
|
|
|
|
|
padding-bottom: 0.5ex;
|
|
|
|
|
padding-left: 1em;
|
|
|
|
|
padding-right: 1em;
|
|
|
|
|
border-radius: 25px;
|
|
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
font-size: smaller;
|
|
|
|
|
color: white;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.found-marker.found {
|
|
|
|
|
background-color: green;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.found-marker.partial {
|
|
|
|
|
background-color: darkgoldenrod;
|
|
|
|
|
}
|
2024-05-11 06:03:29 +00:00
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
2024-10-15 08:40:06 +00:00
|
|
|
import { ago } from '@/dateformats.js';
|
2024-10-13 08:19:36 +00:00
|
|
|
import { calculateTotals } from '@/units.js';
|
|
|
|
|
|
2024-05-11 06:03:29 +00:00
|
|
|
export default {
|
|
|
|
|
name: 'ShoppingListItem',
|
2024-10-13 08:19:36 +00:00
|
|
|
props: ['productGrouping' ],
|
2024-05-11 06:03:29 +00:00
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
expanded: false,
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-10-13 08:19:36 +00:00
|
|
|
computed: {
|
|
|
|
|
remainingRequired() {
|
|
|
|
|
return calculateTotals(this.productGrouping.requested.map(r => r.ingredient));
|
|
|
|
|
},
|
|
|
|
|
expectedExisting() {
|
|
|
|
|
return calculateTotals(this.productGrouping.purchased.map(r => r.ingredient));
|
|
|
|
|
},
|
|
|
|
|
lastPurchased() {
|
2024-10-14 05:11:00 +00:00
|
|
|
return this.productGrouping.purchased.reduce((latest, source) => {
|
|
|
|
|
return (source.shop.created_date && latest > source.shop.created_date) ? latest : source.shop.created_date;
|
2024-10-13 08:19:36 +00:00
|
|
|
}, new Date(0));
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-05-19 10:21:49 +00:00
|
|
|
methods: {
|
|
|
|
|
getFriendlyDate(date) {
|
|
|
|
|
if (!date)
|
|
|
|
|
return '';
|
|
|
|
|
|
2024-10-15 08:40:06 +00:00
|
|
|
return ago(date);
|
2024-05-19 11:57:28 +00:00
|
|
|
},
|
|
|
|
|
formatQuantity(quantity) {
|
|
|
|
|
const log10 = Math.log10(quantity);
|
|
|
|
|
if (log10 < 0) {
|
|
|
|
|
return quantity.toPrecision(2);
|
|
|
|
|
}
|
|
|
|
|
else if (log10 < 1) {
|
|
|
|
|
return quantity.toFixed(1);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
return quantity.toFixed(0);
|
|
|
|
|
}
|
2024-05-19 10:21:49 +00:00
|
|
|
}
|
|
|
|
|
}
|
2024-05-11 06:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</script>
|