plugins.js
41.8 KB
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
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
angular.module('newApp').factory('pluginsService', [function () {
/* ==========================================================*/
/* PLUGINS */
/* ========================================================= */
/**** Color Picker ****/
function colorPicker() {
if ($('.color-picker').length && $.fn.spectrum) {
$('.color-picker').each(function () {
var current_palette = '';
if ($(this).data('palette')) {
current_palette = $(this).data('palette');
}
$(this).spectrum({
color: $(this).data('min') ? $(this).data('min') : "#D15ADE",
showInput: $(this).data('show-input') ? $(this).data('show-input') : false,
showPalette: $(this).data('show-palette') ? $(this).data('show-palette') : false,
showPaletteOnly: $(this).data('show-palette-only') ? $(this).data('show-palette-only') : false,
showAlpha: $(this).data('show-alpha') ? $(this).data('show-alpha') : false,
palette: $(this).data('palette') ? $(this).data('palette') : [[current_palette]]
});
$(this).show();
});
}
}
/**** Numeric Stepper ****/
function numericStepper() {
if ($('.numeric-stepper').length && $.fn.TouchSpin) {
$('.numeric-stepper').each(function () {
$(this).TouchSpin({
min: $(this).data('min') ? $(this).data('min') : 0,
max: $(this).data('max') ? $(this).data('max') : 100,
step: $(this).data('step') ? $(this).data('step') : 0.1,
decimals: $(this).data('decimals') ? $(this).data('decimals') : 0,
boostat: $(this).data('boostat') ? $(this).data('boostat') : 5,
maxboostedstep: $(this).data('maxboostedstep') ? $(this).data('maxboostedstep') : 10,
verticalbuttons: $(this).data('vertical') ? $(this).data('vertical') : false,
buttondown_class: $(this).data('btn-before') ? 'btn btn-' + $(this).data('btn-before') : 'btn btn-default',
buttonup_class: $(this).data('btn-after') ? 'btn btn-' + $(this).data('btn-after') : 'btn btn-default',
});
});
}
}
/**** Sortable Portlets ****/
function sortablePortlets() {
if ($('.portlets').length && $.fn.sortable) {
$(".portlets").sortable({
connectWith: ".portlets",
handle: ".panel-header",
items: 'div.panel',
placeholder: "panel-placeholder",
opacity: 0.5,
dropOnEmpty: true,
forcePlaceholderSize: true,
receive: function (event, ui) {
$("body").trigger("resize");
}
});
}
}
/**** Nestable List ****/
function nestable() {
if ($('.nestable').length && $.fn.nestable) {
$(".nestable").nestable();
}
}
/**** Sortable Table ****/
function sortableTable() {
if ($('.sortable_table').length && $.fn.sortable) {
$(".sortable_table").sortable({
itemPath: '> tbody',
itemSelector: 'tbody tr',
placeholder: '<tr class="placeholder"/>'
});
}
}
/**** Show Tooltip ****/
function showTooltip() {
if ($('[data-rel="tooltip"]').length && $.fn.tooltip) {
$('[data-rel="tooltip"]').tooltip();
}
}
/**** Show Popover ****/
function popover() {
if ($('[rel="popover"]').length && $.fn.popover) {
$('[rel="popover"]').popover({
trigger: "hover"
});
$('[rel="popover_dark"]').popover({
template: '<div class="popover popover-dark"><div class="arrow"></div><h3 class="popover-title popover-title"></h3><div class="popover-content popover-content"></div></div>',
trigger: "hover"
});
}
}
/**** Table progress bar ****/
function progressBar() {
if ($('.progress-bar').length && $.fn.progressbar) {
$('.progress-bar').progressbar();
}
}
/**** IOS Switch ****/
function iosSwitch() {
if ($('.js-switch').length) {
setTimeout(function () {
$('.js-switch').each(function () {
var colorOn = '#18A689';
var colorOff = '#DFDFDF';
if ($(this).data('color-on')) colorOn = $(this).data('color-on');
if ($(this).data('color-on')) colorOff = $(this).data('color-off');
if (colorOn == 'blue') colorOn = '#56A2D5';
if (colorOn == 'red') colorOn = '#C75757';
if (colorOn == 'yellow') colorOn = '#F3B228';
if (colorOn == 'green') colorOn = '#18A689';
if (colorOn == 'purple') colorOn = '#8227f1';
if (colorOn == 'dark') colorOn = '#292C35';
if (colorOff == 'blue') colorOff = '#56A2D5';
if (colorOff == 'red') colorOff = '#C75757';
if (colorOff == 'yellow') colorOff = '#F3B228';
if (colorOff == 'green') colorOff = '#18A689';
if (colorOff == 'purple') colorOff = '#8227f1';
if (colorOff == 'dark') colorOff = '#292C35';
var switchery = new Switchery(this, {
color: colorOn,
secondaryColor: colorOff
});
});
}, 500);
}
}
/* Manage Slider */
function sliderIOS() {
if ($('.slide-ios').length && $.fn.slider) {
$('.slide-ios').each(function () {
$(this).sliderIOS();
});
}
}
/* Manage Range Slider */
function rangeSlider() {
if ($('.range-slider').length && $.fn.ionRangeSlider) {
$('.range-slider').each(function () {
$(this).ionRangeSlider({
min: $(this).data('min') ? $(this).data('min') : 0,
max: $(this).data('max') ? $(this).data('max') : 5000,
hideMinMax: $(this).data('hideMinMax') ? $(this).data('hideMinMax') : false,
hideFromTo: $(this).data('hideFromTo') ? $(this).data('hideFromTo') : false,
to: $(this).data('to') ? $(this).data('to') : '',
step: $(this).data('step') ? $(this).data('step') : '',
type: $(this).data('type') ? $(this).data('type') : 'double',
prefix: $(this).data('prefix') ? $(this).data('prefix') : '',
postfix: $(this).data('postfix') ? $(this).data('postfix') : '',
maxPostfix: $(this).data('maxPostfix') ? $(this).data('maxPostfix') : '',
hasGrid: $(this).data('hasGrid') ? $(this).data('hasGrid') : false,
});
});
}
}
/* Button Loading State */
function buttonLoader() {
if ($('.ladda-button').length) {
Ladda.bind('.ladda-button', {
timeout: 2000
});
// Bind progress buttons and simulate loading progress
Ladda.bind('.progress-demo button', {
callback: function (instance) {
var progress = 0;
var interval = setInterval(function () {
progress = Math.min(progress + Math.random() * 0.1, 1);
instance.setProgress(progress);
if (progress === 1) {
instance.stop();
clearInterval(interval);
}
}, 100);
}
});
}
}
function inputSelect() {
if ($.fn.select2) {
setTimeout(function () {
$('select').each(function () {
function format(state) {
var state_id = state.id;
if (!state_id) return state.text; // optgroup
var res = state_id.split("-");
if (res[0] == 'image') {
if (res[2]) return "<img class='flag' src='../images/flags/" + res[1].toLowerCase() + "-" + res[2].toLowerCase() + ".png' style='width:27px;padding-right:10px;margin-top: -3px;'/>" + state.text;
else return "<img class='flag' src='../images/flags/" + res[1].toLowerCase() + ".png' style='width:27px;padding-right:10px;margin-top: -3px;'/>" + state.text;
}
else {
return state.text;
}
}
$(this).select2({
formatResult: format,
formatSelection: format,
placeholder: $(this).data('placeholder') ? $(this).data('placeholder') : '',
allowClear: $(this).data('allowclear') ? $(this).data('allowclear') : true,
minimumInputLength: $(this).data('minimumInputLength') ? $(this).data('minimumInputLength') : -1,
minimumResultsForSearch: $(this).data('search') ? 1 : -1,
dropdownCssClass: $(this).data('style') ? 'form-white' : ''
});
});
}, 200);
/* Demo Select Loading Data */
function repoFormatResult(repo) {
var markup = '<div class="row">' +
'<div class="col-md-2"><img class="img-responsive" src="' + repo.owner.avatar_url + '" /></div>' +
'<div class="col-md-10">' +
'<div class="row">' +
'<div class="col-md-6">' + repo.full_name + '</div>' +
'<div class="col-md-3"><i class="fa fa-code-fork"></i> ' + repo.forks_count + '</div>' +
'<div class="col-md-3"><i class="fa fa-star"></i> ' + repo.stargazers_count + '</div>' +
'</div>';
if (repo.description) {
markup += '<div>' + repo.description + '</div>';
}
markup += '</div></div>';
return markup;
}
function repoFormatSelection(repo) {
return repo.full_name;
}
if ($('#demo-loading-data').length) {
$("#demo-loading-data").select2({
placeholder: "Search for a repository",
minimumInputLength: 1,
ajax: { // instead of writing the function to execute the request we use Select2's convenient helper
url: "https://api.github.com/search/repositories",
dataType: 'json',
quietMillis: 250,
data: function (term, page) {
return {
q: term, // search term
};
},
results: function (data, page) { // parse the results into the format expected by Select2.
// since we are using custom formatting functions we do not need to alter the remote JSON data
return { results: data.items };
},
cache: true
},
initSelection: function (element, callback) {
// the input tag has a value attribute preloaded that points to a preselected repository's id
// this function resolves that id attribute to an object that select2 can render
// using its formatResult renderer - that way the repository name is shown preselected
var id = $(element).val();
if (id !== "") {
$.ajax("https://api.github.com/repositories/" + id, {
dataType: "json"
}).done(function (data) { callback(data); });
}
},
formatResult: repoFormatResult, // omitted for brevity, see the source of this page
formatSelection: repoFormatSelection, // omitted for brevity, see the source of this page
dropdownCssClass: "bigdrop", // apply css that makes the dropdown taller
escapeMarkup: function (m) { return m; } // we do not want to escape markup since we are displaying html in results
});
}
}
}
function inputTags() {
$('.select-tags').each(function () {
$(this).tagsinput({
tagClass: 'label label-primary'
});
});
}
/**** Tables Responsive ****/
function tableResponsive() {
setTimeout(function () {
$('.table').each(function () {
window_width = $(window).width();
table_width = $(this).width();
content_width = $(this).parent().width();
if (table_width > content_width) {
$(this).parent().addClass('force-table-responsive');
}
else {
$(this).parent().removeClass('force-table-responsive');
}
});
}, 200);
}
/**** Tables Dynamic ****/
function tableDynamic() {
if ($('.table-dynamic').length && $.fn.dataTable) {
$('.table-dynamic').each(function () {
var opt = {};
// Tools: export to Excel, CSV, PDF & Print
if ($(this).hasClass('table-tools')) {
opt.sDom = "<'row'<'col-md-6'f><'col-md-6'T>r>t<'row'<'col-md-6'i><'spcol-md-6an6'p>>",
opt.oTableTools = {
"sSwfPath": "../../../assets/global/plugins/datatables/swf/copy_csv_xls_pdf.swf",
"aButtons": ["csv", "xls", "pdf", "print"]
};
}
if ($(this).hasClass('no-header')) {
opt.bFilter = false;
opt.bLengthChange = false;
}
if ($(this).hasClass('no-footer')) {
opt.bInfo = false;
opt.bPaginate = false;
}
if ($(this).hasClass('filter-head')) {
$('.filter-head thead th').each(function () {
var title = $('.filter-head thead th').eq($(this).index()).text();
$(this).append('<input type="text" onclick="stopPropagation(event);" class="form-control" placeholder="Filter ' + title + '" />');
});
var table = $('.filter-head').DataTable();
$(".filter-head thead input").on('keyup change', function () {
table.column($(this).parent().index() + ':visible').search(this.value).draw();
});
}
if ($(this).hasClass('filter-footer')) {
$('.filter-footer tfoot th').each(function () {
var title = $('.filter-footer thead th').eq($(this).index()).text();
$(this).html('<input type="text" class="form-control" placeholder="Filter ' + title + '" />');
});
var table = $('.filter-footer').DataTable();
$(".filter-footer tfoot input").on('keyup change', function () {
table.column($(this).parent().index() + ':visible').search(this.value).draw();
});
}
if ($(this).hasClass('filter-select')) {
$(this).DataTable({
initComplete: function () {
var api = this.api();
api.columns().indexes().flatten().each(function (i) {
var column = api.column(i);
var select = $('<select class="form-control" data-placeholder="Select to filter"><option value=""></option></select>')
.appendTo($(column.footer()).empty())
.on('change', function () {
var val = $(this).val();
column
.search(val ? '^' + val + '$' : '', true, false)
.draw();
});
column.data().unique().sort().each(function (d, j) {
select.append('<option value="' + d + '">' + d + '</option>')
});
});
}
});
}
if (!$(this).hasClass('filter-head') && !$(this).hasClass('filter-footer') && !$(this).hasClass('filter-select')) {
var oTable = $(this).dataTable(opt);
oTable.fnDraw();
}
});
}
}
// Handles custom checkboxes & radios using jQuery iCheck plugin
function handleiCheck() {
if (!$().iCheck) return;
$(':checkbox:not(.js-switch, .switch-input, .switch-iphone, .onoffswitch-checkbox, .ios-checkbox, .md-checkbox), :radio:not(.md-radio)').each(function () {
var checkboxClass = $(this).attr('data-checkbox') ? $(this).attr('data-checkbox') : 'icheckbox_minimal-grey';
var radioClass = $(this).attr('data-radio') ? $(this).attr('data-radio') : 'iradio_minimal-grey';
if (checkboxClass.indexOf('_line') > -1 || radioClass.indexOf('_line') > -1) {
$(this).iCheck({
checkboxClass: checkboxClass,
radioClass: radioClass,
insert: '<div class="icheck_line-icon"></div>' + $(this).attr("data-label")
});
} else {
$(this).iCheck({
checkboxClass: checkboxClass,
radioClass: radioClass
});
}
});
}
/* Time picker */
function timepicker() {
$('.timepicker').each(function () {
$(this).timepicker({
isRTL: $('body').hasClass('rtl') ? true : false,
timeFormat: $(this).attr('data-format', 'am-pm') ? 'hh:mm tt' : 'HH:mm'
});
});
}
/* Date picker */
function datepicker() {
$('.date-picker').each(function () {
$(this).datepicker({
numberOfMonths: 1,
isRTL: $('body').hasClass('rtl') ? true : false,
prevText: '<i class="fa fa-angle-left"></i>',
nextText: '<i class="fa fa-angle-right"></i>',
showButtonPanel: false
});
});
}
/* Date picker */
function bDatepicker() {
$('.b-datepicker').each(function () {
$(this).bootstrapDatepicker({
startView: $(this).data('view') ? $(this).data('view') : 0, // 0: month view , 1: year view, 2: multiple year view
language: $(this).data('lang') ? $(this).data('lang') : "en",
forceParse: $(this).data('parse') ? $(this).data('parse') : false,
daysOfWeekDisabled: $(this).data('day-disabled') ? $(this).data('day-disabled') : "", // Disable 1 or various day. For monday and thursday: 1,3
calendarWeeks: $(this).data('calendar-week') ? $(this).data('calendar-week') : false, // Display week number
autoclose: $(this).data('autoclose') ? $(this).data('autoclose') : false,
todayHighlight: $(this).data('today-highlight') ? $(this).data('today-highlight') : true, // Highlight today date
toggleActive: $(this).data('toggle-active') ? $(this).data('toggle-active') : true, // Close other when open
multidate: $(this).data('multidate') ? $(this).data('multidate') : false, // Allow to select various days
orientation: $(this).data('orientation') ? $(this).data('orientation') : "auto", // Allow to select various days,
rtl: $('html').hasClass('rtl') ? true : false
});
});
}
function multiDatesPicker() {
$('.multidatepicker').each(function () {
$(this).multiDatesPicker({
dateFormat: 'yy-mm-dd',
minDate: new Date(),
maxDate: '+1y',
firstDay: 1,
showOtherMonths: true
});
});
}
function rating() {
$('.rateit').each(function () {
$(this).rateit({
readonly: $(this).data('readonly') ? $(this).data('readonly') : false, // Not editable, for example to show rating that already exist
resetable: $(this).data('resetable') ? $(this).data('resetable') : false,
value: $(this).data('value') ? $(this).data('value') : 0, // Current value of rating
min: $(this).data('min') ? $(this).data('min') : 1, // Maximum of star
max: $(this).data('max') ? $(this).data('max') : 5, // Maximum of star
step: $(this).data('step') ? $(this).data('step') : 0.1
});
// Tooltip Option
if ($(this).data('tooltip')) {
var tooltipvalues = ['bad', 'poor', 'ok', 'good', 'super']; // You can change text here
$(this).bind('over', function (event, value) { $(this).attr('title', tooltipvalues[value - 1]); });
}
// Confirmation before voting option
if ($(this).data('confirmation')) {
$(this).on('beforerated', function (e, value) {
value = value.toFixed(1);
if (!confirm('Are you sure you want to rate this item: ' + value + ' stars?')) {
e.preventDefault();
}
else {
// We disable rating after voting. If you want to keep it enable, remove this part
$(this).rateit('readonly', true);
}
});
}
// Disable vote after rating
if ($(this).data('disable-after')) {
$(this).bind('rated', function (event, value) {
$(this).rateit('readonly', true);
});
}
// Display rating value as text below
if ($(this).parent().find('.rating-value')) {
$(this).bind('rated', function (event, value) {
if (value) value = value.toFixed(1);
$(this).parent().find('.rating-value').text('Your rating: ' + value);
});
}
// Display hover value as text below
if ($(this).parent().find('.hover-value')) {
$(this).bind('over', function (event, value) {
if (value) value = value.toFixed(1);
$(this).parent().find('.hover-value').text('Hover rating value: ' + value);
});
}
});
}
/* Date & Time picker */
function datetimepicker() {
if ($.fn.datetimepicker) {
$('.datetimepicker').each(function () {
$(this).datetimepicker({
prevText: '<i class="fa fa-angle-left"></i>',
nextText: '<i class="fa fa-angle-right"></i>'
});
});
/* Inline Date & Time picker */
$('.inline_datetimepicker').datetimepicker({
altFieldTimeOnly: false,
isRTL: is_RTL
});
}
}
/* Popup Images */
function magnificPopup() {
if ($('.magnific').length && $.fn.magnificPopup) {
$('.magnific').magnificPopup({
type: 'image',
gallery: {
enabled: true
},
removalDelay: 300,
mainClass: 'mfp-fade'
});
}
}
/**** Summernote Editor ****/
function editorSummernote() {
if ($('.summernote').length && $.fn.summernote) {
$('.summernote').each(function () {
$(this).summernote({
height: 300,
airMode: $(this).data('airmode') ? $(this).data('airmode') : false,
airPopover: [
["style", ["style"]],
['color', ['color']],
['font', ['bold', 'underline', 'clear']],
['para', ['ul', 'paragraph']],
['table', ['table']],
['insert', ['link', 'picture']]
],
toolbar: [
["style", ["style"]],
["style", ["bold", "italic", "underline", "clear"]],
["fontsize", ["fontsize"]],
["color", ["color"]],
["para", ["ul", "ol", "paragraph"]],
["height", ["height"]],
["table", ["table"]],
['view', ['codeview']],
]
});
});
}
}
/**** CKE Editor ****/
function editorCKE() {
if ($('.cke-editor').length && $.fn.ckeditor) {
$('.cke-editor').each(function () {
$(this).ckeditor();
});
// Turn off automatic editor creation first.
CKEDITOR.disableAutoInline = true;
}
}
function slider() {
if ($('.slick').length && $.fn.slick) {
$('.slick').each(function () {
$(this).slick({
accessibility: true, // Enables tabbing and arrow key navigation
adaptiveHeight: false,
arrows: $(this).data('arrows') ? $(this).data('arrows') : false, // Enable Next/Prev arrows
asNavFor: null,
prevArrow: '<button type="button" data-role="none" class="slick-prev">Previous</button>', // prev arrow
nextArrow: '<button type="button" data-role="none" class="slick-next">Next</button>', // next arrow
autoplay: $(this).attr('data-autoplay') ? $(this).attr('data-autoplay') : true, // Enables auto play of slides
autoplaySpeed: $(this).data('timing') ? $(this).data('timing') : 4000, // Auto play change interval
centerMode: $(this).data('center') ? $(this).data('center') : false, // Enables centered view with partial prev/next slides.
centerPadding: '50px', // Side padding when in center mode. (px or %)
cssEase: 'ease', // CSS3 easing
dots: $(this).attr('data-dots') ? $(this).attr('data-dots') : true, // Current slide indicator dots
dotsClass: 'slick-dots', // Class for slide indicator dots container
draggable: true, // Enables desktop dragging
easing: 'linear', // animate() fallback easing
fade: $(this).data('fade') ? $(this).data('fade') : false, // Enables fade
focusOnSelect: false,
infinite: true, // Infinite looping
lazyLoad: 'ondemand', // Accepts 'ondemand' or 'progressive' for lazy load technique
onBeforeChange: null, // Before slide change callback
onAfterChange: null, // After slide change callback
onInit: null, // When Slick initializes for the first time callback
onReInit: null, // Every time Slick (re-)initializes callback
pauseOnHover: true, // Pauses autoplay on hover
pauseOnDotsHover: false, // Pauses autoplay when a dot is hovered
responsive: null, // Breakpoint triggered settings
rtl: $('body').hasClass('rtl') ? true : false, // Change the slider's direction to become right-to-left
slide: '.slide', // Slide element query
slidesToShow: $(this).data('num-slides') ? $(this).data('num-slides') : 1, // # of slides to show at a time
slidesToScroll: $(this).data('num-scroll') ? $(this).data('num-scroll') : 1, // # of slides to show at a time,
speed: 500, // Transition speed
swipe: true, // Enables touch swipe
swipeToSlide: false, // Swipe to slide irrespective of slidesToScroll
touchMove: true, // Enables slide moving with touch
touchThreshold: 5, // To advance slides, the user must swipe a length of (1/touchThreshold) * the width of the slider.
useCSS: true, // Enable/Disable CSS Transitions
variableWidth: $(this).data('variable-width') ? true : false, // Disables automatic slide width calculation
vertical: false, // Vertical slide direction
waitForAnimate: true // Ignores requests to advance the slide while animating
});
});
}
}
function formWizard() {
if ($('.wizard').length && $.fn.stepFormWizard) {
$('.wizard').each(function () {
$this = $(this);
if (!$(this).data('initiated')) {
$(this).stepFormWizard({
theme: $(this).data('style') ? $(this).data('style') : "circle",
showNav: $(this).data('nav') ? $(this).data('nav') : "top",
height: "auto",
rtl: $('body').hasClass('rtl') ? true : false,
onNext: function (i, wizard) {
if ($this.hasClass('wizard-validation')) {
return $('form', wizard).parsley().validate('block' + i);
}
},
onFinish: function (i) {
if ($this.hasClass('wizard-validation')) {
return $('form', wizard).parsley().validate();
}
}
})
$(this).data('initiated', true);
}
});
/* Fix issue only with tabs with Validation on error show */
$('#validation .wizard .sf-btn').on('click', function () {
setTimeout(function () {
$(window).resize();
$(window).trigger('resize');
}, 50);
});
}
}
function formValidation() {
if ($('.form-validation').length && $.fn.validate) {
/* We add an addition rule to show you. Example : 4 + 8. You can other rules if you want */
$.validator.methods.operation = function (value, element, param) {
return value == param;
};
$.validator.methods.customemail = function (value, element) {
return /^([-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+\.[a-zA-Z]{2,4})+$/.test(value);
};
$('.form-validation').each(function () {
var formValidation = $(this).validate({
success: "valid",
submitHandler: function () { alert("Form is valid! We submit it") },
errorClass: "form-error",
validClass: "form-success",
errorElement: "div",
ignore: [],
rules: {
avatar: { extension: "jpg|png|gif|jpeg|doc|docx|pdf|xls|rar|zip" },
password2: { equalTo: '#password' },
calcul: { operation: 12 },
url: { url: true },
email: {
required: {
depends: function () {
$(this).val($.trim($(this).val()));
return true;
}
},
customemail: true
},
},
messages: {
name: { required: 'Enter your name' },
lastname: { required: 'Enter your last name' },
firstname: { required: 'Enter your first name' },
email: { required: 'Enter email address', customemail: 'Enter a valid email address' },
language: { required: 'Enter your language' },
mobile: { required: 'Enter your phone number' },
avatar: { required: 'You must upload your avatar' },
password: { required: 'Write your password' },
password2: { required: 'Write your password', equalTo: '2 passwords must be the same' },
calcul: { required: 'Enter the result of 4 + 8', operation: 'Result is false. Try again!' },
terms: { required: 'You must agree with terms' }
},
highlight: function (element, errorClass, validClass) {
$(element).closest('.form-control').addClass(errorClass).removeClass(validClass);
},
unhighlight: function (element, errorClass, validClass) {
$(element).closest('.form-control').removeClass(errorClass).addClass(validClass);
},
errorPlacement: function (error, element) {
if (element.hasClass("custom-file") || element.hasClass("checkbox-type") || element.hasClass("language")) {
element.closest('.option-group').after(error);
}
else if (element.is(":radio") || element.is(":checkbox")) {
element.closest('.option-group').after(error);
}
else if (element.parent().hasClass('input-group')) {
element.parent().after(error);
}
else {
error.insertAfter(element);
}
},
invalidHandler: function (event, validator) {
var errors = validator.numberOfInvalids();
}
});
$(".form-validation .cancel").click(function () {
formValidation.resetForm();
});
});
}
}
/**** Animated Panels ****/
function liveTile() {
if ($('.live-tile').length && $.fn.liveTile) {
$('.live-tile').each(function () {
$(this).liveTile("destroy", true); /* To get new size if resize event */
tile_height = $(this).data("height") ? $(this).data("height") : $(this).find('.panel-body').height() + 52;
$(this).height(tile_height);
$(this).liveTile({
speed: $(this).data("speed") ? $(this).data("speed") : 500, // Start after load or not
mode: $(this).data("animation-easing") ? $(this).data("animation-easing") : 'carousel', // Animation type: carousel, slide, fade, flip, none
playOnHover: $(this).data("play-hover") ? $(this).data("play-hover") : false, // Play live tile on hover
repeatCount: $(this).data("repeat-count") ? $(this).data("repeat-count") : -1, // Repeat or not (-1 is infinite
delay: $(this).data("delay") ? $(this).data("delay") : 0, // Time between two animations
startNow: $(this).data("start-now") ? $(this).data("start-now") : true, //Start after load or not
});
});
}
}
/**** Bar Charts: CHARTJS ****/
function barCharts() {
if ($('.bar-stats').length) {
$('.bar-stats').each(function () {
var randomScalingFactor = function () { return Math.round(Math.random() * 100) };
var custom_colors = ['#C9625F', '#18A689', '#90ed7d', '#f7a35c', '#8085e9', '#f15c80', '#8085e8', '#91e8e1'];
var custom_color = custom_colors[Math.floor(Math.random() * custom_colors.length)];
var barChartData = {
labels: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"],
datasets: [{
fillColor: custom_color,
strokeColor: custom_color,
highlightFill: "#394248",
highlightStroke: "#394248",
data: [randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor()]
}
]
}
var ctx = $(this).get(0).getContext("2d");
window.myBar = new Chart(ctx).Bar(barChartData, {
responsive: true,
scaleShowLabels: false,
showScale: true,
scaleLineColor: "rgba(0,0,0,.1)",
scaleShowGridLines: false,
});
});
}
}
function animateNumber() {
$('.countup').each(function () {
from = $(this).data("from") ? $(this).data("from") : 0;
to = $(this).data("to") ? $(this).data("to") : 100;
duration = $(this).data("duration") ? $(this).data("duration") : 2;
delay = $(this).data("delay") ? $(this).data("delay") : 1000;
decimals = $(this).data("decimals") ? $(this).data("decimals") : 0;
var options = {
useEasing: true,
useGrouping: true,
separator: ',',
prefix: $(this).data("prefix") ? $(this).data(" prefix") : '',
suffix: $(this).data("suffix") ? $(this).data("suffix") : ''
}
var numAnim = new countUp($(this).get(0), from, to, decimals, duration, options);
setTimeout(function () {
numAnim.start();
}, delay);
});
}
function textareaAutosize() {
$('textarea.autosize').each(function () {
$(this).autosize();
});
}
/**** On Resize Functions ****/
$(window).bind('resize', function (e) {
window.resizeEvt;
$(window).resize(function () {
clearTimeout(window.resizeEvt);
window.resizeEvt = setTimeout(function () {
tableResponsive();
}, 250);
});
});
return {
inputSelect: inputSelect,
sortablePortlets: sortablePortlets,
init: function () {
/**** Variables Initiation ****/
var doc = document;
var docEl = document.documentElement;
var $sidebar = $('.sidebar');
var $mainContent = $('.main-content');
var $sidebarWidth = $(".sidebar").width();
var is_RTL = false;
if ($('body').hasClass('rtl')) is_RTL = true;
var oldIndex;
if ($('.sortable').length && $.fn.sortable) {
$(".sortable").sortable({
handle: ".panel-header",
start: function (event, ui) {
oldIndex = ui.item.index();
ui.placeholder.height(ui.item.height() - 20);
},
stop: function (event, ui) {
var newIndex = ui.item.index();
var movingForward = newIndex > oldIndex;
var nextIndex = newIndex + (movingForward ? -1 : 1);
var items = $('.sortable > div');
// Find the element to move
var itemToMove = items.get(nextIndex);
if (itemToMove) {
// Find the element at the index where we want to move the itemToMove
var newLocation = $(items.get(oldIndex));
// Decide if it goes before or after
if (movingForward) {
$(itemToMove).insertBefore(newLocation);
} else {
$(itemToMove).insertAfter(newLocation);
}
}
}
});
}
sortablePortlets();
sortableTable();
nestable();
showTooltip();
popover();
colorPicker();
numericStepper();
iosSwitch();
sliderIOS();
rangeSlider();
buttonLoader();
inputSelect();
inputTags();
tableResponsive();
tableDynamic();
handleiCheck();
timepicker();
datepicker();
bDatepicker();
multiDatesPicker();
datetimepicker();
rating();
magnificPopup();
editorSummernote();
editorCKE();
slider();
liveTile();
formWizard();
formValidation();
barCharts();
animateNumber();
textareaAutosize();
}
}
}]);