Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
da16dbb
Saving
Oct 17, 2021
7c38ab1
Saving changes
Oct 18, 2021
eb4a5c7
Reducer + context implentation completed
Oct 19, 2021
6dff33b
Created redirect for checkout
Oct 19, 2021
e43dcde
BillingDetails format ready
SRL132 Oct 20, 2021
6b4bf60
billing details and payment form basic layout
SRL132 Oct 20, 2021
16d993a
Saving changes
Oct 20, 2021
84dc409
lock-jason test
SRL132 Oct 20, 2021
41d2918
Saving changes
Oct 20, 2021
8f598ad
First two forms finished
Oct 20, 2021
f25e382
payment form 2
SRL132 Oct 20, 2021
5a5bad2
paymentForm logic completed
SRL132 Oct 21, 2021
65c9fee
improved error message styling on BillingDetailsForm and PaymentForm
SRL132 Oct 21, 2021
471fa01
Saving changes
Oct 21, 2021
2ade8ac
PaymentForm animation ready
SRL132 Oct 21, 2021
03ce218
formik partially integrated with react credit cards
SRL132 Oct 21, 2021
2131288
paymenForm validation completed
SRL132 Oct 21, 2021
8a932b5
Saving changes
Oct 21, 2021
5422f2b
Send help
Oct 21, 2021
d0ff9fd
update
SRL132 Oct 21, 2021
1a3b683
Adding payment form
Oct 21, 2021
416a14b
Merge branch 'sergi' of https://github.com/sanadriu/react-shopping-ca…
Oct 21, 2021
6a76aaf
Payment form styled
Oct 21, 2021
0f5c6d4
ready to pull
SRL132 Oct 22, 2021
c003846
Saving changes in payment form
Oct 22, 2021
0b4008b
ready to pull 2
SRL132 Oct 22, 2021
4879abf
purchaseCompleted done
SRL132 Oct 22, 2021
9fc17ae
Forms almost finished
Oct 23, 2021
d3da708
5 steps finished
Oct 23, 2021
d35e145
Minor fix: error message for country validation has been fixed
Oct 23, 2021
d4b1c8f
Removed console logs
Oct 25, 2021
f713c90
Deleted comments
Oct 25, 2021
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
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

63 changes: 0 additions & 63 deletions .eslintrc.js

This file was deleted.

19 changes: 0 additions & 19 deletions .prettierrc

This file was deleted.

7 changes: 7 additions & 0 deletions css/FavoriteIconButton.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.FavoriteIconButton {
display: block;
padding: 0.25rem;
position: absolute;
top: 0.5rem;
right: 0.5rem;
}/*# sourceMappingURL=FavoriteIconButton.css.map */
1 change: 1 addition & 0 deletions css/FavoriteIconButton.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions css/Footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.Footer {
width: 100%;
text-align: center;
padding: 4rem 1rem;
}/*# sourceMappingURL=Footer.css.map */
1 change: 1 addition & 0 deletions css/Footer.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions css/IconImg.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.IconImg {
width: 1rem;
height: 1rem;
}/*# sourceMappingURL=IconImg.css.map */
1 change: 1 addition & 0 deletions css/IconImg.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

65 changes: 65 additions & 0 deletions css/ItemCard.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
.ItemCard {
display: flex;
flex-direction: column;
margin-bottom: 2rem;
}
.ItemCard__title {
font-size: 1rem;
line-height: 1.25rem;
font-weight: bold;
margin: 0.75rem 0 0 0;
}
.ItemCard__image-wrapper {
position: relative;
display: flex;
flex-direction: column;
}
.ItemCard__image {
display: block;
width: 100%;
height: auth;
max-width: 32rem;
border-radius: 3px;
}
.ItemCard__divider {
border: 1px solid #dde1e3;
border-radius: 3px;
width: 100%;
margin: 0.5rem 0;
}
.ItemCard__description {
font-size: 0.875rem;
line-height: 1.25rem;
margin: 0;
}
.ItemCard__meta {
margin-top: 0.5rem;
display: flex;
justify-content: space-between;
}
.ItemCard__icons {
display: flex;
}
.ItemCard__icon-row {
display: flex;
margin-right: 1rem;
align-items: center;
}
.ItemCard__icon-row:last-of-type {
margin: 0;
}
.ItemCard__icon-popular {
color: #046900;
background-color: #dcf8dc;
padding: 0.125rem 0.5rem;
border-radius: 4px;
}
.ItemCard__icon-unpopular {
color: #692100;
background-color: #fae8cc;
padding: 0.125rem 0.5rem;
border-radius: 4px;
}
.ItemCard__icon-txt {
margin: 0 0 0 0.5rem;
}/*# sourceMappingURL=ItemCard.css.map */
1 change: 1 addition & 0 deletions css/ItemCard.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions css/ShoppingCartItem.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.ShoppingCartItem__img {
width: 100%;
min-width: 4rem;
height: 100%;
border-radius: 4px;
-o-object-fit: cover;
object-fit: cover;
background-position: center;
}/*# sourceMappingURL=ShoppingCartItem.css.map */
1 change: 1 addition & 0 deletions css/ShoppingCartItem.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading