Skip to content
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

Remove the cart UI #4948

Merged
merged 27 commits into from
Jan 31, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
544f66b
feat: remove checkout button from cart drawer
aldeed Jan 13, 2019
ae734ff
feat: remove "Checkout Now" button from CartPanel
aldeed Jan 13, 2019
0d867f9
feat: remove cart/checkout role
aldeed Jan 13, 2019
dd74585
feat: remove cart/checkout route and cartCheckout template
aldeed Jan 13, 2019
82c0c03
feat: remove checkoutLogin template
aldeed Jan 13, 2019
08bdb40
feat: remove LoginInline component
aldeed Jan 13, 2019
76ead0d
chore: remove unused client mutation
aldeed Jan 13, 2019
027833b
chore: remove unused ValidEmail helper
aldeed Jan 13, 2019
81f059f
feat: remove the checkoutAddressBook template
aldeed Jan 13, 2019
532f526
feat: remove coreCheckoutShipping template
aldeed Jan 13, 2019
6109995
feat: remove checkoutReview template
aldeed Jan 13, 2019
b68df9a
feat: remove checkoutProgressBar template
aldeed Jan 13, 2019
ffa9c86
feat: remove checkoutPayment template
aldeed Jan 13, 2019
8e3bf48
feat: remove corePaymentMethods template
aldeed Jan 13, 2019
b533d1e
feat: remove ExampleIOUPaymentForm
aldeed Jan 13, 2019
3934709
feat: remove stripeMarketplacePaymentForm template
aldeed Jan 13, 2019
7312cff
feat: remove stripePaymentForm template
aldeed Jan 13, 2019
f0316d2
chore: remove unused availablePaymentMethods query
aldeed Jan 13, 2019
86db91b
chore: remove unused mutations
aldeed Jan 13, 2019
87fd670
feat: remove react-stripe-elements package
aldeed Jan 13, 2019
141b15b
feat: remove cartCompleted template
aldeed Jan 13, 2019
3fa0bc8
fix: add back react-stripe-elements
aldeed Jan 31, 2019
797f2e4
Merge branch 'develop' into feat-aldeed-remove-checkout-ui
aldeed Jan 31, 2019
2b5edca
feat: remove Add to cart button from PDP
aldeed Jan 17, 2019
773d784
feat: remove cart icon from nav bar
aldeed Jan 17, 2019
3e215b8
feat: remove cart drawer components
aldeed Jan 17, 2019
fbc942a
refactor: remove unused cart helpers
aldeed Jan 17, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions imports/collections/schemas/shops.js
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ registerSchema("MerchantShop", MerchantShop);
* @property {String} unitsOfMeasure.$.label default value: `Ounces`
* @property {Boolean} unitsOfMeasure.$.default default value: `false`
* @property {Metafield[]} metafields optional
* @property {String[]} defaultSellerRoles default values: `["owner", "admin", "seller", "guest", "manage-users", "orders", "account/profile", "product", "createProduct", "tag", "index", "cart/checkout", "cart/completed"]`
* @property {String[]} defaultSellerRoles default values: `["owner", "admin", "seller", "guest", "manage-users", "orders", "account/profile", "product", "createProduct", "tag", "index", "cart/completed"]`
* @property {Layout[]} layout optional
* @property {ShopTheme} theme optional
* @property {BrandAsset[]} brandAssets optional
Expand Down Expand Up @@ -446,7 +446,6 @@ export const Shop = new SimpleSchema({
"createProduct",
"tag",
"index",
"cart/checkout",
"cart/completed"
]
},
Expand Down
137 changes: 0 additions & 137 deletions imports/plugins/core/accounts/client/components/loginInline.js

This file was deleted.

132 changes: 0 additions & 132 deletions imports/plugins/core/accounts/client/containers/loginInline.js

This file was deleted.

2 changes: 0 additions & 2 deletions imports/plugins/core/accounts/client/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ export { default as SignIn } from "./components/signIn";
export { default as SignUp } from "./components/signUp";
export { default as UpdateEmail } from "./containers/updateEmail";
export { default as UpdatePassword } from "./components/updatePassword";
export { default as LoginInline } from "./components/loginInline";

export { default as AccountsDashboardContainer } from "./containers/accountsDashboardContainer";
export { default as AddressBookContainer } from "./containers/addressBookContainer";
Expand All @@ -39,7 +38,6 @@ export { default as ForgotPasswordContainer } from "./containers/forgotPassword"
export { default as MainDropdownContainer } from "./containers/mainDropdown";
export { default as MessagesContainer } from "./containers/messages";
export { default as UpdatePasswordContainer } from "./containers/updatePassword";
export { default as LoginInlineContainer } from "./containers/loginInline";
export { default as VerifyAccount } from "./containers/verifyAccount";

import "./templates/accounts.html";
Expand Down
52 changes: 0 additions & 52 deletions imports/plugins/core/checkout/client/components/cartDrawer.js

This file was deleted.

27 changes: 0 additions & 27 deletions imports/plugins/core/checkout/client/components/cartIcon.js

This file was deleted.

Loading