ok
This commit is contained in:
@@ -11,6 +11,8 @@ import {
|
||||
handlePaymentFromGuestDevice,
|
||||
} from "../helpers/transactionHelpers";
|
||||
|
||||
import { getItemsByCafeId } from "../helpers/cartHelpers.js";
|
||||
|
||||
export default function Invoice({ table, sendParam, deviceType, socket }) {
|
||||
const { shopId, tableCode } = useParams();
|
||||
sendParam({ shopId, tableCode });
|
||||
@@ -21,6 +23,7 @@ export default function Invoice({ table, sendParam, deviceType, socket }) {
|
||||
|
||||
const textareaRef = useRef(null);
|
||||
const [orderType, setOrderType] = useState("pickup");
|
||||
const [orderMethod, setOrderMethod] = useState("cash");
|
||||
const [tableNumber, setTableNumber] = useState("");
|
||||
const [email, setEmail] = useState("");
|
||||
|
||||
@@ -39,6 +42,7 @@ export default function Invoice({ table, sendParam, deviceType, socket }) {
|
||||
.filter((itemType) => itemType.itemList.length > 0); // Remove empty itemTypes
|
||||
|
||||
setCartItems(filteredItems);
|
||||
console.log(filteredItems)
|
||||
|
||||
// Update local storage by removing unavailable items
|
||||
const updatedLocalStorage =
|
||||
@@ -140,6 +144,10 @@ export default function Invoice({ table, sendParam, deviceType, socket }) {
|
||||
setOrderType(event.target.value);
|
||||
};
|
||||
|
||||
const handleOrderMethodChange = (event) => {
|
||||
setOrderMethod(event.target.value);
|
||||
};
|
||||
|
||||
const handleTableNumberChange = (event) => {
|
||||
setTableNumber(event.target.value);
|
||||
};
|
||||
@@ -148,10 +156,24 @@ export default function Invoice({ table, sendParam, deviceType, socket }) {
|
||||
setEmail(event.target.value);
|
||||
};
|
||||
return (
|
||||
<div className={styles.Invoice}>
|
||||
<div style={{ marginTop: "30px" }}></div>
|
||||
<div className={styles.Invoice} style={{height: (getItemsByCafeId(shopId).length > 0 ? '': 'calc(100vh - 75px)'), minHeight: (getItemsByCafeId(shopId).length > 0 ? 'calc(100vh - 210px)': '') }}>
|
||||
|
||||
<div style={{ marginTop: "50px" }}></div>
|
||||
<h2 className={styles["Invoice-title"]}>Keranjang</h2>
|
||||
<div style={{ marginTop: "30px" }}></div>
|
||||
{getItemsByCafeId(shopId) < 1 ?
|
||||
<div style={{height: '75vh', display:'flex', justifyContent: 'center', flexDirection: 'column', alignContent: 'center', alignItems: 'center'}}>
|
||||
<div style={{width: '50%'}}>
|
||||
<svg
|
||||
viewBox="0 0 32 32"
|
||||
style={{ fill: "#8F8787" }}
|
||||
>
|
||||
<path d="M9.79175 24.75C8.09591 24.75 6.72383 26.1375 6.72383 27.8333C6.72383 29.5292 8.09591 30.9167 9.79175 30.9167C11.4876 30.9167 12.8751 29.5292 12.8751 27.8333C12.8751 26.1375 11.4876 24.75 9.79175 24.75ZM0.541748 0.0833435V3.16668H3.62508L9.17508 14.8679L7.09383 18.645C6.84717 19.0767 6.70842 19.5854 6.70842 20.125C6.70842 21.8208 8.09591 23.2083 9.79175 23.2083H28.2917V20.125H10.4392C10.2234 20.125 10.0538 19.9554 10.0538 19.7396L10.1001 19.5546L11.4876 17.0417H22.973C24.1292 17.0417 25.1467 16.4096 25.6709 15.4538L31.1901 5.44834C31.3134 5.23251 31.3751 4.97043 31.3751 4.70834C31.3751 3.86043 30.6813 3.16668 29.8334 3.16668H7.03217L5.583 0.0833435H0.541748ZM25.2084 24.75C23.5126 24.75 22.1405 26.1375 22.1405 27.8333C22.1405 29.5292 23.5126 30.9167 25.2084 30.9167C26.9042 30.9167 28.2917 29.5292 28.2917 27.8333C28.2917 26.1375 26.9042 24.75 25.2084 24.75Z" />
|
||||
</svg>
|
||||
</div>
|
||||
<h1 style={{fontSize: '120%', color :'#8F8787' }}>Tidak ada item di keranjang</h1>
|
||||
</div>
|
||||
:
|
||||
<>
|
||||
<div className={styles.RoundedRectangle}>
|
||||
{cartItems.map((itemType) => (
|
||||
<ItemLister
|
||||
@@ -204,32 +226,39 @@ export default function Invoice({ table, sendParam, deviceType, socket }) {
|
||||
placeholder="Tambahkan catatan..."
|
||||
/>
|
||||
</div>
|
||||
<div className={styles.TotalContainer}>
|
||||
<span>Total:</span>
|
||||
<span>Rp {totalPrice}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.PaymentOption}>
|
||||
<div className={styles.TotalContainer}>
|
||||
<span>Opsi pembayaran</span>
|
||||
<span></span>
|
||||
<span>Pembayaran</span>
|
||||
<span>
|
||||
<select
|
||||
style={{borderRadius: '6px', fontSize: '20px'}}
|
||||
id="orderMethod"
|
||||
value={orderMethod}
|
||||
onChange={handleOrderMethodChange}
|
||||
>
|
||||
<option value="cash"> Tunai</option>
|
||||
<option value="cashless"> Non Tunai </option>
|
||||
</select>
|
||||
</span>
|
||||
</div>
|
||||
<button className={styles.PayButton} onClick={() => handlePay(false)}>
|
||||
{isPaymentLoading ? (
|
||||
<ColorRing height="50" width="50" color="white" />
|
||||
) : (
|
||||
"Nontunai"
|
||||
)}
|
||||
</button>
|
||||
<div className={styles.Pay2Button} onClick={() => handlePay(true)}>
|
||||
{isPaymentLoading ? (
|
||||
<ColorRing height="12" width="12" color="white" />
|
||||
) : (
|
||||
"Tunai"
|
||||
)}
|
||||
<div style={{display: 'flex', paddingLeft: '25px', paddingRight: '25px'}}>
|
||||
<button className={styles.PayButton} onClick={() => handlePay(orderMethod == 'cash' ? true : false)}>
|
||||
{isPaymentLoading ? (
|
||||
<ColorRing height="50" width="50" color="white" />
|
||||
) : (
|
||||
<div>
|
||||
<span>Pesan</span>
|
||||
|
||||
<span>Rp{totalPrice}</span>
|
||||
</div>
|
||||
)}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.PaymentOptionMargin}></div>
|
||||
</>
|
||||
}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user