Update settings.html
Browse files- settings.html +12 -3
settings.html
CHANGED
@@ -80,16 +80,21 @@
|
|
80 |
|
81 |
<script>
|
82 |
function loadSettings() {
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
fetch('/load_settings', {
|
84 |
method: 'POST',
|
85 |
headers: {
|
86 |
'Content-Type': 'application/json'
|
87 |
},
|
88 |
-
body: JSON.stringify({ action: 'load' })
|
89 |
})
|
90 |
.then(response => response.json())
|
91 |
.then(data => {
|
92 |
-
document.getElementById('api_key_sys').value = data.api_key_sys;
|
93 |
document.getElementById('vk_api_key').value = data.vk_api_key;
|
94 |
document.getElementById('crypto_key_sys').value = data.crypto_key_sys;
|
95 |
document.getElementById('senler_token').value = data.senler_token;
|
@@ -110,12 +115,16 @@
|
|
110 |
data[key] = value;
|
111 |
}
|
112 |
});
|
|
|
|
|
|
|
|
|
113 |
fetch('/save_settings', {
|
114 |
method: 'POST',
|
115 |
headers: {
|
116 |
'Content-Type': 'application/json'
|
117 |
},
|
118 |
-
body: JSON.stringify({ action: 'save', data: data })
|
119 |
})
|
120 |
.then(response => response.json())
|
121 |
.then(data => {
|
|
|
80 |
|
81 |
<script>
|
82 |
function loadSettings() {
|
83 |
+
// Загружаем ключ из локального хранилища
|
84 |
+
const apiKeySys = localStorage.getItem('api_key_sys');
|
85 |
+
if (apiKeySys) {
|
86 |
+
document.getElementById('api_key_sys').value = apiKeySys;
|
87 |
+
}
|
88 |
+
|
89 |
fetch('/load_settings', {
|
90 |
method: 'POST',
|
91 |
headers: {
|
92 |
'Content-Type': 'application/json'
|
93 |
},
|
94 |
+
body: JSON.stringify({ action: 'load', api_key_sys: apiKeySys })
|
95 |
})
|
96 |
.then(response => response.json())
|
97 |
.then(data => {
|
|
|
98 |
document.getElementById('vk_api_key').value = data.vk_api_key;
|
99 |
document.getElementById('crypto_key_sys').value = data.crypto_key_sys;
|
100 |
document.getElementById('senler_token').value = data.senler_token;
|
|
|
115 |
data[key] = value;
|
116 |
}
|
117 |
});
|
118 |
+
|
119 |
+
// Сохраняем ключ в локальное хранилище
|
120 |
+
localStorage.setItem('api_key_sys', data.api_key_sys);
|
121 |
+
|
122 |
fetch('/save_settings', {
|
123 |
method: 'POST',
|
124 |
headers: {
|
125 |
'Content-Type': 'application/json'
|
126 |
},
|
127 |
+
body: JSON.stringify({ action: 'save', data: data, api_key_sys: data.api_key_sys })
|
128 |
})
|
129 |
.then(response => response.json())
|
130 |
.then(data => {
|