Skip to content

Commit ed9616d

Browse files
dpanta94kserealexiglesias31
authored
AmazonPay as a Tradittional Payment Option - Product Page and Mini Cart Placements - Support Alexa Delivery notifications (#174)
* [wip] 2 step checkout * [wip] classic integration in 1 step * [wip] compatibility between the 2 payment methods * fix: addressDetails and pass classic params through filters * fix: addressDetails encode * method docs provided * fixes order-pay * fix: reuse code * amazon pay on woocommerce's mini cart * [wip] product button placement * [wip] alexa support init * adds alexa delivery notification support * adds amazon pay on product page option * fix: alt source for product it on variations * provided method docs * fix: removed forgotten meta * needs shipping check and docs * amend most CR comments * Alexa Notifications Support implemented * replaces trigger click with initCheckout method * renderButton returns the rendered Amazon Pay Button * fresh checkout session params during checkout from cart * update checkout params during fragments update * frontend fixes for amazon product button * uses Woo's method of restoring a cart * implementing cr suggestions * save session data after restoring cart * cr amends * fixes is_available and checks availability for all button placements * fix conditional for is_available method * distinguish availability rules * corrected ordering of availability conditions * removes individual feature checking for availability * integrates amazon classic in woo checkout block * documentation and cleanup * rename assets node to config. * amends based on CR * latest CR amends * removed string type declarations * required a phone to be submitted when using amazon classic * [wip] validation pre-order creation * added doc comments * honor plugins sub support and declare an action earlier * don't overwrite completely filtered paymentDetails offset * css modifications and removed the OR separator from single product * more self explaining method names * possible_subscription_product_supported v2 * Update includes/class-wc-gateway-amazon-payments-advanced.php Co-authored-by: Alejandro Iglesias <[email protected]> * Update includes/class-wc-gateway-amazon-payments-advanced.php Co-authored-by: Alejandro Iglesias <[email protected]> * fixes margins in mini-cart Amazon Pay button * endline char added * adjusts according to naming convections / fixes typo * various phpcs fixes * refresh mini cart Amazon Pay button on wc_fragments_refreshed too * Amends to CR Comments Co-authored-by: Kostas Seresiotis <[email protected]> Co-authored-by: Kostas Seresiotis <[email protected]> Co-authored-by: Alejandro Iglesias <[email protected]>
1 parent 34bf496 commit ed9616d

29 files changed

+29257
-4184
lines changed

.babelrc

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
2-
"presets": [
3-
"es2015",
4-
"stage-2"
5-
],
2+
"ignore": [],
3+
"presets": [ "@wordpress/babel-preset-default" ],
64
"plugins": [
7-
"add-module-exports"
5+
"add-module-exports",
6+
"@emotion",
7+
[ "@babel/transform-runtime", { corejs: 3 } ],
8+
"@babel/plugin-proposal-optional-chaining",
9+
"@babel/plugin-proposal-nullish-coalescing-operator",
810
]
911
}

.eslintrc.js

+61-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,63 @@
11
module.exports = {
2-
'extends': 'wpcalypso',
3-
'env': {
2+
parser: '@babel/eslint-parser',
3+
extends: [ 'plugin:@woocommerce/eslint-plugin/recommended' ],
4+
globals: {
5+
_: false,
6+
Backbone: false,
7+
jQuery: false,
8+
wp: false,
9+
__PAYMENT_METHOD_FEES_ENABLED: false,
10+
},
11+
env: {
412
browser: true,
5-
jquery: true
6-
},
7-
'rules': {
8-
'no-var': 0,
9-
'camelcase': 0,
10-
'max-len': 0,
11-
'no-console': 0
12-
}
13-
}
13+
'jest/globals': true,
14+
node: true,
15+
},
16+
rules: {
17+
'require-await': 'error',
18+
'react-hooks/exhaustive-deps': 'error',
19+
'react-hooks/rules-of-hooks': 'error',
20+
'react/jsx-curly-brace-presence': [
21+
'error',
22+
{ props: 'never', children: 'never' },
23+
],
24+
'react/self-closing-comp': [ 'error', { component: true, html: true } ],
25+
'@woocommerce/dependency-group': 'off',
26+
'import/no-useless-path-segments': [
27+
'error',
28+
{
29+
noUselessIndex: true,
30+
},
31+
],
32+
'import/order': [
33+
'error',
34+
{
35+
'newlines-between': 'never',
36+
pathGroups: [
37+
{
38+
pattern: 'wcstripe/**',
39+
group: 'internal',
40+
},
41+
],
42+
},
43+
],
44+
},
45+
settings: {
46+
react: {
47+
version: 'detect',
48+
},
49+
'import/resolver': { webpack: {} },
50+
jsdoc: { mode: 'typescript' },
51+
// List of modules that are externals in our webpack config.
52+
// This helps the `import/no-extraneous-dependencies` and
53+
//`import/no-unresolved` rules account for them.
54+
'import/core-modules': [
55+
'@woocommerce/blocks-registry',
56+
'@woocommerce/settings',
57+
'@wordpress/i18n',
58+
'@wordpress/is-shallow-equal',
59+
'@wordpress/element',
60+
'@wordpress/data',
61+
],
62+
},
63+
};

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ sftp-config.json
1515
screenshots/
1616
/assets/**/*.min.js
1717
/assets/**/*.css
18+
/build/
1819

