feat: adjust buy product on click
This commit is contained in:
parent
5069f63374
commit
c73f642b93
|
@ -1,66 +0,0 @@
|
||||||
import React from "react";
|
|
||||||
import {Form, Input, message, Modal} from "antd";
|
|
||||||
import {observer} from "mobx-react-lite";
|
|
||||||
import {useStore} from "../utils/useStore";
|
|
||||||
|
|
||||||
export const BuyProductModal = observer(({initialData}) => {
|
|
||||||
const store = useStore();
|
|
||||||
const [form] = Form.useForm();
|
|
||||||
|
|
||||||
const handleCancelBuyProduct = () => {
|
|
||||||
form.resetFields();
|
|
||||||
store.transaction.visibleModalTransaction = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleSubmitBuyProduct = async (data) => {
|
|
||||||
try {
|
|
||||||
const response = await store.transaction.buyProduct({productCode: data});
|
|
||||||
if (response.status === 200) {
|
|
||||||
message.success("Success Buy Product");
|
|
||||||
} else {
|
|
||||||
message.error("Failed Buy Product");
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
console.log(e, "apa errornya");
|
|
||||||
message.error("Failed Buy Product");
|
|
||||||
}
|
|
||||||
store.transaction.visibleModalTransaction = false;
|
|
||||||
form.resetFields();
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<Modal
|
|
||||||
visible={store.transaction.visibleModalTransaction}
|
|
||||||
title={`Buy Product ${initialData?.name}`}
|
|
||||||
okText="Buy"
|
|
||||||
cancelText="Cancel"
|
|
||||||
onCancel={handleCancelBuyProduct}
|
|
||||||
onOk={() => {
|
|
||||||
form
|
|
||||||
.validateFields()
|
|
||||||
.then((values) => {
|
|
||||||
handleSubmitBuyProduct(values);
|
|
||||||
})
|
|
||||||
.catch((info) => {
|
|
||||||
console.error("Validate Failed:", info);
|
|
||||||
});
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Form
|
|
||||||
form={form}
|
|
||||||
layout="vertical"
|
|
||||||
initialValues={{supplier: store.supplier.code}}
|
|
||||||
>
|
|
||||||
<Form.Item
|
|
||||||
name="code"
|
|
||||||
label="Code"
|
|
||||||
rules={[{required: true, message: "Please input Code!"}]}
|
|
||||||
>
|
|
||||||
<Input/>
|
|
||||||
</Form.Item>
|
|
||||||
</Form>
|
|
||||||
</Modal>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
});
|
|
|
@ -1,5 +1,6 @@
|
||||||
export const appConfig = {
|
export const appConfig = {
|
||||||
apiUrl: 'https://ppob-backend.k3s.bangun-kreatif.com/v1'
|
apiUrl: 'https://ppob-backend.k3s.bangun-kreatif.com/v1'
|
||||||
|
// apiUrl: 'http://localhost:3222/v1'
|
||||||
};
|
};
|
||||||
|
|
||||||
//export default appConfig;
|
//export default appConfig;
|
||||||
|
|
|
@ -1,147 +1,147 @@
|
||||||
import React, { useEffect, useState } from "react";
|
import React, {useEffect, useState} from "react";
|
||||||
import { useStore } from "../../utils/useStore";
|
import {useStore} from "../../utils/useStore";
|
||||||
import { Button, Card, Col, Input, Row, Select, message } from "antd";
|
import {Button, Card, Col, Input, message, Modal, Row, Select} from "antd";
|
||||||
import { observer } from "mobx-react-lite";
|
import {observer} from "mobx-react-lite";
|
||||||
import { BuyProductModal } from "../../component/BuyProductModal";
|
import {MoneyCollectOutlined} from "@ant-design/icons";
|
||||||
|
|
||||||
const { Search } = Input;
|
const {Search} = Input;
|
||||||
const { Option } = Select;
|
const {Option} = Select;
|
||||||
|
|
||||||
export const Product = observer(() => {
|
export const Product = observer(() => {
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
|
|
||||||
const [isLoading, setIsLoading] = useState(false);
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
const [productData, setProductData] = useState([]);
|
const [productData, setProductData] = useState([]);
|
||||||
const [data, setData] = useState({});
|
|
||||||
const [kode, setKode] = useState({});
|
|
||||||
const [cardIndex, setCardIndex] = useState({});
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const init = async () => {
|
const init = async () => {
|
||||||
try {
|
try {
|
||||||
setIsLoading(true);
|
setIsLoading(true);
|
||||||
await store.transaction.getDataSubCategories();
|
await store.transaction.getDataSubCategories();
|
||||||
await store.transaction.getDataCategories();
|
await store.transaction.getDataCategories();
|
||||||
setIsLoading(false);
|
setIsLoading(false);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
setIsLoading(false);
|
setIsLoading(false);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
init();
|
init();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
// data
|
// data
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
console.log("⚡ transaction data store", store.transaction.data);
|
console.log("⚡ transaction data store", store.transaction.data);
|
||||||
setProductData(store.transaction.data);
|
setProductData(store.transaction.data);
|
||||||
}, [store.transaction.data]);
|
}, [store.transaction.data]);
|
||||||
|
|
||||||
// Subcategory
|
// Subcategory
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
console.log(
|
console.log(
|
||||||
"⚡ transaction subcategory store",
|
"⚡ transaction subcategory store",
|
||||||
store.transaction.dataSubCategories
|
store.transaction.dataSubCategories
|
||||||
);
|
);
|
||||||
}, [store.transaction.dataSubCategories]);
|
}, [store.transaction.dataSubCategories]);
|
||||||
|
|
||||||
const handleChangeSubcategory = async (item) => {
|
const handleChangeSubcategory = async (item) => {
|
||||||
console.log("item", item);
|
store.transaction.filterSubCategory = item;
|
||||||
store.transaction.filterSubCategory = item;
|
await store.transaction.getData();
|
||||||
await store.transaction.getData();
|
};
|
||||||
};
|
|
||||||
|
|
||||||
const handleBuyProduct = async (kode) => {
|
const handleBuyProduct = async (data) => {
|
||||||
console.log(kode);
|
try {
|
||||||
try {
|
const response = await store.transaction.buyProduct({productCode: data});
|
||||||
await store.product.buyProduct({ productCode: kode });
|
if (response.status === 200) {
|
||||||
message.success("Success Buy Product");
|
message.success("Success Buy Product");
|
||||||
} catch (e) {
|
} else {
|
||||||
message.error("Failed Buy Product");
|
message.error("Failed Buy Product");
|
||||||
}
|
}
|
||||||
};
|
} catch (e) {
|
||||||
|
console.log(e, "apa errornya");
|
||||||
|
message.error("Failed Buy Product");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Row>
|
<Row>
|
||||||
<span style={{ fontWeight: "bold", marginBottom: "10px" }}>
|
<span style={{fontWeight: "bold", marginBottom: "10px"}}>Sub Category</span>
|
||||||
Sub Category
|
</Row>
|
||||||
</span>
|
<Row>
|
||||||
</Row>
|
<Col span={24}>
|
||||||
<Row>
|
<Select
|
||||||
<Col span={24}>
|
placeholder={"Select Sub Category"}
|
||||||
<Select
|
allowClear={true}
|
||||||
placeholder={"Select Sub Category"}
|
onChange={(val) => {
|
||||||
allowClear={true}
|
if (val) {
|
||||||
onChange={(val) => {
|
handleChangeSubcategory(val);
|
||||||
if (val) {
|
}
|
||||||
handleChangeSubcategory(val);
|
}}
|
||||||
}
|
style={{marginBottom: "10px", width: "100%"}}
|
||||||
}}
|
>
|
||||||
style={{ marginBottom: "10px", width: "100%" }}
|
{store.transaction.dataSubCategories.map((item, index) => (
|
||||||
>
|
<Option key={item.id} value={item.id}>
|
||||||
{store.transaction.dataSubCategories.map((item, index) => (
|
{item.name}
|
||||||
<Option key={item.id} value={item.id}>
|
</Option>
|
||||||
{item.name}
|
))}
|
||||||
</Option>
|
</Select>
|
||||||
))}
|
</Col>
|
||||||
</Select>
|
</Row>
|
||||||
</Col>
|
<Row justify={"center"} align={"center"} style={{marginBottom: "1rem"}}>
|
||||||
</Row>
|
<Col
|
||||||
<Row justify={"center"} align={"center"} style={{ marginBottom: "1rem" }}>
|
span={12}
|
||||||
<Col
|
style={{fontWeight: "bold", display: "flex", alignItems: "center"}}
|
||||||
span={12}
|
>
|
||||||
style={{ fontWeight: "bold", display: "flex", alignItems: "center" }}
|
Produk & Nominal
|
||||||
>
|
</Col>
|
||||||
Produk & Nominal
|
<Col span={12} style={{textAlign: "right"}}>
|
||||||
</Col>
|
<Search
|
||||||
<Col span={12} style={{ textAlign: "right" }}>
|
placeholder="input search text"
|
||||||
<Search
|
style={{width: 200, marginRight: 10}}
|
||||||
placeholder="input search text"
|
/>
|
||||||
style={{ width: 200, marginRight: 10 }}
|
</Col>
|
||||||
/>
|
</Row>
|
||||||
</Col>
|
{productData.length != 0 && (
|
||||||
</Row>
|
<Row>
|
||||||
{productData.length != 0 && (
|
{productData.map((item, index) => (
|
||||||
<Row>
|
<Col key={index} xs={24} md={16} lg={8}>
|
||||||
{productData.map((item, index) => (
|
<Card
|
||||||
<Col key={index} xs={24} md={16} lg={8}>
|
onClick={() => {
|
||||||
<Card
|
Modal.confirm({
|
||||||
onClick={() => {
|
title: `Are you sure buy ${item.name}?`,
|
||||||
setKode(item.code);
|
icon: <MoneyCollectOutlined/>,
|
||||||
setCardIndex(index);
|
okText: "Confirm",
|
||||||
}}
|
cancelText: "Cancel",
|
||||||
hoverable
|
okType: "primary",
|
||||||
style={{
|
onOk() {
|
||||||
cursor: "pointer",
|
handleBuyProduct(item.code)
|
||||||
borderColor: cardIndex === index ? "#2D9CDB" : "",
|
},
|
||||||
marginLeft: "10px",
|
onCancel() {
|
||||||
}}
|
console.log("Cancel");
|
||||||
>
|
},
|
||||||
<span style={{ color: "black" }}>{item.name}</span>
|
});
|
||||||
<br />
|
}}
|
||||||
<span style={{ color: "grey", fontSize: 10 }}>
|
style={{cursor: "pointer"}}
|
||||||
|
>
|
||||||
|
<span style={{color: "black"}}>{item.name}</span>
|
||||||
|
<br/>
|
||||||
|
<span style={{color: "grey", fontSize: 10}}>
|
||||||
{new Intl.NumberFormat("id-ID", {
|
{new Intl.NumberFormat("id-ID", {
|
||||||
style: "currency",
|
style: "currency",
|
||||||
currency: "IDR",
|
currency: "IDR",
|
||||||
}).format(item?.currentPrice?.mark_up_price)}
|
}).format(item?.currentPrice?.mark_up_price)}
|
||||||
</span>
|
</span>
|
||||||
</Card>
|
</Card>
|
||||||
</Col>
|
</Col>
|
||||||
))}
|
))}
|
||||||
</Row>
|
</Row>
|
||||||
)}
|
)}
|
||||||
{productData.length !== 0 && (
|
{productData.length !== 0 && (
|
||||||
<Col style={{ textAlign: "right" }}>
|
<Col style={{ textAlign: "right" }}>
|
||||||
<Button
|
<Button style={{backgroundColor: "#2D9CDB", color: "white"}}>
|
||||||
style={{ backgroundColor: "#2D9CDB", color: "white" }}
|
|
||||||
onClick={() => handleBuyProduct(kode)}
|
|
||||||
>
|
|
||||||
Beli Sekarang
|
Beli Sekarang
|
||||||
</Button>
|
</Button>
|
||||||
</Col>
|
</Col>
|
||||||
)}
|
)}
|
||||||
<BuyProductModal initialData={data} />
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user