/** * App Invoice List (jquery) */ 'use strict'; $(function () { // Variable declaration for table var dt_invoice_table = $('.invoice-list-table'); // Invoice datatable if (dt_invoice_table.length) { var dt_invoice = dt_invoice_table.DataTable({ ajax: assetsPath + 'json/invoice-list.json', // JSON file to add data columns: [ // columns according to JSON { data: '' }, { data: 'invoice_id' }, { data: 'invoice_status' }, { data: 'issued_date' }, { data: 'client_name' }, { data: 'total' }, { data: 'balance' }, { data: 'invoice_status' }, { data: 'action' } ], columnDefs: [ { // For Responsive className: 'control', responsivePriority: 2, searchable: false, targets: 0, render: function (data, type, full, meta) { return ''; } }, { // Invoice ID targets: 1, render: function (data, type, full, meta) { var $invoice_id = full['invoice_id']; // Creates full output for row var $row_output = '#' + $invoice_id + ''; return $row_output; } }, { // Invoice status targets: 2, render: function (data, type, full, meta) { var $invoice_status = full['invoice_status'], $due_date = full['due_date'], $balance = full['balance']; var roleBadgeObj = { Sent: '', Draft: '', 'Past Due': '', 'Partial Payment': '', Paid: '', Downloaded: '' }; return ( " Balance: ' + $balance + '
Due Date: ' + $due_date + "
'>" + roleBadgeObj[$invoice_status] + '' ); } }, { // Client name and Service targets: 3, responsivePriority: 4, render: function (data, type, full, meta) { var $name = full['client_name'], $service = full['service'], $image = full['avatar_image'], $rand_num = Math.floor(Math.random() * 11) + 1, $user_img = $rand_num + '.png'; if ($image === true) { // For Avatar image var $output = 'Avatar'; } else { // For Avatar badge var stateNum = Math.floor(Math.random() * 6), states = ['success', 'danger', 'warning', 'info', 'primary', 'secondary'], $state = states[stateNum], $name = full['client_name'], $initials = $name.match(/\b\w/g) || []; $initials = (($initials.shift() || '') + ($initials.pop() || '')).toUpperCase(); $output = '' + $initials + ''; } // Creates full output for row var $row_output = '
' + '
' + '
' + $output + '
' + '
' + '
' + '' + $name + '' + '' + $service + '' + '
' + '
'; return $row_output; } }, { // Total Invoice Amount targets: 4, render: function (data, type, full, meta) { var $total = full['total']; return '' + $total + '$' + $total; } }, { // Due Date targets: 5, render: function (data, type, full, meta) { var $due_date = new Date(full['due_date']); // Creates full output for row var $row_output = '' + moment($due_date).format('YYYYMMDD') + '' + moment($due_date).format('DD MMM YYYY'); $due_date; return $row_output; } }, { // Client Balance/Status targets: 6, orderable: false, render: function (data, type, full, meta) { var $balance = full['balance']; if ($balance === 0) { var $badge_class = 'bg-label-success'; return ' Paid '; } else { return '' + $balance + '' + $balance; } } }, { targets: 7, visible: false }, { // Actions targets: -1, title: 'Actions', searchable: false, orderable: false, render: function (data, type, full, meta) { return ( '
' + '' + '' + '' + '
' ); } } ], order: [[1, 'desc']], dom: '<"row ms-2 me-3"' + '<"col-12 col-md-6 d-flex align-items-center justify-content-center justify-content-md-start gap-2"l<"dt-action-buttons text-xl-end text-lg-start text-md-end text-start mt-md-0 mt-3"B>>' + '<"col-12 col-md-6 d-flex align-items-center justify-content-end flex-column flex-md-row pe-3 gap-md-2"f<"invoice_status mb-3 mb-md-0">>' + '>t' + '<"row mx-2"' + '<"col-sm-12 col-md-6"i>' + '<"col-sm-12 col-md-6"p>' + '>', language: { sLengthMenu: 'Show _MENU_', search: '', searchPlaceholder: 'Search Invoice' }, // Buttons with Dropdown buttons: [ { text: 'Create Invoice', className: 'btn btn-primary', action: function (e, dt, button, config) { window.location = 'app-invoice-add.html'; } } ], // For responsive popup responsive: { details: { display: $.fn.dataTable.Responsive.display.modal({ header: function (row) { var data = row.data(); return 'Details of ' + data['full_name']; } }), type: 'column', renderer: function (api, rowIdx, columns) { var data = $.map(columns, function (col, i) { return col.title !== '' // ? Do not show row in modal popup if title is blank (for check box) ? '' + '' + col.title + ':' + ' ' + '' + col.data + '' + '' : ''; }).join(''); return data ? $('').append(data) : false; } } }, initComplete: function () { // Adding role filter once table initialized this.api() .columns(7) .every(function () { var column = this; var select = $( '' ) .appendTo('.invoice_status') .on('change', function () { var val = $.fn.dataTable.util.escapeRegex($(this).val()); column.search(val ? '^' + val + '$' : '', true, false).draw(); }); column .data() .unique() .sort() .each(function (d, j) { select.append(''); }); }); } }); } // On each datatable draw, initialize tooltip dt_invoice_table.on('draw.dt', function () { var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')); var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) { return new bootstrap.Tooltip(tooltipTriggerEl, { boundary: document.body }); }); }); // Delete Record $('.invoice-list-table tbody').on('click', '.delete-record', function () { dt_invoice.row($(this).parents('tr')).remove().draw(); }); // Filter form control to default size // ? setTimeout used for multilingual table initialization setTimeout(() => { $('.dataTables_filter .form-control').removeClass('form-control-sm'); $('.dataTables_length .form-select').removeClass('form-select-sm'); }, 300); });