|
@@ -37,12 +37,7 @@ export const AvatarGroupOriented = styled((props) => {
|
|
|
},
|
|
|
".MuiAvatar-root": { /*width: 20, height: 20,*/ marginLeft: 1 }
|
|
|
}));
|
|
|
-const Good = ({ /*good = {},*/ maxWidth = 'md', showAddToCard = true, addToCart = undefined }) => {
|
|
|
- const { _id } = useParams();
|
|
|
- const { isLoading, data } = useGetGoodByIdQuery(_id);
|
|
|
- let good = isLoading ? { name: 'loading', goods: [] } : data?.GoodFindOne;
|
|
|
- const dispatch = useDispatch();
|
|
|
- dispatch(actionSetCurrentGood(_id));
|
|
|
+const Good = ({ good, maxWidth = 'md', showAddToCard = true, actionAddGoodToCart }) => {
|
|
|
let [currentImageIndex, setCurrentImageIndex] = useState(0);
|
|
|
let [expanded, setExpanded] = useState(false);
|
|
|
const handleExpandClick = () => setExpanded(!expanded);
|
|
@@ -99,7 +94,7 @@ const Good = ({ /*good = {},*/ maxWidth = 'md', showAddToCard = true, addToCart
|
|
|
{
|
|
|
showAddToCard && (
|
|
|
<Button size='small' color='primary'
|
|
|
- onClick={() => addToCart(good)}
|
|
|
+ onClick={actionAddGoodToCart}
|
|
|
>
|
|
|
Add to cart
|
|
|
</Button>
|
|
@@ -119,7 +114,13 @@ const Good = ({ /*good = {},*/ maxWidth = 'md', showAddToCard = true, addToCart
|
|
|
)
|
|
|
}
|
|
|
|
|
|
-const CGood = connect(state => ({}),
|
|
|
- { addToCart: actionAddGoodToCart })(Good);
|
|
|
+const CGood = (maxWidth = 'md', showAddToCard = true) => {
|
|
|
+ const { _id } = useParams();
|
|
|
+ const { isLoading, data } = useGetGoodByIdQuery(_id);
|
|
|
+ let good = isLoading ? { name: 'loading', goods: [] } : data?.GoodFindOne;
|
|
|
+ const dispatch = useDispatch();
|
|
|
+ dispatch(actionSetCurrentGood(_id));
|
|
|
|
|
|
+ return <Good good={good} maxWidth={maxWidth} showAddToCard={showAddToCard} actionAddGoodToCart={() => dispatch(actionAddGoodToCart(good))} />
|
|
|
+}
|
|
|
export { CGood };
|