-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CIF-1415 - [Cart] Editing the quantity doesn't update the cart (#282)
Move the logic of the `CartOption` component in a separate module. Move the actual cart update mutation in the `actions` module and refresh the cart details after the cart update. Clean-up some leftover `console.log` statements. Co-authored-by: Daniel Platon <[email protected]> Co-authored-by: Mark J. Becker <[email protected]>
- Loading branch information
1 parent
551de8d
commit f374f88
Showing
6 changed files
with
88 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
react-components/src/components/Minicart/useCartOptions.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/******************************************************************************* | ||
* | ||
* Copyright 2019 Adobe. All rights reserved. | ||
* This file is licensed to you under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. You may obtain a copy | ||
* of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under | ||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS | ||
* OF ANY KIND, either express or implied. See the License for the specific language | ||
* governing permissions and limitations under the License. | ||
* | ||
******************************************************************************/ | ||
import { useCartState } from './cartContext'; | ||
import { updateCartItem } from '../../actions/cart'; | ||
|
||
const useCartOptions = ({ updateCartItemMutation, cartDetailsQuery }) => { | ||
const [{ editItem, cartId }, dispatch] = useCartState(); | ||
|
||
const updateCart = async newQuantity => { | ||
dispatch({ type: 'beginLoading' }); | ||
await updateCartItem({ | ||
cartDetailsQuery, | ||
updateCartItemMutation, | ||
cartId, | ||
cartItemId: editItem.id, | ||
itemQuantity: newQuantity, | ||
dispatch | ||
}); | ||
dispatch({ type: 'endLoading' }); | ||
}; | ||
|
||
const data = { editItem, cartId }; | ||
const api = { dispatch, updateCartItem: updateCart }; | ||
return [data, api]; | ||
}; | ||
|
||
export default useCartOptions; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters