user-profile.js
20.2 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
'use strict';
$(document).ready(function() {
$(window).on('resize', function() {
dashboardEcharts();
});
$(window).on('load', function() {
dashboardEcharts();
});
$("a[data-toggle=\"tab\"]").on("shown.bs.tab", function(e) {
dashboardEcharts();
});
//line chart
function dashboardEcharts() {
/*line chart*/
var myChart = echarts.init(document.getElementById('main'));
var option = {
tooltip: {
trigger: 'item',
formatter: function(params) {
var date = new Date(params.value[0]);
var data = date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate() + ' ' + date.getHours() + ':' + date.getMinutes();
return data + '<br/>' + params.value[1] + ', ' + params.value[2];
},
responsive: true
},
dataZoom: {
show: true,
start: 70
},
legend: {
data: ['Profit']
},
grid: {
y2: 80
},
xAxis: [{
type: 'time',
splitNumber: 10
}],
yAxis: [{
type: 'value'
}],
series: [{
name: 'Profit',
type: 'line',
showAllSymbol: true,
symbolSize: function(value) {
return Math.round(value[2] / 10) + 2;
},
data: (function() {
var d = [];
var len = 0;
var now = new Date();
var value;
while (len++ < 200) {
d.push([
new Date(2014, 9, 1, 0, len * 10000),
(Math.random() * 30).toFixed(2) - 0,
(Math.random() * 100).toFixed(2) - 0
]);
}
return d;
})()
}]
};
myChart.setOption(option);
}
//for responsive all datatable
$('#simpletable').DataTable({
"paging": true,
"ordering": true,
"bLengthChange": true,
"info": true,
"searching": true
});
$("a[data-toggle=\"tab\"]").on("shown.bs.tab", function(e) {
$($.fn.dataTable.tables(true)).DataTable().columns.adjust();
});
// Edit information of user-profile
$('#edit-cancel').on('click', function() {
var c = $('#edit-btn').find("i");
c.removeClass('icofont-close');
c.addClass('icofont-edit');
$('.view-info').show();
$('.edit-info').hide();
});
$('.edit-info').hide();
$('#edit-btn').on('click', function() {
var b = $(this).find("i");
var edit_class = b.attr('class');
if (edit_class == 'icofont icofont-edit') {
b.removeClass('icofont-edit');
b.addClass('icofont-close');
$('.view-info').hide();
$('.edit-info').show();
} else {
b.removeClass('icofont-close');
b.addClass('icofont-edit');
$('.view-info').show();
$('.edit-info').hide();
}
});
//check editor js
CKEDITOR.replace('description', {
// Define the toolbar: http://docs.ckeditor.com/#!/guide/dev_toolbar
// The standard preset from CDN which we used as a base provides more features than we need.
// Also by default it comes with a 2-line toolbar. Here we put all buttons in a single row.
toolbar: [{
name: 'clipboard',
items: ['Undo', 'Redo']
}, {
name: 'styles',
items: ['Styles', 'Format']
}, {
name: 'basicstyles',
items: ['Bold', 'Italic', 'Strike', '-', 'RemoveFormat']
}, {
name: 'paragraph',
items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote']
}, {
name: 'links',
items: ['Link', 'Unlink']
}, {
name: 'insert',
items: ['Image', 'EmbedSemantic', 'Table']
}, {
name: 'tools',
items: ['Maximize']
}, {
name: 'editing',
items: ['Scayt']
}],
// Since we define all configuration options here, let's instruct CKEditor to not load config.js which it does by default.
// One HTTP request less will result in a faster startup time.
// For more information check http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-customConfig
customConfig: '',
// Enabling extra plugins, available in the standard-all preset: http://ckeditor.com/presets-all
extraPlugins: 'autoembed,embedsemantic,image2,uploadimage,uploadfile',
imageUploadUrl: '/uploader/upload.php?type=Images',
uploadUrl: '/uploader/upload.php',
/*********************** File management support ***********************/
// In order to turn on support for file uploads, CKEditor has to be configured to use some server side
// solution with file upload/management capabilities, like for example CKFinder.
// For more information see http://docs.ckeditor.com/#!/guide/dev_ckfinder_integration
// Uncomment and correct these lines after you setup your local CKFinder instance.
// filebrowserBrowseUrl: 'http://example.com/ckfinder/ckfinder.html',
// filebrowserUploadUrl: 'http://example.com/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files',
/*********************** File management support ***********************/
// Remove the default image plugin because image2, which offers captions for images, was enabled above.
removePlugins: 'image',
// Make the editing area bigger than default.
height: 400,
// This is optional, but will let us define multiple different styles for multiple editors using the same CSS file.
bodyClass: 'article-editor',
// Reduce the list of block elements listed in the Format dropdown to the most commonly used.
format_tags: 'p;h1;h2;h3;pre',
// Simplify the Image and Link dialog windows. The "Advanced" tab is not needed in most cases.
removeDialogTabs: 'image:advanced;link:advanced',
// Define the list of styles which should be available in the Styles dropdown list.
// If the "class" attribute is used to style an element, make sure to define the style for the class in "mystyles.css"
// (and on your website so that it rendered in the same way).
// Note: by default CKEditor looks for styles.js file. Defining stylesSet inline (as below) stops CKEditor from loading
// that file, which means one HTTP request less (and a faster startup).
// For more information see http://docs.ckeditor.com/#!/guide/dev_styles
stylesSet: [
/* Inline Styles */
{
name: 'Marker',
element: 'span',
attributes: {
'class': 'marker'
}
}, {
name: 'Cited Work',
element: 'cite'
}, {
name: 'Inline Quotation',
element: 'q'
},
/* Object Styles */
{
name: 'Special Container',
element: 'div',
styles: {
padding: '5px 10px',
background: '#eee',
border: '1px solid #ccc'
}
}, {
name: 'Compact table',
element: 'table',
attributes: {
cellpadding: '5',
cellspacing: '0',
border: '1',
bordercolor: '#ccc'
},
styles: {
'border-collapse': 'collapse'
}
}, {
name: 'Borderless Table',
element: 'table',
styles: {
'border-style': 'hidden',
'background-color': '#E6E6FA'
}
}, {
name: 'Square Bulleted List',
element: 'ul',
styles: {
'list-style-type': 'square'
}
},
// Media embed
{
name: '240p',
type: 'widget',
widget: 'embedSemantic',
attributes: {
'class': 'embed-240p'
}
}, {
name: '360p',
type: 'widget',
widget: 'embedSemantic',
attributes: {
'class': 'embed-360p'
}
}, {
name: '480p',
type: 'widget',
widget: 'embedSemantic',
attributes: {
'class': 'embed-480p'
}
}, {
name: '720p',
type: 'widget',
widget: 'embedSemantic',
attributes: {
'class': 'embed-720p'
}
}, {
name: '1080p',
type: 'widget',
widget: 'embedSemantic',
attributes: {
'class': 'embed-1080p'
}
}
]
});
//edit user description
$('#edit-cancel-btn').on('click', function() {
var c = $('#edit-info-btn').find("i");
c.removeClass('icofont-close');
c.addClass('icofont-edit');
$('.view-desc').show();
$('.edit-desc').hide();
});
$('.edit-desc').hide();
$('#edit-info-btn').on('click', function() {
var b = $(this).find("i");
var edit_class = b.attr('class');
if (edit_class == 'icofont icofont-edit') {
b.removeClass('icofont-edit');
b.addClass('icofont-close');
$('.view-desc').hide();
$('.edit-desc').show();
} else {
b.removeClass('icofont-close');
b.addClass('icofont-edit');
$('.view-desc').show();
$('.edit-desc').hide();
}
});
// Minimum setup
$('#datetimepicker1').datetimepicker({
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// Using Locales
$('#datetimepicker2').datetimepicker({
locale: 'ru',
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// Custom Formats
$('#datetimepicker3').datetimepicker({
format: 'LT',
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// No Icon (input field only)
$('#datetimepicker4').datetimepicker({
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// Enabled/Disabled Dates
$('#datetimepicker5').datetimepicker({
defaultDate: "11/1/2013",
disabledDates: [
moment("12/25/2013"),
new Date(2013, 11 - 1, 21),
"11/22/2013 00:53"
],
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// Linked Pickers
$('#datetimepicker6').datetimepicker({
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
$('#datetimepicker7').datetimepicker({
useCurrent: false, //Important! See issue #1075
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
$("#datetimepicker6").on("dp.change", function(e) {
$('#datetimepicker7').data("DateTimePicker").minDate(e.date);
});
$("#datetimepicker7").on("dp.change", function(e) {
$('#datetimepicker6').data("DateTimePicker").maxDate(e.date);
});
// Custom icons
$('#datetimepicker8').datetimepicker({
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down"
}
});
// View Mode
$('#datetimepicker9').datetimepicker({
viewMode: 'years',
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// Min View Mode
$('#datetimepicker10').datetimepicker({
viewMode: 'years',
format: 'MM/YYYY',
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// Disabled Days of the Week
$('#datetimepicker11').datetimepicker({
daysOfWeekDisabled: [0, 6],
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
$('input[name="daterange"]').daterangepicker();
$(function() {
$('input[name="birthdate"]').daterangepicker({
singleDatePicker: true,
showDropdowns: true
},
function(start, end, label) {
var years = moment().diff(start, 'years');
alert("You are " + years + " years old.");
});
$('input[name="datefilter"]').daterangepicker({
autoUpdateInput: false,
locale: {
cancelLabel: 'Clear'
}
});
$('input[name="datefilter"]').on('apply.daterangepicker', function(ev, picker) {
$(this).val(picker.startDate.format('MM/DD/YYYY') + ' - ' + picker.endDate.format('MM/DD/YYYY'));
});
$('input[name="datefilter"]').on('cancel.daterangepicker', function(ev, picker) {
$(this).val('');
});
var start = moment().subtract(29, 'days');
var end = moment();
function cb(start, end) {
$('#reportrange span').html(start.format('MMMM D, YYYY') + ' - ' + end.format('MMMM D, YYYY'));
}
$('#reportrange').daterangepicker({
startDate: start,
endDate: end,
"drops": "up",
ranges: {
'Today': [moment(), moment()],
'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
'Last 7 Days': [moment().subtract(6, 'days'), moment()],
'Last 30 Days': [moment().subtract(29, 'days'), moment()],
'This Month': [moment().startOf('month'), moment().endOf('month')],
'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')]
}
}, cb);
cb(start, end);
$('.input-daterange input').each(function() {
$(this).datepicker();
});
$('#sandbox-container .input-daterange').datepicker({
todayHighlight: true
});
$('.input-group-date-custom').datepicker({
todayBtn: true,
clearBtn: true,
keyboardNavigation: false,
forceParse: false,
todayHighlight: true,
defaultViewDate: {
year: '2017',
month: '01',
day: '01'
}
});
$('.multiple-select').datepicker({
todayBtn: true,
clearBtn: true,
multidate: true,
keyboardNavigation: false,
forceParse: false,
todayHighlight: true,
defaultViewDate: {
year: '2017',
month: '01',
day: '01'
}
});
$('#config-demo').daterangepicker({
"singleDatePicker": true,
"showDropdowns": true,
"timePicker": true,
"timePicker24Hour": true,
"timePickerSeconds": true,
"showCustomRangeLabel": false,
"alwaysShowCalendars": true,
"startDate": "11/30/2016",
"endDate": "12/06/2016",
"drops": "up"
}, function(start, end, label) {
console.log("New date range selected: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD') + ' (predefined range: ' + label + ')");
});
});
// Date-dropper js start
$("#dropper-default").dateDropper({
dropWidth: 200,
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c"
}),
// Date-dropper js end
// Mini-color js start
$('.demo').each(function() {
//
// Dear reader, it's actually very easy to initialize MiniColors. For example:
//
// $(selector).minicolors();
//
// The way I've done it below is just for the demo, so don't get confused
// by it. Also, data- attributes aren't supported at this time...they're
// only used for this demo.
//
$(this).minicolors({
control: $(this).attr('data-control') || 'hue',
defaultValue: $(this).attr('data-defaultValue') || '',
format: $(this).attr('data-format') || 'hex',
keywords: $(this).attr('data-keywords') || '',
inline: $(this).attr('data-inline') === 'true',
letterCase: $(this).attr('data-letterCase') || 'lowercase',
opacity: $(this).attr('data-opacity'),
position: $(this).attr('data-position') || 'bottom left',
swatches: $(this).attr('data-swatches') ? $(this).attr('data-swatches').split('|') : [],
change: function(value, opacity) {
if (!value) return;
if (opacity) value += ', ' + opacity;
if (typeof console === 'object') {
console.log(value);
}
},
theme: 'bootstrap'
});
});
// Mini-color js ends
});