forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.js
578 lines (508 loc) · 17.4 KB
/
common.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
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
/*
# Mantis - a php based bugtracking system
# Copyright 2000 - 2002 Kenzaburo Ito - [email protected]
# Copyright 2002 MantisBT Team - [email protected]
# Mantis is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# Mantis is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Mantis. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Collapsible element functions
*/
var g_collapse_clear = 1;
// global code to determine how to set visibility
var a = navigator.userAgent.indexOf("MSIE");
var style_display;
if (a!= -1) {
style_display = 'block';
} else {
style_display = 'table-row';
}
style_display = 'block';
$(document).ready( function() {
$('.collapse-open').show();
$('.collapse-closed').hide();
$('.collapse-link').click( function(event) {
event.preventDefault();
var id = $(this).attr('id');
var t_pos = id.indexOf('_closed_link' );
if( t_pos == -1 ) {
t_pos = id.indexOf('_open_link' );
}
var t_div = id.substring(0, t_pos );
ToggleDiv( t_div );
});
var options = {
valueNames: [ 'project-link' ]
};
var list = new List('projects-list', options);
if(list.items.length <= 10) {
$('#projects-list .searchbox').hide();
}
$('.widget-box').on('shown.ace.widget' , function(event) {
var t_id = $(this).attr('id');
var t_cookie = GetCookie( "collapse_settings" );
if ( 1 == g_collapse_clear ) {
t_cookie = "";
g_collapse_clear = 0;
}
t_cookie = t_cookie.replace("|" + t_id + ":1", '' );
t_cookie = t_cookie + "|" + t_id + ":0";
SetCookie( "collapse_settings", t_cookie );
});
$('.widget-box').on('hidden.ace.widget' , function(event) {
var t_id = $(this).attr('id');
var t_cookie = GetCookie( "collapse_settings" );
if ( 1 == g_collapse_clear ) {
t_cookie = "";
g_collapse_clear = 0;
}
t_cookie = t_cookie.replace( "|" + t_id + ":0", '' );
t_cookie = t_cookie + "|" + t_id + ":1";
SetCookie( "collapse_settings", t_cookie );
});
$('#sidebar-btn.sidebar-toggle').on('click', function (event) {
var t_cookie;
var t_sidebar = $(this).closest('.sidebar');
var t_id = t_sidebar.attr('id');
if (1 == g_collapse_clear) {
t_cookie = "";
g_collapse_clear = 0;
} else {
// Get collapse state and remove the old value
t_cookie = GetCookie("collapse_settings");
t_cookie = t_cookie.replace(new RegExp('\\|' + t_id + ':.'), '');
}
// Save the new collapse state
var t_value = !t_sidebar.hasClass("menu-min") | 0;
t_cookie += '|' + t_id + ':' + t_value;
SetCookie("collapse_settings", t_cookie);
});
$('input[type=text].typeahead').each(function() {
var $this = $(this);
$(this).typeahead({
minLength: 1,
highlight: true
}, {
source: function (query, undefined, callback) {
var params = {};
params['field'] = $this[0].id;
params['prefix'] = query;
$.getJSON('api/rest/internal/autocomplete', params, function (data) {
var results = [];
$.each(data, function (i, value) {
results.push(value);
});
callback(results);
});
}
});
});
$('a.dynamic-filter-expander').click(function(event) {
event.preventDefault();
var fieldID = $(this).attr('id');
var filter_id = $(this).data('filter_id');
var filter_tmp_id = $(this).data('filter');
var targetID = fieldID + '_target';
var viewType = $('#filters_form_open input[name=view_type]').val();
$('#' + targetID).html('<span class="dynamic-filter-loading">' + translations['loading'] + "</span>");
var params = 'view_type=' + viewType + '&filter_target=' + fieldID;
if( undefined !== filter_id ) {
params += '&filter_id=' + filter_id;
}
if( undefined !== filter_tmp_id ) {
params += '&filter=' + filter_tmp_id;
}
$.ajax({
url: 'return_dynamic_filters.php',
data: params,
cache: false,
context: $('#' + targetID),
success: function(html) {
$(this).html(html);
},
error: function(obj,status,error) {
$(this).html('<span class="error-msg">' + status + ': ' + error + '</span>');
}
});
});
$('input.autofocus:first, select.autofocus:first, textarea.autofocus:first').focus();
var checkAllSelectors = '';
$(':checkbox.check_all').each(function() {
var baseFieldName = $(this).attr('name').replace(/_all$/, '');
if (checkAllSelectors.length > 0) {
checkAllSelectors += ', ';
}
checkAllSelectors += ':checkbox[name="' + baseFieldName + '[]"]';
});
if (checkAllSelectors.length > 0) {
$(checkAllSelectors).click(function() {
var fieldName = $(this).attr('name').replace(/\[\]/g, '');
var checkedCount = $(this).closest('form').find(':checkbox[name="' + fieldName + '[]"]:checked').length;
var totalCount = $(this).closest('form').find(':checkbox[name="' + fieldName + '[]"]').length;
var allSelected = checkedCount == totalCount;
$(this).closest('form').find(':checkbox[name=' + fieldName + '_all]').prop('checked', allSelected);
});
$(':checkbox.check_all').click(function() {
var baseFieldName = $(this).attr('name').replace(/_all$/, '');
$(this).closest('form').find(':checkbox[name="' + baseFieldName + '[]"]').prop('checked', $(this).is(':checked'));
});
}
var stopwatch = {
timerID: 0,
startTime: null,
zeroTime: moment('0', 's'),
tick: function() {
var elapsedDiff = moment().diff(this.startTime),
elapsedTime = this.zeroTime.clone().add(elapsedDiff);
$('input[type=text].stopwatch_time').val(elapsedTime.format('HH:mm:ss'));
},
reset: function() {
this.stop();
$('input[type=text].stopwatch_time').val('');
},
start: function() {
var self = this,
timeFormat = '',
stoppedTime = $('input[type=text].stopwatch_time').val();
this.stop();
if (stoppedTime) {
switch (stoppedTime.split(':').length) {
case 1:
timeFormat = 'ss';
break;
case 2:
timeFormat = 'mm:ss';
break;
default:
timeFormat = 'HH:mm:ss';
}
this.startTime = moment().add(this.zeroTime.clone().diff(moment(stoppedTime, timeFormat)));
} else {
this.startTime = moment();
}
this.timerID = window.setInterval(function() {
self.tick();
}, 1000);
$('input[type=button].stopwatch_toggle').val(translations['time_tracking_stopwatch_stop']);
},
stop: function() {
if (this.timerID) {
window.clearInterval(this.timerID);
this.timerID = 0;
}
$('input[type=button].stopwatch_toggle').val(translations['time_tracking_stopwatch_start']);
}
};
$('input[type=button].stopwatch_toggle').click(function() {
if (!stopwatch.timerID) {
stopwatch.start();
} else {
stopwatch.stop();
}
});
$('input[type=button].stopwatch_reset').click(function() {
stopwatch.reset();
});
$('input[type=text].datetimepicker').each(function(index, element) {
$(this).datetimepicker({
locale: $(this).data('picker-locale'),
format: $(this).data('picker-format'),
useCurrent: false,
icons: {
time: 'fa fa-clock-o',
date: 'fa fa-calendar',
up: 'fa fa-chevron-up',
down: 'fa fa-chevron-down',
previous: 'fa fa-chevron-left',
next: 'fa fa-chevron-right',
today: 'fa fa-arrows ',
clear: 'fa fa-trash',
close: 'fa fa-times'
}
}).next().on(ace.click_event, function() {
$(this).prev().focus();
});
});
$( 'form .dropzone' ).each(function(){
var classPrefix = 'dropzone';
var autoUpload = $(this).hasClass('auto-dropzone');
enableDropzone( classPrefix, autoUpload );
});
$('.bug-jump').find('[name=bug_id]').focus( function() {
var bug_label = $('.bug-jump-form').find('[name=bug_label]').val();
if( $(this).val() == bug_label ) {
$(this).val('');
$(this).removeClass('field-default');
}
});
$('.bug-jump').find('[name=bug_id]').blur( function() {
var bug_label = $('.bug-jump-form').find('[name=bug_label]').val();
if( $(this).val() == '' ) {
$(this).val(bug_label);
$(this).addClass('field-default');
}
});
$('[name=source_query_id]').change( function() {
$(this.form).submit();
});
/* Project selector: auto-switch on select */
$('#form-set-project-id').change( function() {
$('#form-set-project').submit();
});
$('#project-selector').children('.button').hide();
setBugLabel();
/* Handle standard filter date fields */
$(document).on('change', '.js_switch_date_inputs_trigger', function() {
$(this).closest('table')
.find('select')
.prop('disabled', !$(this).prop('checked'));
});
/* Handle custom field of date type */
$(document).on('change', 'select[name^=custom_field_][name$=_control]', function() {
var table = $(this).closest('table');
switch(this.value) {
case '2': // between
$(table).find("select[name*=_start_year]").prop('disabled', false);
$(table).find("select[name*=_start_month]").prop('disabled', false);
$(table).find("select[name*=_start_day]").prop('disabled', false);
$(table).find("select[name*=_end_year]").prop('disabled', false);
$(table).find("select[name*=_end_month]").prop('disabled', false);
$(table).find("select[name*=_end_day]").prop('disabled', false);
break;
case '3': // on or before
case '4': // before
case '5': // on
case '6': // after
case '7': // on or after
$(table).find("select[name*=_start_year]").prop('disabled', false);
$(table).find("select[name*=_start_month]").prop('disabled', false);
$(table).find("select[name*=_start_day]").prop('disabled', false);
$(table).find("select[name*=_end_year]").prop('disabled', true);
$(table).find("select[name*=_end_month]").prop('disabled', true);
$(table).find("select[name*=_end_day]").prop('disabled', true);
break;
case '0': // any
case '1': // none
default:
$(table).find("select[name*=_start_year]").prop('disabled', true);
$(table).find("select[name*=_start_month]").prop('disabled', true);
$(table).find("select[name*=_start_day]").prop('disabled', true);
$(table).find("select[name*=_end_year]").prop('disabled', true);
$(table).find("select[name*=_end_month]").prop('disabled', true);
$(table).find("select[name*=_end_day]").prop('disabled', true);
break;
}
});
/* For Period.php bundled with the core MantisGraph plugin */
$('#dates > input[type=image].datetime').hide();
$('#period_menu > select#interval').change(function() {
if ($(this).val() == 10) {
$('#dates > input[type=text].datetime').prop('disabled', false);
$('#dates > input[type=image].datetime').show();
} else {
$('#dates > input[type=text].datetime').prop('disabled', true);
$('#dates > input[type=image].datetime').hide();
}
});
$(document).on('change', '#tag_select', function() {
var tagSeparator = $('#tag_separator').val();
var currentTagString = $('#tag_string').val();
var newTagOptionID = $(this).val();
var newTag = $('#tag_select option[value=' + newTagOptionID + ']').text();
var tagArray = currentTagString.split(tagSeparator);
if (tagArray.indexOf(newTag) == -1) {
if (currentTagString.length > 0) {
$('#tag_string').val(currentTagString + tagSeparator + newTag);
} else {
$('#tag_string').val(newTag);
}
}
$(this).val(0);
});
$('a.click-url').bind("click", function() {
$(this).attr("href", $(this).attr("url"));
});
$('input[name=private].ace').bind("click", function() {
if ($(this).is(":checked")){
$('textarea[name=bugnote_text]').addClass("bugnote-private");
$('tr[id=bugnote-attach-files]').hide();
} else {
$('textarea[name=bugnote_text]').removeClass("bugnote-private");
$('tr[id=bugnote-attach-files]').show();
}
});
$(document).on('shown.bs.dropdown', '#dropdown_projects_menu', function() {
$(this).find(".dropdown-menu li.active a").focus();
});
/**
* Manage visiblity on hover trigger objects
*/
if( $('.visible-on-hover-toggle').length ) {
$('.visible-on-hover-toggle').hover(
function(e){ // handlerIn
$(e.currentTarget).find('.visible-on-hover').removeClass('invisible');
},
function(e){ // handlerOut
$(e.currentTarget).find('.visible-on-hover').addClass('invisible');
}
);
$('.visible-on-hover').addClass('invisible');
}
});
function setBugLabel() {
var bug_label = $('.bug-jump-form').find('[name=bug_label]').val();
var field = $('.bug-jump').find('[name=bug_id]');
if( field.val() == '' ) {
field.val(bug_label);
field.addClass('field-default');
}
}
/*
* String manipulation
*/
function Trim( p_string ) {
if (typeof p_string != "string") {
return p_string;
}
var t_string = p_string;
var t_ch = '';
// Trim beginning spaces
t_ch = t_string.substring( 0, 1 );
while ( t_ch == " " ) {
t_string = t_string.substring( 1, t_string.length );
t_ch = t_string.substring( 0, 1 );
}
// Trim trailing spaces
t_ch = t_string.substring( t_string.length-1, t_string.length );
while ( t_ch == " " ) {
t_string = t_string.substring( 0, t_string.length-1 );
t_ch = t_string.substring( t_string.length-1, t_string.length );
}
return t_string;
}
/*
* Cookie functions
*/
function GetCookie( p_cookie ) {
var t_cookie_name = "MANTIS_" + p_cookie;
var t_cookies = document.cookie;
t_cookies = t_cookies.split( ";" );
var i = 0;
while( i < t_cookies.length ) {
var t_cookie = t_cookies[ i ];
t_cookie = t_cookie.split( "=" );
if ( Trim( t_cookie[ 0 ] ) == t_cookie_name ) {
return( t_cookie[ 1 ] );
}
i++;
}
return -1;
}
function SetCookie( p_cookie, p_value ) {
var t_cookie_name = "MANTIS_" + p_cookie;
var t_expires = new Date();
t_expires.setTime( t_expires.getTime() + (365 * 24 * 60 * 60 * 1000));
document.cookie = t_cookie_name + "=" + p_value + "; expires=" + t_expires.toUTCString() + ";";
}
function ToggleDiv( p_div ) {
var t_open_div = '#' + p_div + "_open";
var t_closed_div = '#' + p_div + "_closed";
var t_cookie = GetCookie( "collapse_settings" );
if ( 1 == g_collapse_clear ) {
t_cookie = "";
g_collapse_clear = 0;
}
var t_open_display = $(t_open_div).css('display');
$(t_open_div).toggle();
if( $(t_closed_div).length ) {
$(t_closed_div).toggle();
}
if ( t_open_display == "none" ) {
t_cookie = t_cookie.replace( "|" + p_div + ":0", '' );
t_cookie = t_cookie + "|" + p_div + ":1";
} else {
t_cookie = t_cookie.replace( "|" + p_div + ":1", '' );
t_cookie = t_cookie + "|" + p_div + ":0";
}
SetCookie( "collapse_settings", t_cookie );
}
function setDisplay(idTag, state)
{
if(!document.getElementById(idTag)) alert('SetDisplay(): id '+idTag+' is empty');
// change display visibility
if ( state != 0 ) {
document.getElementById(idTag).style.display = style_display;
} else {
document.getElementById(idTag).style.display = 'none';
}
}
function toggleDisplay(idTag)
{
setDisplay( idTag, (document.getElementById(idTag).style.display == 'none')?1:0 );
}
// Dropzone handler
Dropzone.autoDiscover = false;
function enableDropzone( classPrefix, autoUpload ) {
var zone_class = '.' + classPrefix;
var zone = $( zone_class );
var form = zone.closest('form');
try {
var zone_object = new Dropzone( form[0], {
forceFallback: zone.data('force-fallback'),
paramName: "ufile",
autoProcessQueue: autoUpload,
clickable: zone_class,
previewsContainer: '#' + classPrefix + '-previews-box',
uploadMultiple: true,
parallelUploads: 100,
maxFilesize: zone.data('max-filesize'),
addRemoveLinks: !autoUpload,
acceptedFiles: zone.data('accepted-files'),
previewTemplate: "<div class=\"dz-preview dz-file-preview\">\n <div class=\"dz-details\">\n <div class=\"dz-filename\"><span data-dz-name></span></div>\n <div class=\"dz-size\" data-dz-size></div>\n <img data-dz-thumbnail />\n </div>\n <div class=\"progress progress-small progress-striped active\"><div class=\"progress-bar progress-bar-success\" data-dz-uploadprogress></div></div>\n <div class=\"dz-success-mark\"><span></span></div>\n <div class=\"dz-error-mark\"><span></span></div>\n <div class=\"dz-error-message\"><span data-dz-errormessage></span></div>\n</div>",
dictDefaultMessage: zone.data('default-message'),
dictFallbackMessage: zone.data('fallback-message'),
dictFallbackText: zone.data('fallback-text'),
dictFileTooBig: zone.data('file-too-big'),
dictInvalidFileType: zone.data('invalid-file-type'),
dictResponseError: zone.data('response-error'),
dictCancelUpload: zone.data('cancel-upload'),
dictCancelUploadConfirmation: zone.data('cancel-upload-confirmation'),
dictRemoveFile: zone.data('remove-file'),
dictRemoveFileConfirmation: zone.data('remove-file-confirmation'),
dictMaxFilesExceeded: zone.data('max-files-exceeded'),
init: function () {
var dropzone = this;
var form = $( this.options.clickable ).closest('form');
form.on('submit', function (e) {
if( dropzone.getQueuedFiles().length ) {
e.preventDefault();
e.stopPropagation();
dropzone.processQueue();
}
});
this.on( "successmultiple", function( files, response ) {
document.open();
document.write( response );
document.close();
});
},
fallback: function() {
if( $( "." + classPrefix ).length ) {
$( "." + classPrefix ).hide();
}
}
});
} catch (e) {
alert( zone.data('dropzone-not-supported') );
}
}