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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
|
var now_js = new Date();
// require 'moment.js'
var curr_moment = moment();
var today_str = curr_moment.format('YYYY-MM-DD');
// global var to store the data of record
var record_data = {
id: null,
date: null,
value: null,
val_min: null,
val_max: null,
};
$(document).ready(function(){
// login control kit
$(".drop-down-area").bind("click", function(){
var drop_down_menu = $(".drop-down-menu");
if(drop_down_menu.hasClass("open")){
drop_down_menu.removeClass("open");
}else{
drop_down_menu.addClass("open");
}
return false;
});
$("body").bind("click", function(){
$(".drop-down-menu").removeClass("open");
});
// recommended indicators
$("#index_status_container .recommended").each(function() {
var this_card = $(this);
var id = this_card.attr("id").replace('index_card_', '');
var qtip_title = '<strong>为您推荐的指标</strong>';
var qtip_help = '若不需要,可以点击卡片右上角的 × 关闭';
this_card.qtip({
id: 'card_help'+id,
prerender: false,
content: {
text: qtip_help,
title: qtip_title,
button: true
},
position: {
my: 'bottom left',
at: 'top center',
target: this_card.find('.card_title')
},
show: {
event: false
},
hide: {
event: false
},
style: {
classes: 'qtip-sf'
}
});
this_card.qtip('api').show();
});
//不允许input框复制,减少验证粘帖的交互
// $("input[type='text']").bind("paste", function(){
// return false;
// });
//副标题点大叉
$("#index_title_closed_icon").bind("click", function(){
var closeBtn = $(this);
var date = new Date();
var time = date.getTime();
$.ajax({ //数据库还是cookie,都可以,建议使用cookie,html中是否显示sub_title也由后端读取的cookie决定
type: 'get',
url: indicator_url + 'ajax/close_sub_title/',
data: 'time='+time,
success: function(data){
if(data == 'success'){
closeBtn.parent().remove();
}
}
});
return false;
});
//卡片大叉删除交互
$(".card_delete_icon").hover(
function(){
$(this).removeClass("card_delete");
$(this).addClass("card_delete_hover");
},
function(){
$(this).removeClass("card_delete_hover");
$(this).addClass("card_delete");
}
);
$(".card_delete_icon").bind("click", function(){
card_2_delete_id = $(this).parent().attr("id").replace('index_card_', '');
});
//点击编辑icon(small) || click 'edit_icon'(big)
$(".small_edit_icon, .edit_icon").bind("click", function(){
var this_card = $(this).closest(".index_card");
var this_edit_data_div = this_card.find(".edit_data");
var this_editing_data_div = this_edit_data_div.siblings(".editing_data");
var this_edit_icon_container_div = this_edit_data_div.siblings(".edit_icon_container");
this_edit_data_div.hide();
this_edit_icon_container_div.hide();
this_editing_data_div.show();
return false;
});
//点击取消icon
$(".cancel_edit_icon").bind("click", function(){
var id = $(this).closest(".index_card").attr("id").replace('index_card_', '');
var this_editing_data_div = $(this).parent();
var this_edit_data_div = this_editing_data_div.siblings(".edit_data");
var this_edit_icon_container_div = this_editing_data_div.siblings(".edit_icon_container");
this_editing_data_div.hide();
this_edit_data_div.show();
if (recordempty['id'+id]) {
// record empty
this_edit_icon_container_div.show();
}
return false;
});
// initialize
// empty data input
$(".data_input").val('');
// unselect radio buttons
if ($(".editing_data .radio_input").length) {
$(".radio_input input:radio").prop("checked", false);
}
// validate data and qtip2 {{{
$(".index_card").each(function() {
var this_card = $(this);
var id = this_card.attr("id").replace('index_card_', '');
var data_type = datatypes['id'+id];
//console.log("id: "+id+"; data_type: "+data_type);
var confine = confines['id'+id];
// data {{{
if (data_type == DATA_TYPES_JS.INTEGER_TYPE) {
// INTEGER_TYPE
// TODO
}
else if (data_type == DATA_TYPES_JS.FLOAT_TYPE) { // {{{
// FLOAT_TYPE
var datainput_help = '<p>定值型</p><p>数据格式示例:123.7; 1.23e4; 3.5e-2</p>';
// tooltip
$(this).find(".data_input").qtip({
id: 'datainput_'+id,
prerender: false,
content: {
text: datainput_help
},
position: {
my: 'bottom left',
at: 'top right'
},
show: {
event: 'mouseenter'
},
hide: {
event: 'mouseleave unfocus'
}
});
this_card.find(".data_input").focus(function() {
$(this).removeClass("valid invalid");
});
// validate
this_card.find(".data_input").on('validate', null, function() {
var value_str = $(this).val();
var value = is_float(value_str);
if (value === false) {
// format invalid
$(this).removeClass("valid");
$(this).addClass("invalid");
var qtip_content = '<p>数据格式不符合要求,请检查后重新输入</p>';
$(this).qtip('api').set('content.text', qtip_content);
$(this).qtip('api').show();
}
else {
// format valid
// check confine
if (value >= confine.math_min &&
value <= confine.math_max) {
// confine valid
$(this).removeClass("invalid");
$(this).addClass("valid");
var qtip_content = datainput_help;
$(this).qtip('api').set('content.text', qtip_content);
$(this).qtip('api').hide();
// update data
record_data.value = value;
}
else {
// confine tooltip
$(this).removeClass("valid");
$(this).addClass("invalid");
var qtip_content = '<p>数值超出范围</p><p>允许数据范围:'+confine.math_range_html+' </p>';
$(this).qtip('api').set('content.text',
qtip_content);
$(this).qtip('api').show();
}
}
});
this_card.find(".data_input").on('blur', null, function() {
$(this).trigger('validate');
});
} // }}}
else if (data_type == DATA_TYPES_JS.RANGE_TYPE) { // {{{
// RANGE_TYPE
var datainput_help = '<p>范围型</p><p>数据格式示例:• <123.7; • >1.3e3; • 1.5e3 ~ 3.7e3</p>';
// tooltip
this_card.find(".data_input").qtip({
id: 'datainput_'+id,
prerender: false,
content: {
text: datainput_help
},
position: {
my: 'bottom left',
at: 'top right'
},
show: {
event: 'mouseenter'
},
hide: {
event: 'mouseleave unfocus'
}
});
this_card.find(".data_input").focus(function() {
$(this).removeClass("valid invalid");
});
// validate
this_card.find(".data_input").on('validate', null, function() {
var value_str = $(this).val();
var value = is_range(value_str);
if (is_range(value_str) === false) {
// format invalid
$(this).removeClass("valid");
$(this).addClass("invalid");
var qtip_content = '<p>数据格式不符合要求,请检查后重新输入</p>';
$(this).qtip('api').set('content.text', qtip_content);
$(this).qtip('api').show();
}
else {
// range format valid
// check if within 'confine'
var confine_valid = false;
var val_min = null;
var val_max = null;
var operator = value.operator;
if (operator === '<') {
val_max = value.value;
if (val_max > confine.math_min &&
val_max <= confine.math_max) {
// valid
confine_valid = true;
val_min = confine.math_min;
}
}
else if (operator === '>') {
val_min = value.value;
if (val_min >= confine.math_min &&
val_min < confine.math_max) {
// valid
confine_valid = true;
val_max = confine.math_max;
}
}
else if (operator === '~') {
val_min = value.val_min;
val_max = value.val_max;
if (val_min >= confine.math_min &&
val_max < confine.math_max) {
// valid
confine_valid = true;
}
}
else {
confine_valid = false;
}
if (confine_valid === true) {
$(this).removeClass("invalid");
$(this).addClass("valid");
var qtip_content = datainput_help;
$(this).qtip('api').set('content.text',
qtip_content);
$(this).qtip('api').hide();
// update data
record_data.val_min = val_min;
record_data.val_max = val_max;
}
else {
// data not within range
$(this).removeClass("valid");
$(this).addClass("invalid");
var qtip_content = '<p>数值超出范围</p><p>允许数据范围:'+confine.math_range_html+' </p>';
$(this).qtip('api').set('content.text',
qtip_content);
$(this).qtip('api').show();
}
}
});
this_card.find(".data_input").on('blur', null, function() {
$(this).trigger('validate');
});
} // RANGE_TYPE }}}
else if (data_type == DATA_TYPES_JS.FLOAT_RANGE_TYPE) {
// TODO
}
else if (data_type == DATA_TYPES_JS.PM_TYPE) { // {{{
// TODO
var radioinput_help = '<p>请直接点击选择</p>';
// tooltip
this_card.find(".radio_input").qtip({
id: 'radioinput_'+id,
prerender: false,
content: {
text: radioinput_help
},
position: {
my: 'bottom left',
at: 'top right'
},
show: {
event: 'mouseenter'
},
hide: {
event: 'mouseleave unfocus'
}
});
// validate
this_card.find(".radio_input").on('validate', null, function() {
if (this_card.find(".radio_input input:radio:checked").length != 1) {
var qtip_content = '<p>请选择化验结果</p>';
$(this).qtip('api').set('content.text',
qtip_content);
$(this).qtip('api').show();
}
else {
// valid
var qtip_content = radioinput_help;
$(this).qtip('api').set('content.text',
qtip_content);
$(this).qtip('api').hide();
// update data
record_data.value = this_card.find(".radio_input input:radio:checked").val();
}
});
} // }}}
else {
// unknown
return false;
}
// }}}
// date {{{
// date_input tooltip
var dateinput_help = '<p>日期格式:YYYY-MM-DD; 如:2013-08-26</p><p>日期不能晚于<strong>今天</strong></p>';
this_card.find(".date_input").qtip({
id: 'dateinput_'+id,
prerender: false,
content: {
text: dateinput_help
},
position: {
my: 'left top',
at: 'right bottom'
},
show: {
event: 'mouseenter'
},
hide: {
event: 'mouseleave unfocus'
}
});
this_card.find(".date_input").focus(function() {
$(this).removeClass("valid invalid");
// show help tooltip
//var qtip_content = dateinput_help;
//$(this).qtip('api').set('content.text', qtip_content);
//$(this).qtip('api').show();
});
// validate
this_card.find(".date_input").on('validate', null, function() {
var date_str = $(this).val();
var date_mm = moment(date_str, 'YYYY-MM-DD');
var today_mm = moment();
//console.log('date_str: ', date_str);
// date cannot beyond today
if (date_mm.isValid() && !date_mm.isAfter(today_mm)) {
$(this).removeClass("invalid");
$(this).addClass("valid");
var qtip_content = dateinput_help;
$(this).qtip('api').set('content.text', qtip_content);
$(this).qtip('api').hide();
// update data
record_data.date = date_str;
}
else {
// date invalid
$(this).removeClass("valid");
$(this).addClass("invalid");
var qtip_content = '<p>请检查输入日期的格式,并且日期不能晚于<strong>今天</strong></p>';
$(this).qtip('api').set('content.text', qtip_content);
$(this).qtip('api').show();
}
});
this_card.find(".date_input").on('change blur', null, function() {
$(this).trigger('validate');
});
// }}}
});
// }}}
//点击提交icon {{{
$(".confirm_edit_icon").bind("click", function(){
var this_editing_data_div = $(this).closest(".editing_data");
var card = $(this).closest(".index_card");
var id = card.attr("id").replace('index_card_', '');
// validate data before submit
this_editing_data_div.find(".to_validate").trigger('validate');
if (this_editing_data_div.find(".invalid").length) {
// XXX: tooltip/popup
return false;
}
// submit data (AJAX) {{{
var time = moment().valueOf();
$.ajax({
type: 'post',
url: indicator_url + 'ajax/add_record/',
data: {
csrfmiddlewaretoken: document.getElementsByName('csrfmiddlewaretoken')[0].value,
indicator_id: id,
date: record_data.date,
value: record_data.value,
val_min: record_data.val_min,
val_max: record_data.val_max,
time: time
},
dataType: 'json',
success: function(dataJson) {
if (dataJson.failed == true) {
// failed: tooltip
if (dataJson.error_code === 20) {
// 'record_exist'; given date has record
var date_input = card.find(".date_input");
date_input.removeClass("valid");
date_input.addClass("invalid");
var qtip_content = '<p>该日期已存在记录,请检查</p>';
date_input.qtip('api').set('content.text', qtip_content);
date_input.qtip('api').show();
}
else {
// XXX: other error
var data_input = card.find(".data_input");
data_input.removeClass("valid");
data_input.addClass("invalid");
var qtip_content = '<p>输入记录不符合要求,请检查</p>';
data_input.qtip('api').set('content.text', qtip_content);
data_input.qtip('api').show();
}
}
else {
// successfully added record
// remove 'record_empty' class
card.removeClass("record_empty");
var this_edit_data_div = this_editing_data_div.siblings(".edit_data");
this_editing_data_div.hide();
this_edit_data_div.show();
// last_edit_data & last_edit_date (std_unit)
var this_last_edit_data_div = this_edit_data_div.find(".last_edit_data");
var this_last_edit_date_div = this_edit_data_div.find(".last_edit_date");
this_last_edit_data_div.children(".data_value").html(dataJson.value_html);
this_last_edit_date_div.children(".date_value").html(dataJson.date);
this_last_edit_data_div.show();
this_last_edit_date_div.show();
// explain_icon
this_edit_data_div.find(".nodata_icon").hide();
this_edit_data_div.find(".lastdata_icon").show();
// refresh_icon
this_edit_data_div.find(".refresh_icon").show();
// edit_icon_container & chart
toggle_edit_hint(id, "hide");
// redraw chart
chart_getdata_draw("chart_"+id, id,
"options_chart_"+id,
chart_getdata_type, chart_dp_num,
null, null
);
}
}
});
// }}}
return false;
});
// }}}
//日期控件
$(".datepicker_container>.datepicker").datepicker({
showOn: "both",
buttonImage: static_url + "images/calendar.png",
buttonImageOnly: true,
maxDate: now_js
});
$(".datepicker_container>.datepicker").datepicker("setDate", now_js);
//时间范围控制(开始时间<结束时间)
$("#search_begin_date").datepicker({
showOn: "both",
buttonImage: static_url + "images/calendar.png",
buttonImageOnly: true,
onClose: function( selectedDate ) {
$("#search_end_date").datepicker("option", "minDate", selectedDate);
}
});
$("#search_end_date").datepicker({
showOn: "both",
buttonImage: static_url + "images/calendar.png",
buttonImageOnly: true,
onClose: function( selectedDate ) {
$("#search_begin_date").datepicker("option", "maxDate", selectedDate);
}
});
});
// toggle 'edit_hint'
function toggle_edit_hint(card_id, action) {
var card = $("#index_card_"+card_id);
var edit_hint = card.find(".edit_icon_container");
var chart = card.find(".chart");
if (action === 'show') {
chart.hide();
edit_hint.show();
}
else if (action === 'hide') {
edit_hint.hide();
chart.show();
}
return false;
}
//
function delete_card(){
var card = $("#index_card_"+card_2_delete_id);
card.nextAll().each(function(){
if($(this).hasClass("index_card_fir")){
$(this).removeClass("index_card_fir");
$(this).addClass("index_card_sec");
}else if($(this).hasClass("index_card_sec")){
$(this).removeClass("index_card_sec");
$(this).addClass("index_card_fir");
}
});
card.remove();
}
// check if a string is float number // {{{
function is_float(str) {
// regex for fixed notation float number
var fix_regex = /^([+-]?)(\d+|\d+(\.\d*)?|\d*\.\d+)$/;
// regex for exponential notation float number
var exp_regex = /^([+-]?)(\d+|\d+(\.\d*)?|\d*\.\d+)[eE]([+-]?)\d+$/;;
str = str || "";
var str_orig = str;
//console.log('str_orig: "'+str_orig+'"');
// remove the blank on the head and tail
str = str.replace(/(^\s*|\s*$)/g, '');
// remove blank between sign and number
str = str.replace(/^([+-]?)\s*/, '$1');
//console.log('str: "'+str+'"');
// valid str can only contains '[\d.]', '[+-]?', and '[eE]?'
if (fix_regex.test(str) || exp_regex.test(str)) {
// true
return parseFloat(str);
}
else {
return false;
}
}
// }}}
// check if a string is valid range
// a) '< num'; b) '> num'; c) 'low ~ high' (range_symbol) // {{{
function is_range(str) {
if (typeof range_symbol === 'undefined') {
range_symbol = '~';
}
str = str || "";
var str_orig = str;
str = str.replace(/(^\s*|\s*$)/g, '');
var operator = str.charAt(0);
if (operator === '<' || operator === '>') {
// strip the first char
str = str.replace(/^./, '');
var value = is_float(str);
if (value === false) {
return false;
}
else {
return {'operator': operator, 'value': value};
}
}
else {
// not case 'a)' & 'b)'
var str_splited = str.split(range_symbol);
if (str_splited.length == 2) {
var val_min = is_float(str_splited[0]);
var val_max = is_float(str_splited[1]);
if (val_min !== false && val_max !== false
&& val_min < val_max) {
// valid
operator = range_symbol;
return {'operator': operator,
'val_min': val_min,
'val_max': val_max };
}
else {
return false;
}
}
else {
// invalid
return false
}
}
}
// }}}
// vim: set ts=4 sw=4 tw=0 fenc=utf-8 ft=javascript: //
|