/
/
home
/
u917864144
/
domains
/
dtdesigner.in
/
public_html
/
admin
/
js
EDITOR
/home/u917864144/domains/dtdesigner.in/public_html/admin/js/custom.js
SAVE
CLOSE
"use strict"; /* // Table of content // - Search AJAX settings // - Search debounce // - Search simulate no results // - Datatables // - Analytics chart // - Widget chart (.saw-chart) // - Widget circle chart (.saw-chart-circle) // - Feather // - Range filter */ (function($, window){ /* // Search AJAX settings */ window.dt.search.getAjaxSettings = function(query) { return { url: 'ajax/suggestions.html?query=' + encodeURIComponent(query), }; }; /* // Search debounce */ window.dt.search.requestMiddleware.add(function(next, query, abortController) { return new Promise(function(resolve) { const timer = setTimeout(function() { resolve(next(query, abortController)); }, 500); abortController.add(function() { clearTimeout(timer); }); }); }); /* // Search simulate no results */ window.dt.search.requestMiddleware.add(function(next, query, abortController) { if (query.length >= 6) { return Promise.resolve(''); } else { return Promise.resolve(next(query, abortController)); } }); /* // Datatables */ (function() { $.fn.DataTable.ext.pager.numbers_length = 5; $.fn.DataTable.defaults.oLanguage.sInfo = 'Showing _START_ to _END_ of _TOTAL_'; $.fn.DataTable.defaults.oLanguage.sLengthMenu = 'Rows per page _MENU_'; const template = '' + '<"sa-datatables"' + '<"sa-datatables__table"t>' + '<"sa-datatables__footer"' + '<"sa-datatables__pagination"p>' + '<"sa-datatables__controls"' + '<"sa-datatables__legend"i>' + '<"sa-datatables__divider">' + '<"sa-datatables__page-size"l>' + '>' + '>' + '>'; $('.sa-datatables-init').each(function() { const tableSearchSelector = $(this).data('sa-search-input'); const table = $(this).DataTable({ dom: template, paging: true, ordering: true, drawCallback: function() { $(this.api().table().container()).find('.pagination').addClass('pagination-sm'); }, }); if (tableSearchSelector) { $(tableSearchSelector).on('input', function() { table.search(this.value).draw(); }); } }); })(); /* // Analytics chart */ (function() { const chartCanvas = document.getElementById('example-chart-js-analytics'); if (!chartCanvas) { return; } new Chart(chartCanvas.getContext('2d'), { type: 'bar', data: { labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], datasets: [ { backgroundColor: window.dt.colors.getThemeColor(), borderColor: 'transparent', borderWidth: 0, fill: 'origin', data: [ (10 / 240) * 1200, (26 / 240) * 1200, (105 / 240) * 1200, (57 / 240) * 1200, (94 / 240) * 1200, (26 / 240) * 1200, (57 / 240) * 1200, (48 / 240) * 1200, (142 / 240) * 1200, (94 / 240) * 1200, (128 / 240) * 1200, (222 / 240) * 1200, ], }, ], }, options: { maintainAspectRatio: false, plugins: { legend: { display: false, }, }, scales: { y: { ticks: { fontFamily: 'Roboto', fontSize: 13, fontColor: '#828f99', // Include a dollar sign in the ticks callback: function (value) { return '$' + value; }, }, gridLines: { lineWidth: 1, color: 'rgba(0, 0, 0, 0.1)', zeroLineWidth: 1, zeroLineColor: 'rgba(0, 0, 0, 0.1)', drawBorder: false, }, }, x: { ticks: { fontFamily: 'Roboto', fontSize: 13, fontColor: '#828f99', }, gridLines: { display: false, }, }, }, }, }); }()); /* // Widget chart (.saw-chart) */ (function() { $('.saw-chart[data-sa-data]').each(function() { const data = $(this).data('sa-data'); const labels = data.map(function(item) { return item.label; }); const values = data.map(function(item) { return item.value; }); const canvas = $(this).find('canvas')[0]; new Chart(canvas.getContext('2d'), { type: 'bar', data: { labels: labels, datasets: [ { backgroundColor: window.dt.colors.getThemeColor(), borderColor: 'transparent', borderWidth: 0, fill: 'origin', data: values, }, ], }, options: { maintainAspectRatio: false, plugins: { legend: { display: false, }, }, scales: { y: { ticks: { fontFamily: 'Roboto', fontSize: 13, fontColor: '#828f99', callback: function (value) { return '$' + value; }, }, gridLines: { lineWidth: 1, color: 'rgba(0, 0, 0, 0.1)', zeroLineWidth: 1, zeroLineColor: 'rgba(0, 0, 0, 0.1)', drawBorder: false, }, }, x: { ticks: { fontFamily: 'Roboto', fontSize: 13, fontColor: '#828f99', }, gridLines: { display: false, }, }, }, }, }); }); }()); /* // Widget circle chart (.saw-chart-circle) */ $('.saw-chart-circle[data-sa-data]').each(function() { const data = $(this).data('sa-data'); const labels = data.map(function(item) { return item.label; }); const values = data.map(function(item) { return item.value; }); const colors = data.map(function(item) { return item.color; }); const canvas = $(this).find('canvas')[0]; new Chart(canvas, { type: 'doughnut', data: { labels: labels, datasets: [ { borderColor: '#fff', hoverBorderColor: '#fff', borderWidth: 2, fill: 'origin', data: values, backgroundColor: colors, hoverBackgroundColor: colors, }, ], }, options: { maintainAspectRatio: false, plugins: { legend: { display: false, }, }, }, }); }); /* // Feather */ feather.replace({ width: '1em', height: '1em', }); /* // Range filter */ $('.sa-filter-range').each(function() { const min = $(this).data('min'); const max = $(this).data('max'); const from = $(this).data('from'); const to = $(this).data('to'); const slider = this.querySelector('.sa-filter-range__slider'); dt.nouislider.create(slider, { start: [from, to], connect: true, range: { 'min': min, 'max': max }, tooltips: true, pips: { mode: 'count', values: 5, density: 3, stepped: true, } }); const inputs = [ $(this).find('.sa-filter-range__input-from')[0], $(this).find('.sa-filter-range__input-to')[0] ]; slider.noUiSlider.on('update', function (values, handle) { inputs[handle].value = values[handle]; }); }); }(jQuery, window));
Ln 1, Col 1
FORMAT
WRAP
SAVE FILE
ONLINE
js
5 items
15:31:29
TERMINAL FM
×
NAVIGATION
Root
Parent Dir
Refresh
ACTIONS
New Folder
New File
Upload Files
New Symlink
SELECTION
Select All
Deselect
Delete Selected
NEW FOLDER
FOLDER NAME
NEW FILE
FILE NAME
UPLOAD FILES
Click to browse or drag & drop files
No files selected
RENAME
CURRENT NAME
NEW NAME
COPY FILE
SOURCE
DESTINATION NAME
CHMOD
FILE / FOLDER
CURRENT PERMISSIONS
NEW MODE (octal)
755 (rwxr-xr-x)
644 (rw-r--r--)
777 (rwxrwxrwx)
600 (rw-------)
444 (r--r--r--)
CONFIRM DELETE
You are about to delete:
This action is irreversible. All contents will be permanently removed.
NEW SYMLINK
LINK TARGET (path)
LINK NAME
Edit
Preview
Download
Rename
Copy
Chmod
Delete