-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CIF-1398 - [My Account] Address book management #353
Commits on Jun 24, 2020
-
CIF-1444 - Add my account dropdown to header (#303)
* Add a new component `account` to header, it provides a container div for its react component * Add new `<Account>` component to main React app `react-components.js`, it renders `<AccountTrigger>` component to toggle the `<AccountDropdown>` component, two components `<SignOutLink>` and `<SignInForm>` are created for reusable purpose * Add a new reducer to toggle open state of account dropdown
Zhi Wang committedJun 24, 2020 Configuration menu - View commit details
-
Copy full SHA for d419c7d - Browse repository at this point
Copy the full SHA d419c7dView commit details -
CIF-1444 - Add my account dropdown to header (#303)
* Refactor `<SignIn>` and `<MyAccount>` components to use `<SignOutLink>` and `<SignInForm>` created for account dropdown, remove the duplicate CSS as they are existing in CSS file of `<SignInForm>`
Zhi Wang committedJun 24, 2020 Configuration menu - View commit details
-
Copy full SHA for 682eab7 - Browse repository at this point
Copy the full SHA 682eab7View commit details -
CIF-1444 - Add my account dropdown to header (#303)
* Fix a bug found in `<AccountLink>` component, the issue was that the `identity-obj-proxy` module used by `jest` during the test running will mock `classes` imported to `<AccountLink>`, this breaks the rendering of the `<Button>` component because it doesn't expect `classes` to be mocked, instead, it should be an imported CSS modules, so we assign imported CSS modules to an object `classes`, now the mock won't happen so the test can run correctly * Add or update test files for `<AccountLink>`, `<MyAccount>`, `<SignOutLink>`, `<SignIn>`, and `<SignInForm>`, add generated or updated snapshots files for them as well
Zhi Wang committedJun 24, 2020 Configuration menu - View commit details
-
Copy full SHA for 5de378d - Browse repository at this point
Copy the full SHA 5de378dView commit details
Commits on Jun 25, 2020
-
Merge branch 'master' into issues/CIF-1444
Zhi Wang committedJun 25, 2020 Configuration menu - View commit details
-
Copy full SHA for 90d658d - Browse repository at this point
Copy the full SHA 90d658dView commit details -
CIF-1444 - Add my account dropdown to header (#303)
* Add a new component `<AccountIconText>` to display the sign in text if the user is not signed in, or display greeting text if the user has signed in, this component will be displayed next to the account icon on header of storefront * Add corresponding translations in `account.json` i18n file
Zhi Wang committedJun 25, 2020 Configuration menu - View commit details
-
Copy full SHA for daab8b2 - Browse repository at this point
Copy the full SHA daab8b2View commit details -
CIF-1444 - Add my account dropdown to header (#303)
* Fix the prettier issue for `accountIconText.css`
Zhi Wang committedJun 25, 2020 Configuration menu - View commit details
-
Copy full SHA for 5cba0c2 - Browse repository at this point
Copy the full SHA 5cba0c2View commit details -
CIF-1444 - Fix prettier issue found in 'accountIconText.css' file (#303)
Zhi Wang committedJun 25, 2020 Configuration menu - View commit details
-
Copy full SHA for 26db79b - Browse repository at this point
Copy the full SHA 26db79bView commit details -
Merge branch 'issues/CIF-1444' of https://github.com/adobe/aem-core-c…
…if-components into issues/CIF-1444
Zhi Wang committedJun 25, 2020 Configuration menu - View commit details
-
Copy full SHA for 2aa4df5 - Browse repository at this point
Copy the full SHA 2aa4df5View commit details -
CIF-1444 - Fix Java baseline check issue due to the change of interface
* Add 'package-info.java' to change the version to '2.0.0' as suggested by Java baseline plugin during the mvn build
Zhi Wang committedJun 25, 2020 Configuration menu - View commit details
-
Copy full SHA for 89ebc38 - Browse repository at this point
Copy the full SHA 89ebc38View commit details -
CIF-1444: Update translation by using npm script 'translation:scan'
Zhi Wang committedJun 25, 2020 Configuration menu - View commit details
-
Copy full SHA for 6a64f99 - Browse repository at this point
Copy the full SHA 6a64f99View commit details
Commits on Jun 26, 2020
-
CIF-1444: Add new features to account dropdown (#303)
* Now we can use account dropdown to reset password and create a new account * Add 'Address Book' and 'Address Information' to dropdown, at the moment, they're dummy links, the implementations will be added in other ticket * Add new behaviour, now after user signs in, the account dropdown will be hidden, same behaviour is applied after user signs out * Refactor code so that components and hooks can be reused for account dropdown
Zhi Wang committedJun 26, 2020 Configuration menu - View commit details
-
Copy full SHA for c360d07 - Browse repository at this point
Copy the full SHA c360d07View commit details
Commits on Jun 29, 2020
-
CIF-1444: Add test suits for components (#303)
* Add tests to verify the components are rendered as expected
Zhi Wang committedJun 29, 2020 Configuration menu - View commit details
-
Copy full SHA for 26494ea - Browse repository at this point
Copy the full SHA 26494eaView commit details
Commits on Jun 30, 2020
-
CIF-1444: Rename '<Account>' component to '<AccountContainer>', remov…
…e '<AccountIconText>' component (#303) * Changes the references of account component in other files * Merge logic of '<AccountIconText>' to '<AccountContainer>', now '<AccountTrigger>' will render icon label based on 'label' property passed in * Update test and snapshots of '<AccountContainer>' component
Zhi Wang committedJun 30, 2020 Configuration menu - View commit details
-
Copy full SHA for 2705b21 - Browse repository at this point
Copy the full SHA 2705b21View commit details -
CIF-1444: Add change password link to account dropdown (#303)
* Remove '<MyAccountLinks>' and '<SignOutLink>' components and move their logic back to '<MyAccount>' component because now we will reuse '<MyAccount>' in account dropdown * Add translation string for cancel button of change password form * Add links of address book and account information to my account so that side panel now will have them available to
Zhi Wang committedJun 30, 2020 Configuration menu - View commit details
-
Copy full SHA for 460f3a5 - Browse repository at this point
Copy the full SHA 460f3a5View commit details -
CIF-1444: Adjust layout and style of sign-in form (#303)
* Add a new form title * Move forgot password button to underneath the password field * Change label of email input field * Delete '<SignInForm>' component and merge its logic back into '<SignIn>' as now we are going to reuse it in account drop down and side panel * Update test and snapshots
Zhi Wang committedJun 30, 2020 Configuration menu - View commit details
-
Copy full SHA for 3578f8a - Browse repository at this point
Copy the full SHA 3578f8aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 191628a - Browse repository at this point
Copy the full SHA 191628aView commit details
Commits on Jul 1, 2020
-
CIF-1444: Remove the account component definition from AEM as we're g…
…oing to use miniaccount component to render the mount point for account dropdown
Zhi Wang committedJul 1, 2020 Configuration menu - View commit details
-
Copy full SHA for 63e2667 - Browse repository at this point
Copy the full SHA 63e2667View commit details
Commits on Jul 2, 2020
-
CIF-1444: Add test files for
<CreateAccountSuccess>
component, remo……ve the unused CSS file (#303)
Zhi Wang committedJul 2, 2020 Configuration menu - View commit details
-
Copy full SHA for 168e89b - Browse repository at this point
Copy the full SHA 168e89bView commit details
Commits on Jul 3, 2020
-
CIF-1444: Refactor account dropdown related components, now we only c…
…reate one React portal in '<AccountContainer>' component, rather than create two React portals in '<AccountDropdown>' and '<AccountTrigger>' respectively (#303)
Zhi Wang committedJul 3, 2020 Configuration menu - View commit details
-
Copy full SHA for b771eec - Browse repository at this point
Copy the full SHA b771eecView commit details -
CIF-1444: Move '<AccountTrigger>' and '<AccountDropdown>' components …
…to the folder of 'AccountContainer', update the import paths in '<AccountContainer>', this change allows us to group the account dropdown related components in same place (#303)
Zhi Wang committedJul 3, 2020 Configuration menu - View commit details
-
Copy full SHA for d09b112 - Browse repository at this point
Copy the full SHA d09b112View commit details -
CIF-1444: Fix an issue that the account dropdown is closed even if th…
…ere is sign-in error (#302) * Now we only dispatch 'toggleAccountDropdown' action when the sign-in is successful
Zhi Wang committedJul 3, 2020 Configuration menu - View commit details
-
Copy full SHA for 4ffa5e9 - Browse repository at this point
Copy the full SHA 4ffa5e9View commit details
Commits on Jul 6, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 2d3b86c - Browse repository at this point
Copy the full SHA 2d3b86cView commit details -
CIF-1444: Add test for '<AccountTrigger>' component (#303)
* Test if handler function of click event is called when button is clicked
Zhi Wang committedJul 6, 2020 Configuration menu - View commit details
-
Copy full SHA for 0585974 - Browse repository at this point
Copy the full SHA 0585974View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4cef78b - Browse repository at this point
Copy the full SHA 4cef78bView commit details
Commits on Jul 8, 2020
-
CIF-1444: Add and update tests to improve test coverage (#303)
Zhi Wang committedJul 8, 2020 Configuration menu - View commit details
-
Copy full SHA for 2a4afd4 - Browse repository at this point
Copy the full SHA 2a4afd4View commit details -
Merge branch 'CIF-1444' of https://github.com/adobe/aem-core-cif-comp…
…onents into CIF-1444
Zhi Wang committedJul 8, 2020 Configuration menu - View commit details
-
Copy full SHA for 4722b4e - Browse repository at this point
Copy the full SHA 4722b4eView commit details -
CIF-1444: Remove the unnecessary test for '<AccountDropdown>' (#303)
Zhi Wang committedJul 8, 2020 Configuration menu - View commit details
-
Copy full SHA for e1a7b01 - Browse repository at this point
Copy the full SHA e1a7b01View commit details
Commits on Jul 9, 2020
-
CIF-1444: Remove the unnessary mock from test suits (#303)
* Remove mock of 'ReactDOM.createPortal' from test suits of account dropdown and account trigger as this method is not used by these two components any more
Zhi Wang committedJul 9, 2020 Configuration menu - View commit details
-
Copy full SHA for 8b3b8bb - Browse repository at this point
Copy the full SHA 8b3b8bbView commit details -
CIF-1444: Passing config object to '<CommerceApp>' (#303)
* Add a new state 'accountContainerQuerySelector' in '<UserContextProvider>' to specify the DOM query selector that should be used to find the account container on header * Add a new state 'authBarContainerQuerySelector' in '<NavigationContextProvider>' to specify the DOM query selector that should be used to find the auth bar container on navigation side panel
Zhi Wang committedJul 9, 2020 Configuration menu - View commit details
-
Copy full SHA for 4b33f71 - Browse repository at this point
Copy the full SHA 4b33f71View commit details -
Merge branch 'master' into CIF-1444
Zhi Wang committedJul 9, 2020 Configuration menu - View commit details
-
Copy full SHA for 09f159a - Browse repository at this point
Copy the full SHA 09f159aView commit details -
CIF-1444: Fix the format issue of 'config.js' (#303)
* Use 'prettier:fix' to fix the format issue so that it won't fail the CircleCI test
Zhi Wang committedJul 9, 2020 Configuration menu - View commit details
-
Copy full SHA for 69d4a19 - Browse repository at this point
Copy the full SHA 69d4a19View commit details
Commits on Jul 10, 2020
-
CIF-1444: Use 'jest.spyOn' to mock 'ReactDOM.createPortal' (#303)
Zhi Wang committedJul 10, 2020 Configuration menu - View commit details
-
Copy full SHA for 5615d75 - Browse repository at this point
Copy the full SHA 5615d75View commit details -
Merge branch 'master' into CIF-1444
Conflicts: ui.apps/src/main/javascript/react-components/src/index.js
Zhi Wang committedJul 10, 2020 Configuration menu - View commit details
-
Copy full SHA for c3d4124 - Browse repository at this point
Copy the full SHA c3d4124View commit details -
CIF-1444: Delete config.js as we will add it to Venia guides repo (#303)
Zhi Wang committedJul 10, 2020 Configuration menu - View commit details
-
Copy full SHA for 3baa7f0 - Browse repository at this point
Copy the full SHA 3baa7f0View commit details
Commits on Jul 13, 2020
-
CIF-1398 - MyAccount - Address Book Page
Create the "Address Book" component
Daniel Platon committedJul 13, 2020 Configuration menu - View commit details
-
Copy full SHA for ebd6e52 - Browse repository at this point
Copy the full SHA ebd6e52View commit details
Commits on Jul 14, 2020
-
Merge branch 'CIF-1444' into issues/CIF-1398
Zhi Wang committedJul 14, 2020 Configuration menu - View commit details
-
Copy full SHA for 95ae60d - Browse repository at this point
Copy the full SHA 95ae60dView commit details
Commits on Jul 20, 2020
-
CIF-1398: Add and update graphql queries for address book component
* Add CREATE, UPDATE, DELETE queries * Update customer details query to include the addresses query
Zhi Wang committedJul 20, 2020 Configuration menu - View commit details
-
Copy full SHA for 5298fe1 - Browse repository at this point
Copy the full SHA 5298fe1View commit details -
CIF-1398: Remove the placeholder content from addressbook.html
Zhi Wang committedJul 20, 2020 Configuration menu - View commit details
-
Copy full SHA for 100d9ae - Browse repository at this point
Copy the full SHA 100d9aeView commit details -
CIF-1398: export '<AddressBook>' component so it can be used by other…
… project
Zhi Wang committedJul 20, 2020 Configuration menu - View commit details
-
Copy full SHA for 6c2bfa9 - Browse repository at this point
Copy the full SHA 6c2bfa9View commit details -
CIF-1398: Modify the address form component so the label of submit bu…
…tton can be passed in as a prop
Zhi Wang committedJul 20, 2020 Configuration menu - View commit details
-
Copy full SHA for 09e2ed8 - Browse repository at this point
Copy the full SHA 09e2ed8View commit details -
CIF-1398: Change the address book link in account dropdown
* Please note now the redirect URL is hard coded due to we can't get the base URL path at the moment, this will be fixed when base URL can be retrieved from server
Zhi Wang committedJul 20, 2020 Configuration menu - View commit details
-
Copy full SHA for aa2fc59 - Browse repository at this point
Copy the full SHA aa2fc59View commit details -
CIF-1398: Add translations for address book component
Zhi Wang committedJul 20, 2020 Configuration menu - View commit details
-
Copy full SHA for 27f31f8 - Browse repository at this point
Copy the full SHA 27f31f8View commit details -
CIF-1398: Add address book related components
* Add a '<AddressItemsContainer>' component to render address items, as well as add new address button * Add a '<AddressFormContainer>' component to render the address form * Add corresponding state and actions in 'UserContext' to support create, query addresses * Will continue to finish the edit and delete address features
Zhi Wang committedJul 20, 2020 Configuration menu - View commit details
-
Copy full SHA for b1cb7f6 - Browse repository at this point
Copy the full SHA b1cb7f6View commit details -
Merge branch 'master' into issues/CIF-1398
Conflicts: react-components/i18n/en/account.json react-components/src/components/AccountContainer/accountDropdown.js react-components/src/context/UserContext.js react-components/src/index.js
Zhi Wang committedJul 20, 2020 Configuration menu - View commit details
-
Copy full SHA for 2fce367 - Browse repository at this point
Copy the full SHA 2fce367View commit details -
CIF-1398: Finish delete and edit address features
* Fix the issue in the previous commit where edit and delete address features are not working properly * Adjust the styling of address delete modal to match the design
Zhi Wang committedJul 20, 2020 Configuration menu - View commit details
-
Copy full SHA for 1953c81 - Browse repository at this point
Copy the full SHA 1953c81View commit details
Commits on Jul 21, 2020
-
CIF-1398: Add tranlsations for address book components
Zhi Wang committedJul 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 50348f2 - Browse repository at this point
Copy the full SHA 50348f2View commit details -
CIF-1398: Change graphql queries for query, create, and update address
* This is to fix the issue when creating or updating the address, the region_code can't be saved properly
Zhi Wang committedJul 21, 2020 Configuration menu - View commit details
-
Copy full SHA for a0dfe34 - Browse repository at this point
Copy the full SHA a0dfe34View commit details -
CIF-1398: Add deault_shipping checkbox to address form
* Now we can control whether or not to show 'Make my default address' check box in address form
Zhi Wang committedJul 21, 2020 Configuration menu - View commit details
-
Copy full SHA for ae2ca0d - Browse repository at this point
Copy the full SHA ae2ca0dView commit details -
CIF-1398: Add new translation to checkout.json
Zhi Wang committedJul 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 85afca7 - Browse repository at this point
Copy the full SHA 85afca7View commit details -
CIF-1398: Fix issues when closing address form and updating address
* Clear the update address when address form is closed if it's not null * Pass the region object rather than just region_code field when executing create and update address mutations so that region_code can be saved correctly
Zhi Wang committedJul 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 8e5bbae - Browse repository at this point
Copy the full SHA 8e5bbaeView commit details -
CIF-1398: Update test of address form component to reflect the recent…
… changes
Zhi Wang committedJul 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 3653dac - Browse repository at this point
Copy the full SHA 3653dacView commit details -
CIF-1398: Change address item component to display region_code
Zhi Wang committedJul 21, 2020 Configuration menu - View commit details
-
Copy full SHA for a03824b - Browse repository at this point
Copy the full SHA a03824bView commit details -
CIF-1398: Add grid CSS for address items container
Zhi Wang committedJul 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 2697b73 - Browse repository at this point
Copy the full SHA 2697b73View commit details -
CIF-1398: Remove the unnecessary div from add address button component
Zhi Wang committedJul 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 66088c0 - Browse repository at this point
Copy the full SHA 66088c0View commit details
Commits on Jul 22, 2020
-
CIF-1398: Add default tag for default shipping address and billing ad…
…dress * Adjust padding for address book * Set default_billing now, its value is the same as the value of default_shipping, at the moment, if default_shipping is set to true for an address, then default_billing is set to true as well * Add logic to hide delete button if the address item is set to default shipping and billing address
Zhi Wang committedJul 22, 2020 Configuration menu - View commit details
-
Copy full SHA for 819f615 - Browse repository at this point
Copy the full SHA 819f615View commit details -
CIF-1398: Move <AddressForm> component to its own folder from checkou…
…t folder
Zhi Wang committedJul 22, 2020 Configuration menu - View commit details
-
Copy full SHA for f65ee15 - Browse repository at this point
Copy the full SHA f65ee15View commit details -
CIF-1398: Copy the styles from flow.css so that addressForm.css won't…
… depend on it
Zhi Wang committedJul 22, 2020 Configuration menu - View commit details
-
Copy full SHA for 632e72e - Browse repository at this point
Copy the full SHA 632e72eView commit details -
Merge branch 'master' into issues/CIF-1398
Zhi Wang committedJul 22, 2020 Configuration menu - View commit details
-
Copy full SHA for 11d77a2 - Browse repository at this point
Copy the full SHA 11d77a2View commit details -
CIF-1398: Change default labels of <AddressForm> component
* Add a new prop 'heading' so that we can specify the form heading label now, change the default value of the heading to 'Address' if not specified * Change the default label of submit button to 'Save' if not specified * Update the involved components to support the above changes including tests and snapshots
Zhi Wang committedJul 22, 2020 Configuration menu - View commit details
-
Copy full SHA for f913786 - Browse repository at this point
Copy the full SHA f913786View commit details
Commits on Jul 23, 2020
-
CIF-1398: Adjust styles of address form so that it displays correctly…
… in address book page * We now don't set position:absolute to form body as it will make the form body element go out the scope of its parent, which is '<form>' element in this case * Now we can control positioning of address form component in its wrapper container instead becuase the form body element is not set to absolute position any more
Zhi Wang committedJul 23, 2020 Configuration menu - View commit details
-
Copy full SHA for e5508ba - Browse repository at this point
Copy the full SHA e5508baView commit details -
CIF-1398: Add form error message render logic to '<AddressForm>' comp…
…onent * Remove the loading indicator from '<AddressFormContainer>' to keep consistent behaviour with address form in checkout side bar * Remove the unused translation string from i18n file * Move the styles for form error message to 'addressForm.css'
Zhi Wang committedJul 23, 2020 Configuration menu - View commit details
-
Copy full SHA for c853531 - Browse repository at this point
Copy the full SHA c853531View commit details -
CIF-1398: Add translations to account.json and checkout.json
Zhi Wang committedJul 23, 2020 Configuration menu - View commit details
-
Copy full SHA for 4bb7fb3 - Browse repository at this point
Copy the full SHA 4bb7fb3View commit details
Commits on Jul 24, 2020
-
CIF-1398: Fix the issue that 'region_code' can't be saved correctly
* We need to pass 'region_id' along with 'region_code' when creating or updateing an address * Now the region id field is included in the countries graphql query so that we can get the id based on the region code when saving changes made for address
Zhi Wang committedJul 24, 2020 Configuration menu - View commit details
-
Copy full SHA for 73affb1 - Browse repository at this point
Copy the full SHA 73affb1View commit details -
CIF-1398: Update the tests for query_countries request to include reg…
…ion id
Zhi Wang committedJul 24, 2020 Configuration menu - View commit details
-
Copy full SHA for 2bc6890 - Browse repository at this point
Copy the full SHA 2bc6890View commit details
Commits on Jul 27, 2020
-
Merge branch 'master' into issues/CIF-1398
Zhi Wang committedJul 27, 2020 Configuration menu - View commit details
-
Copy full SHA for 834827a - Browse repository at this point
Copy the full SHA 834827aView commit details -
CIF-1398: Refactor <AddressDeleteModal> component
* Extract the event handler callback function of delete button to user's actions.js * Move the import of the delete customer address mutation to UserContext.js, define a new function that invokes delete address action and expose this function to component * Make <AddressDeleteModal> to use the function defined in UserContext.js so the business logic will not be exposed to component level now
Zhi Wang committedJul 27, 2020 Configuration menu - View commit details
-
Copy full SHA for 41ddea6 - Browse repository at this point
Copy the full SHA 41ddea6View commit details
Commits on Jul 28, 2020
-
CIF-1398: Add delete customer address action and its tests
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for 6dfd6e9 - Browse repository at this point
Copy the full SHA 6dfd6e9View commit details -
CIF-1398: Run prettier fix for the action test file
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for 76eaae8 - Browse repository at this point
Copy the full SHA 76eaae8View commit details -
CIF-1398: Rename action type of 'removeDeletedAddress' to 'postDelete…
…Address'
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for baae96b - Browse repository at this point
Copy the full SHA baae96bView commit details -
CIF-1398: Fix the typo for action type of 'postDeleteAddress'
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for ed0b21b - Browse repository at this point
Copy the full SHA ed0b21bView commit details -
CIF-1398: Use inline callback for buttons of address delete modal
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for c7371a0 - Browse repository at this point
Copy the full SHA c7371a0View commit details -
CIF-1398: Replace 'getRegionId' with 'useRegionId' hook in addressFor…
…mContainer.js * Extract the logic of 'getRegionId' and put it inside a custom hook 'useRegionId', add the test for the newly added custom hook
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for 88fc75d - Browse repository at this point
Copy the full SHA 88fc75dView commit details -
CIF-1398: Add test case for 'useRegionId' to cover the scenario when …
…region id can't be found
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for 0eef4d0 - Browse repository at this point
Copy the full SHA 0eef4d0View commit details -
CIF-1398: Remove the custom hook 'useRegionId' and its test
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for 9f276ef - Browse repository at this point
Copy the full SHA 9f276efView commit details -
CIF-1398: Add new hook 'useAddressForm' for providing data to '<Addre…
…ssFormContainer>' component
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for 1c4401f - Browse repository at this point
Copy the full SHA 1c4401fView commit details -
CIF-1398: Change '<AddressFormContainer>' to use new hook 'useAddress…
…Form'
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for 502aa9d - Browse repository at this point
Copy the full SHA 502aa9dView commit details -
CIF-1398: Expose 'countries' from 'useAddressForm', change '<AddressF…
…ormContainer>' to use that
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for 47068bb - Browse repository at this point
Copy the full SHA 47068bbView commit details -
CIF-1398: Remove the unused hook import from test file of hooks.test.js
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for b6ffe28 - Browse repository at this point
Copy the full SHA b6ffe28View commit details -
CIF-1398: Change '<AddressItem>' component to use inline callback fun…
…ctions
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for 496ab04 - Browse repository at this point
Copy the full SHA 496ab04View commit details -
CIF-1398: Add tests for address book related components and their sna…
…pshots
Zhi Wang committedJul 28, 2020 Configuration menu - View commit details
-
Copy full SHA for a3c63a8 - Browse repository at this point
Copy the full SHA a3c63a8View commit details
Commits on Jul 29, 2020
-
CIF-1398: Create 'createAddress' and 'updateAddress' actions
* Refactor 'useAddressForm.js' to extract create and update address logic to two separate actions * Fix an issue when update an address, the last name is not returned as part of the response * Clean up the dispatch logic after successfully create or update address
Zhi Wang committedJul 29, 2020 Configuration menu - View commit details
-
Copy full SHA for 41fcb81 - Browse repository at this point
Copy the full SHA 41fcb81View commit details -
CIF-1398: Finish tests for address book components and hook, correct …
…action name used in action test
Zhi Wang committedJul 29, 2020 Configuration menu - View commit details
-
Copy full SHA for 947d5c8 - Browse repository at this point
Copy the full SHA 947d5c8View commit details -
CIF-1398: Add tests for 'createAddress' and 'updateAddress' actions
Zhi Wang committedJul 29, 2020 Configuration menu - View commit details
-
Copy full SHA for 5dca7ed - Browse repository at this point
Copy the full SHA 5dca7edView commit details -
CIF-1398: Refactor the 'showAddressBook' function in navigation panel…
… and account dropdown
Zhi Wang committedJul 29, 2020 Configuration menu - View commit details
-
Copy full SHA for 1a70d9b - Browse repository at this point
Copy the full SHA 1a70d9bView commit details -
CIF-1398: Fix the issue that can't delete address by clicking delete …
…address button
Zhi Wang committedJul 29, 2020 Configuration menu - View commit details
-
Copy full SHA for e4c0b17 - Browse repository at this point
Copy the full SHA e4c0b17View commit details -
CIF-1398: Format the addressDeleteModal.js
Zhi Wang committedJul 29, 2020 Configuration menu - View commit details
-
Copy full SHA for b921c25 - Browse repository at this point
Copy the full SHA b921c25View commit details -
Configuration menu - View commit details
-
Copy full SHA for aeed727 - Browse repository at this point
Copy the full SHA aeed727View commit details -
CIF-1398: Add test suits for account dropdown related code in UserCon…
…text.test.js
Zhi Wang committedJul 29, 2020 Configuration menu - View commit details
-
Copy full SHA for 082b3a6 - Browse repository at this point
Copy the full SHA 082b3a6View commit details
Commits on Jul 30, 2020
-
CIF-1398: Increase test coverage rate for UserContext.js
Zhi Wang committedJul 30, 2020 Configuration menu - View commit details
-
Copy full SHA for 1d124d4 - Browse repository at this point
Copy the full SHA 1d124d4View commit details -
CIF-1398: Increase test coverage rate for NavigationContext.js, chang…
…e name of test suite in UserContext.test.js
Zhi Wang committedJul 30, 2020 Configuration menu - View commit details
-
Copy full SHA for 346bc19 - Browse repository at this point
Copy the full SHA 346bc19View commit details -
Configuration menu - View commit details
-
Copy full SHA for aa332fe - Browse repository at this point
Copy the full SHA aa332feView commit details
Commits on Jul 31, 2020
-
CIF-1398: Hide email input field from address form by default, update…
… the related tests * When an address is created or updated, the GraphQL endpoints won't accept email as a valid field thus won't save it, so we will hide email input field from address form used in address book now * Explicitly show email input field in address form used in checkout to keep the existing feature working as expected * Update the tests to reflect this changes * Add one test suite to increase the test coverage rate for addressForm.js
Zhi Wang committedJul 31, 2020 Configuration menu - View commit details
-
Copy full SHA for d9cda43 - Browse repository at this point
Copy the full SHA d9cda43View commit details -
Merge branch 'issues/CIF-1398' of https://github.com/adobe/aem-core-c…
…if-components into issues/CIF-1398
Zhi Wang committedJul 31, 2020 Configuration menu - View commit details
-
Copy full SHA for 1bb3ff2 - Browse repository at this point
Copy the full SHA 1bb3ff2View commit details -
CIF-1398: Fix the issue when create or update an address to be the de…
…fault address, the previous default address still has the 'Default' label applied
Zhi Wang committedJul 31, 2020 Configuration menu - View commit details
-
Copy full SHA for 645c360 - Browse repository at this point
Copy the full SHA 645c360View commit details
Commits on Aug 3, 2020
-
@trivial Exclude the
queries
folder from coverageDaniel Platon committedAug 3, 2020 Configuration menu - View commit details
-
Copy full SHA for 65ef232 - Browse repository at this point
Copy the full SHA 65ef232View commit details -
@trivial Configure Jest to exclude the
queries
folder from the test…… coverage report
Daniel Platon committedAug 3, 2020 Configuration menu - View commit details
-
Copy full SHA for dd22d88 - Browse repository at this point
Copy the full SHA dd22d88View commit details -
Configuration menu - View commit details
-
Copy full SHA for a639f48 - Browse repository at this point
Copy the full SHA a639f48View commit details -
Configuration menu - View commit details
-
Copy full SHA for 13ce11b - Browse repository at this point
Copy the full SHA 13ce11bView commit details -
Configuration menu - View commit details
-
Copy full SHA for a3b2edf - Browse repository at this point
Copy the full SHA a3b2edfView commit details