1920
# Ignore all log files except for .htaccess
2021
/logs/*

.jshintrc

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
{
2+
"esversion": 6,
23
"boss": true,
34
"curly": true,
45
"eqeqeq": true,
56
"eqnull": true,
6-
"es3": true,
77
"expr": true,
88
"immed": true,
99
"noarg": true,
10-
"onevar": true,
1110
"quotmark": "single",
12-
"trailing": true,
1311
"undef": true,
1412
"unused": true,
1513

@@ -19,7 +17,6 @@
1917
"_": false,
2018
"Backbone": false,
2119
"jQuery": false,
22-
"JSON": false,
2320
"wp": false
2421
}
2522
}

.prettierrc.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Import the default config file and expose it in the project root.
2+
// Useful for editor integrations.
3+
module.exports = require( '@wordpress/prettier-config' );

assets/css/style.scss

+33-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
#pay_with_amazon {
1+
#pay_with_amazon,
2+
#pay_with_amazon_cart,
3+
#pay_with_amazon_product {
24
margin: 0px auto;
35
max-width: 100%;
46
line-height: 1em;
57
display: block;
68
border: 0;
79
text-align: right;
810
}
9-
#pay_with_amazon img {
11+
#pay_with_amazon img,
12+
#pay_with_amazon_cart img,
13+
#pay_with_amazon_product img {
1014
width: auto !important;
1115
vertical-align: middle;
1216
cursor: pointer;
@@ -22,7 +26,9 @@
2226
min-height: 300px;
2327
margin: 0 auto !important;
2428
}
25-
.woocommerce-info #pay_with_amazon {
29+
.woocommerce-info #pay_with_amazon,
30+
.woocommerce-info #pay_with_amazon_cart,
31+
.woocommerce-info #pay_with_amazon_product {
2632
float: right;
2733
}
2834
#amazon_customer_details.wc-amazon-payments-advanced-populated
@@ -46,7 +52,9 @@
4652
margin-right: 10px;
4753
margin-bottom: 10px;
4854
}
49-
#payment .payment_methods li #pay_with_amazon img {
55+
#payment .payment_methods li #pay_with_amazon img,
56+
#payment .payment_methods li #pay_with_amazon_cart img,
57+
#payment .payment_methods li #pay_with_amazon_product img {
5058
max-height: 100%;
5159
}
5260
form.checkout .hidden {
@@ -73,7 +81,7 @@ img.wc-apa-amazon-logo {
7381
}
7482

7583
span.wc-apa-amazon-logo {
76-
background-image: url("../images/logo-amazonpay-primary-fullcolor-positive.svg");
84+
background-image: url('../images/logo-amazonpay-primary-fullcolor-positive.svg');
7785
background-position: 0 0;
7886
background-size: contain;
7987
background-repeat: no-repeat;
@@ -85,15 +93,18 @@ span.wc-apa-amazon-logo {
8593
margin-bottom: 1.618em;
8694
}
8795

88-
8996
.woocommerce-order-pay {
90-
.wc_apa_login_again_text + #pay_with_amazon {
97+
.wc_apa_login_again_text + #pay_with_amazon,
98+
.wc_apa_login_again_text + #pay_with_amazon_cart,
99+
.wc_apa_login_again_text + #pay_with_amazon_product {
91100
margin-top: 1em;
92101
}
93102
#order_review {
94103
#payment {
95104
.payment_box.payment_method_amazon_payments_advanced {
96-
#payment_method_widget, #shipping_address_widget, #billing_address_widget {
105+
#payment_method_widget,
106+
#shipping_address_widget,
107+
#billing_address_widget {
97108
margin-bottom: 0;
98109
& + #payment_method_widget,
99110
& + #shipping_address_widget,
@@ -109,8 +120,21 @@ span.wc-apa-amazon-logo {
109120
}
110121
}
111122

112-
.wc-apa-button-separator {
123+
.wc-apa-button-separator {
113124
margin: 1.5em 0;
114125
text-align: center;
115126
display: none;
116127
}
128+
129+
#classic_pay_with_amazon {
130+
display: none;
131+
}
132+
133+
#pay_with_amazon_product {
134+
margin: 0.7em auto;
135+
}
136+
137+
.site-header .widget_shopping_cart div.buttons {
138+
padding-left: 1.41575em;
139+
padding-right: 1.41575em;
140+
}

0 commit comments

Comments
 (0)