-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathPushDataJavaScript.html
248 lines (220 loc) · 6.5 KB
/
PushDataJavaScript.html
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
var header_timeout_id = 0;
var data_timeout_id = 0;
var docid_timeout_id = 0;
var TIMER_TIMEOUT = 500;
$(function() {
disableButtons();
enableLoader();
$('#sidebar-push-button').click(onPushClick);
$('#sidebar-conn-details-button').click(onConnDetailsClick);
$('#sidebar-docid-range').focus(updateDocIdColumns);
updateDocIdColumns();
google.script.run
.withSuccessHandler(
function(msg) {
getSheetName();
getDefaultRange();
$('#sidebar-type').val('spreadsheet');
$('#sidebar-template').val('google_spreadsheet');
if(msg.was_checked === "0") {
checkHost(msg);
} else {
enableButtons();
disableLoader();
}
}
)
.withFailureHandler(
function(msg) {
showStatus(msg, 'error');
disableLoader();
})
.getHostData();
$('#sidebar-data-range').focus(onDataChange);
$('#sidebar-data-range').keyup(onDataChange);
$('#sidebar-docid-range').focus(onDocIdChange);
$('#sidebar-docid-range').keyup(onDocIdChange);
$('#sidebar-index').focus(function() { clearIntervals(); });
$('#sidebar-type').focus(function() { clearIntervals(); });
$('#sidebar-template').focus(function() { clearIntervals(); });
});
function updateSpreadsheetHighlight(element_id) {
var new_value = $('#'+element_id).val();
if(new_value) {
if(new_value.length == 1) {
new_value += ":"+new_value;
}
google.script.run
.withSuccessHandler(function(msg) {
showStatus('');
validateData();
})
.withFailureHandler(function(msg) {
showStatus(msg, 'error');
})
.highlightData(new_value);
}
}
function updateDocIdColumns() {
google.script.run
.withSuccessHandler(function(msg) {
if(msg) {
if($('#sidebar-docid-range option:gt(0)').length != msg.length) {
$('#sidebar-docid-range option:gt(0)').remove();
var docid_input = $('#sidebar-docid-range');
for(var i in msg) {
docid_input.append($("<option></option>").attr("value", msg[i].value).text(msg[i].text));
}
}
}
})
.withFailureHandler(function(msg) {
showStatus(msg, 'error');
})
.getDocIdOptions();
}
function updateRange(element_id) {
var elem = $('#'+element_id);
google.script.run
.withSuccessHandler(function(msg) {
if(elem.val() != msg) {
elem.val(msg);
}
})
.withFailureHandler(function(msg) {
showStatus(msg, 'error');
})
.getSelectedRange();
}
function onDataChange() {
clearTimeout(data_timeout_id);
data_timeout_id = setTimeout(function() {
updateSpreadsheetHighlight('sidebar-data-range');
}, TIMER_TIMEOUT);
}
function onDocIdChange() {
clearTimeout(docid_timeout_id);
docid_timeout_id = setTimeout(function() {
updateSpreadsheetHighlight('sidebar-docid-range');
}, TIMER_TIMEOUT);
}
/**
* Calls the server to modify the sheet.
* Replace the currently selected cell value with the value in the
* sidebar text field.
*/
function onPushClick() {
disableButtons();
enableLoader();
var index = $('#sidebar-index').val();
var index_type = $('#sidebar-type').val();
var template_name = $('#sidebar-template').val();
var data_range = $('#sidebar-data-range').val();
var doc_id_range = $('#sidebar-docid-range').val();
google.script.run
.withSuccessHandler(
function(msg) {
showStatus('Success! The data is accessible <a href="'+msg+'" target="_blank">here.</a>');
enableButtons();
disableLoader();
})
.withFailureHandler(
function(msg) {
showStatus(msg, 'error');
enableButtons();
disableLoader();
})
.pushDataToCluster(index,index_type,template_name,data_range,doc_id_range);
}
function validateData() {
var new_value = $('#sidebar-data-range').val();
google.script.run
.withSuccessHandler(
function(msg) {
showStatus('');
})
.withFailureHandler(function(msg) {
showStatus(msg, 'error');
})
.validateData(new_value);
}
function checkHost(host) {
google.script.run
.withSuccessHandler(
function(msg) {
enableButtons();
disableLoader();
}
)
.withFailureHandler(
function(msg) {
showStatus('Could not connect to your cluster. Please test the connection details.', 'error');
disableButtons();
disableLoader();
}
)
.checkClusterConnection(host);
}
function getSheetName() {
google.script.run
.withSuccessHandler(function(msg) {
showStatus('');
$('#sidebar-index').val(msg);
})
.getSheetName();
}
/**
* Displays the given status message in the sidebar.
*
* @param {String} msg The status message to display.
* @param {String} classId The message type (class id) that the message
* should be displayed as.
*/
function showStatus(msg, classId) {
$('#sidebar-status').removeClass().html(msg);
if (classId) {
$('#sidebar-status').addClass(classId);
}
}
function disableButtons() {
$("#sidebar-push-button").prop('disabled', true);
}
function enableButtons() {
$("#sidebar-push-button").prop('disabled', false);
}
function enableLoader() {
$('#static').removeClass().addClass('hidden');
$('#loader').removeClass().addClass('show-inline');
}
function disableLoader() {
$('#loader').removeClass().addClass('hidden');
$('#static').removeClass().addClass('show-inline');
}
function failure(msg) {
showStatus(msg, 'error');
enableButtons();
disableLoader();
}
function getDefaultRange() {
google.script.run
.withSuccessHandler(function(msg) {
showStatus('');
if(!$('#sidebar-data-range').val()) {
$('#sidebar-data-range').val(msg);
}
enableButtons();
disableLoader();
})
.withFailureHandler(function(msg) {
showStatus(msg, 'error');
disableLoader();
})
.getDefaultRange();
}
function onConnDetailsClick() {
$('#connection-details-sidebar').removeClass('hidden');
$('#push-data-sidebar').addClass('hidden');
}
</script>