Files
planetposen-frontend/src/routes/warehouse/[id]/PricingSection.svelte
Kevin 296cfb80a0 Feat: JsonLd product metadata (#2)
* Generates JSON ld structured metadata from a product & appends to head

* Updated IProduct & IVariation interface

* Added IProductResponse & IProductsResponse interfaces

* Fixed sitemap urls having to many protocols
2022-11-28 22:19:32 +01:00

257 lines
6.5 KiB
Svelte

<script lang="ts">
import type { IProduct, IVariation } from '$lib/interfaces/IProduct';
import Button from '$lib/components/Button.svelte';
import Badge from '$lib/components/Badge.svelte';
import BadgeType from '$lib/interfaces/BadgeType';
export let product: IProduct;
let table: HTMLElement;
let editingVariationIndex = -1;
interface ISkuResponse {
skus: IVariation[];
success: boolean;
}
const resetEditingIndex = () => (editingVariationIndex = -1);
const updateProductsVariations = (response: ISkuResponse) => {
product.variations = response?.skus;
};
function setDefault(variation: IVariation) {
if (!product.variations) return;
let url = `/api/product/${product.product_no}/sku/${variation.sku_id}/default_price`;
if (window?.location?.href.includes('localhost')) {
url = 'http://localhost:30010'.concat(url);
}
fetch(url, { method: 'POST' })
.then((resp) => resp.json())
.then(updateProductsVariations);
}
function addSkuVariation() {
// ADD OVER API - update product.variations with result --> set edit
// const newSku: IProductVariation = {
// sku_id: null,
// stock: 0,
// size: null,
// price: 0,
// default_price: false
// }
// if (!product.variations || product.variations.length === 0) {
// product.variations = []
// }
// product.variations.push(newSku)
// editingVariationIndex = product.variations.length - 1
let url = `/api/product/${product.product_no}/sku`;
if (window?.location?.href.includes('localhost')) {
url = 'http://localhost:30010'.concat(url);
}
fetch(url, { method: 'POST' })
.then((resp) => resp.json())
.then(updateProductsVariations)
.then(() => (editingVariationIndex = product.variations.length - 1));
}
function saveSkuVariation(variation: IVariation) {
let url = `/api/product/${product.product_no}/sku/${variation?.sku_id}`;
if (window?.location?.href.includes('localhost')) {
url = 'http://localhost:30010'.concat(url);
}
const { stock, size, price } = variation;
const options = {
method: 'PATCH',
body: JSON.stringify({ stock, price, size }),
headers: {
'Content-Type': 'application/json'
}
};
fetch(url, options)
.then((resp) => resp.json())
.then(updateProductsVariations)
.then(() => resetEditingIndex());
}
function deleteVariation(variation: IVariation) {
console.log('delete it using api', variation);
let url = `/api/product/${product.product_no}/sku/${variation?.sku_id}`;
if (window?.location?.href.includes('localhost')) {
url = 'http://localhost:30010'.concat(url);
}
fetch(url, { method: 'DELETE' })
.then((resp) => resp.json())
.then(updateProductsVariations)
.then(() => resetEditingIndex());
}
function disableEditIfClickOutsideTable(event: MouseEvent) {
console.log('target:', event.target);
if (!table.contains(event.target as Node)) {
console.log('outside?');
} else {
console.log('inside');
}
}
</script>
<svelte:window on:click="{disableEditIfClickOutsideTable}" />
<table class="pricing" bind:this="{table}">
<thead>
<tr>
<th>Price</th>
<th>Stock</th>
<th>Type/size</th>
{#if editingVariationIndex >= 0}
<th class="cta">Save</th>
<th class="cta">Delete</th>
{:else}
<th class="cta"></th>
<th class="cta"></th>
{/if}
</tr>
</thead>
<tbody>
{#if product?.variations?.length}
{#each product?.variations as variation, index}
{#if editingVariationIndex !== index}
<tr
on:click="{() => (editingVariationIndex = index)}"
on:drop="{() => setDefault(variation)}"
on:dragover|preventDefault
>
<td>
<span>Nok {variation.price}</span>
{#if variation.default_price}
<div draggable="true">
<Badge title="Default price" type="{BadgeType.PENDING}" icon="{''}" />
</div>
{/if}
</td>
<td>{variation.stock}</td>
<td>{variation.size}</td>
<td></td>
<td></td>
</tr>
{:else}
<tr class="edit" on:drop="{() => setDefault(variation)}" on:dragover|preventDefault>
<td>
<span>Nok <input type="number" bind:value="{variation.price}" /></span>
{#if variation.default_price}
<div draggable="true">
<Badge title="Default price" type="{BadgeType.PENDING}" icon="{''}" />
</div>
{/if}
</td>
<td><input type="number" bind:value="{variation.stock}" /></td>
<td><input bind:value="{variation.size}" /></td>
<td class="cta">
<button on:click="{() => saveSkuVariation(variation)}">💾</button>
</td>
<td class="cta">
<button on:click="{() => deleteVariation(variation)}">🗑️</button>
</td>
</tr>
{/if}
{/each}
{/if}
</tbody>
</table>
<Button text="add new" on:click="{addSkuVariation}" />
<style lang="scss" module="scoped">
@import '../../../styles/media-queries.scss';
table.pricing {
width: 100%;
border-collapse: collapse;
margin-bottom: 1.85rem;
thead th {
text-align: left;
font-weight: 500;
&:not(&:first-of-type) {
width: 10%;
}
}
.cta {
width: 45px !important;
text-align: center;
}
[draggable='true'] {
cursor: move;
}
tbody {
td {
min-height: 2rem;
}
tr:hover {
cursor: pointer;
background-color: #f6f8fa;
}
tr:not(.edit) {
td {
padding-right: 3rem;
}
&:hover > td:first-of-type {
position: relative;
&::before {
content: '✏️';
position: absolute;
left: -1.5rem;
top: 0.5rem;
font-size: 1rem;
}
}
}
button {
-webkit-appearance: none;
background-color: transparent;
border: unset;
cursor: pointer;
}
input {
max-width: 4rem;
padding: 0;
margin: 0;
}
td:first-of-type {
display: flex;
align-items: center;
span {
margin-right: 1rem;
}
}
}
td {
white-space: nowrap;
-webkit-user-select: none;
user-select: none;
}
}
</style>