-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathadmin.js
207 lines (171 loc) · 6.15 KB
/
admin.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
document.addEventListener('DOMContentLoaded', function() {
// Initialize BlockonomicsAdmin class
const admin = new BlockonomicsAdmin();
admin.init();
});
class BlockonomicsAdmin {
constructor() {
// Store DOM elements
this.elements = {
form: document.getElementById('mainform'),
apiKey: document.querySelector('input[name="woocommerce_blockonomics_api_key"]'),
testSetup: document.getElementById('test-setup-btn'),
spinner: document.querySelector('.test-spinner'),
notifications: {
apiKey: document.getElementById('api-key-notification-box'),
testSetup: document.getElementById('test-setup-notification-box')
},
pluginEnabled: document.getElementById('woocommerce_blockonomics_enabled')
};
// State management
this.state = {
apiKeyChanged: false,
otherSettingsChanged: false
};
// Configuration
this.config = {
baseUrl: blockonomics_params.ajaxurl,
};
// Initialize crypto DOM elements
this.cryptoElements = {
btc: {
success: document.querySelector('.btc-success-notice'),
error: document.querySelector('.btc-error-notice'),
errorText: document.querySelector('.btc-error-notice .errorText')
}
};
}
init() {
this.attachEventListeners();
}
attachEventListeners() {
// Form related listeners
this.elements.form.addEventListener('input', (event) => {
if (event.target !== this.elements.apiKey) {
this.state.otherSettingsChanged = true;
}
});
this.elements.apiKey.addEventListener('change', () => {
this.state.apiKeyChanged = true;
});
this.elements.form.addEventListener('submit', (e) => this.handleFormSubmit(e));
// Test setup button listener
if (this.elements.testSetup) {
this.elements.testSetup.addEventListener('click', (e) => this.handleTestSetup(e));
}
// Prevent accidental navigation
window.addEventListener('beforeunload', (event) => {
event.stopImmediatePropagation();
});
}
async handleTestSetup(event) {
event.preventDefault();
if (!this.validateApiKey()) return;
if (this.shouldSkipTestSetup()) return;
this.updateUIBeforeTest();
try {
if (this.state.apiKeyChanged) {
await this.saveApiKey();
}
const result = await this.performTestSetup();
this.handleTestSetupResponse(result);
} catch (error) {
console.error('Test setup failed:', error);
} finally {
this.updateUIAfterTest();
}
}
validateApiKey() {
if (this.elements.apiKey.value.trim() === '') {
this.showApiKeyError();
return false;
}
return true;
}
shouldSkipTestSetup() {
if (this.state.otherSettingsChanged && !this.state.apiKeyChanged) {
this.elements.notifications.testSetup.style.display = 'block';
return true;
}
return false;
}
updateUIBeforeTest() {
this.elements.notifications.apiKey.style.display = 'none';
this.elements.notifications.testSetup.style.display = 'none';
this.elements.spinner.style.display = 'block';
this.elements.testSetup.disabled = true;
}
updateUIAfterTest() {
this.elements.spinner.style.display = 'none';
this.elements.testSetup.disabled = false;
}
async saveApiKey() {
const formData = new FormData(this.elements.form);
formData.append('woocommerce_blockonomics_api_key', this.elements.apiKey.value);
formData.append('save', 'Save changes');
const response = await fetch(this.elements.form.action, {
method: 'POST',
body: formData
});
if (!response.ok) {
throw new Error('Failed to save API key');
}
this.state.apiKeyChanged = false;
this.state.otherSettingsChanged = false;
}
async performTestSetup() {
const response = await fetch(`${this.config.baseUrl}?${new URLSearchParams({ action: "test_setup" })}`);
if (!response.ok) {
throw new Error('Network response was not ok');
}
return await response.json();
}
handleTestSetupResponse(result) {
this.updateCryptoStatus(result.crypto);
this.updateMetadata(result);
}
updateCryptoStatus(cryptoResults) {
const btcResult = cryptoResults.btc;
const btcElements = this.cryptoElements.btc;
if (!btcElements) return;
if (btcResult === false) {
// Success case
btcElements.error.style.display = 'none';
btcElements.success.style.display = 'block';
} else {
// Error case
btcElements.success.style.display = 'none';
btcElements.error.style.display = 'block';
if (typeof btcResult === 'string') {
btcElements.errorText.innerHTML = btcResult;
}
}
}
updateMetadata(result) {
const apiKeyRow = this.elements.apiKey.closest('tr');
const descriptionField = apiKeyRow?.querySelector('.description');
if (!descriptionField) return;
if (result.metadata_cleared) {
descriptionField.textContent = '';
this.config.activeCurrencies = ['btc'];
}
}
handleFormSubmit(e) {
if (!this.validateApiKey()) {
e.preventDefault();
return;
}
if (this.state.apiKeyChanged) {
this.elements.pluginEnabled.checked = true;
}
this.elements.notifications.apiKey.style.display = 'none';
}
showApiKeyError() {
this.elements.notifications.apiKey.style.display = 'block';
const apiKeyRow = document.getElementById("apikey-row");
if (apiKeyRow) {
apiKeyRow.scrollIntoView();
window.scrollBy(0, -100);
}
}
}