forked from PrestaShop/PrestaShop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout-payment.js
125 lines (104 loc) · 3.57 KB
/
checkout-payment.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/**
* 2007-2017 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2017 PrestaShop SA
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
import $ from 'jquery'
class Payment {
constructor() {
this.confirmationSelector = '#payment-confirmation';
this.paymentSelector = '#payment-section';
this.conditionsSelector = '#conditions-to-approve';
this.conditionAlertSelector = '.js-alert-payment-conditions';
this.additionalInformatonSelector = '.js-additional-information';
this.optionsForm = '.js-payment-option-form';
}
init() {
$(this.paymentSelector + ' input[type="checkbox"][disabled]').attr('disabled', false);
let $body = $('body');
$body.on('change', this.conditionsSelector + ' input[type="checkbox"]', $.proxy(this.toggleOrderButton, this));
$body.on('change', 'input[name="payment-option"]', $.proxy(this.toggleOrderButton, this));
$body.on('click', this.confirmationSelector + ' button', $.proxy(this.confirm, this));
this.collapseOptions();
}
collapseOptions() {
$(this.additionalInformatonSelector + ', ' + this.optionsForm).hide();
}
getSelectedOption() {
return $('input[name="payment-option"]:checked').attr('id');
}
hideConfirmation() {
$(this.confirmationSelector).hide();
}
showConfirmation() {
$(this.confirmationSelector).show();
}
toggleOrderButton() {
var show = true;
$(this.conditionsSelector + ' input[type="checkbox"]').each((_, checkbox) => {
if (!checkbox.checked) {
show = false;
}
});
this.collapseOptions();
var selectedOption = this.getSelectedOption();
if (!selectedOption) {
show = false;
}
$('#' + selectedOption + '-additional-information').show();
$('#pay-with-' + selectedOption + '-form').show();
$('.js-payment-binary').hide();
if ($('#' + selectedOption).hasClass('binary')) {
var paymentOption = this.getPaymentOptionSelector(selectedOption);
this.hideConfirmation();
$(paymentOption).show();
if (show) {
$(paymentOption).removeClass('disabled');
} else {
$(paymentOption).addClass('disabled');
}
} else {
this.showConfirmation();
$(this.confirmationSelector + ' button').attr('disabled', !show);
if (show) {
$(this.conditionAlertSelector).hide();
} else {
$(this.conditionAlertSelector).show();
}
}
}
getPaymentOptionSelector(option) {
var moduleName = $(`#${option}`).data('module-name');
return `.js-payment-${moduleName}`;
}
confirm() {
var option = this.getSelectedOption();
if (option) {
$('#pay-with-' + option + '-form form').submit();
}
}
}
export default function () {
let payment = new Payment();
payment.init();
return payment;
}