MMCT TEAM
Server IP : 111.118.215.156  /  Your IP : 216.73.216.76
Web Server : Apache
System : Linux md-in-26.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
User : azasoqqa ( 1858)
PHP Version : 8.2.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home2/azasoqqa/public_html/rdcareerconsultancy.com/rdapplication/resources/js/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home2/azasoqqa/public_html/rdcareerconsultancy.com/rdapplication/resources/js/custom.js
"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.stroyka.search.getAjaxSettings = function(query) {
        return {
            url: 'ajax/suggestions.html?query=' + encodeURIComponent(query),
        };
    };

    /*
    // Search debounce
    */
    window.stroyka.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.stroyka.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.stroyka.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.stroyka.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');

        stroyka.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));

MMCT - 2023