| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461 |
- /**
- * app-ecommerce-order-list Script
- */
-
- 'use strict';
-
- // Datatable (js)
-
- document.addEventListener('DOMContentLoaded', function (e) {
- let borderColor, bodyBg, headingColor;
-
- borderColor = config.colors.borderColor;
- bodyBg = config.colors.bodyBg;
- headingColor = config.colors.headingColor;
-
- // Variable declaration for table
-
- const dt_order_table = document.querySelector('.datatables-order'),
- statusObj = {
- 1: { title: 'Dispatched', class: 'bg-label-warning' },
- 2: { title: 'Delivered', class: 'bg-label-success' },
- 3: { title: 'Out for Delivery', class: 'bg-label-primary' },
- 4: { title: 'Ready to Pickup', class: 'bg-label-info' }
- },
- paymentObj = {
- 1: { title: 'Paid', class: 'text-success' },
- 2: { title: 'Pending', class: 'text-warning' },
- 3: { title: 'Failed', class: 'text-danger' },
- 4: { title: 'Cancelled', class: 'text-secondary' }
- };
-
- // E-commerce Products datatable
-
- if (dt_order_table) {
- const dt_products = new DataTable(dt_order_table, {
- ajax: assetsPath + 'json/ecommerce-customer-order.json', // JSON file to add data
- columns: [
- // columns according to JSON
- { data: 'id' },
- { data: 'id', orderable: false, render: DataTable.render.select() },
- { data: 'order' },
- { data: 'date' },
- { data: 'customer' }, //email //avatar
- { data: 'payment' },
- { data: 'status' },
- { data: 'method' }, //method_number
- { data: 'id' }
- ],
- columnDefs: [
- {
- // For Responsive
- className: 'control',
- searchable: false,
- orderable: false,
- responsivePriority: 2,
- targets: 0,
- render: function (data, type, full, meta) {
- return '';
- }
- },
- {
- // For Checkboxes
- targets: 1,
- orderable: false,
- searchable: false,
- responsivePriority: 3,
- checkboxes: true,
- render: function () {
- return '<input type="checkbox" class="dt-checkboxes form-check-input">';
- },
- checkboxes: {
- selectAllRender: '<input type="checkbox" class="form-check-input">'
- }
- },
- {
- // Order ID
- targets: 2,
- render: function (data, type, full, meta) {
- const order_id = full['order'];
- // Creates full output for row
- const row_output =
- '<a href=" ' + baseUrl + 'app/ecommerce/order/details"><span>#' + order_id + '</span></a>';
- return row_output;
- }
- },
- {
- targets: 3,
- render: function (data, type, full, meta) {
- const date = new Date(full.date);
- const timeX = full['time'].substring(0, 5);
- const formattedDate = date.toLocaleDateString('en-US', {
- month: 'short',
- day: 'numeric',
- year: 'numeric'
- });
- return `<span class="text-nowrap">${formattedDate}, ${timeX}</span>`;
- }
- },
- {
- targets: 4,
- responsivePriority: 1,
- render: function (data, type, full, meta) {
- const name = full['customer'];
- const email = full['email'];
- const avatar = full['avatar'];
- let output;
-
- if (avatar) {
- // For Avatar image
- output = `<img src="${assetsPath}img/avatars/${avatar}" alt="Avatar" class="rounded-circle">`;
- } else {
- // For Avatar badge
- const stateNum = Math.floor(Math.random() * 6);
- const states = ['success', 'danger', 'warning', 'info', 'dark', 'primary', 'secondary'];
- const state = states[stateNum];
- const initials = (name.match(/\b\w/g) || []).slice(0, 2).join('').toUpperCase();
-
- output = `<span class="avatar-initial rounded-circle bg-label-${state}">${initials}</span>`;
- }
-
- // Creates full output for row
- const rowOutput = `
- <div class="d-flex justify-content-start align-items-center order-name text-nowrap">
- <div class="avatar-wrapper">
- <div class="avatar avatar-sm me-3">
- ${output}
- </div>
- </div>
- <div class="d-flex flex-column">
- <h6 class="m-0"><a href="${baseUrl}pages/profile-user" class="text-heading">${name}</a></h6>
- <small>${email}</small>
- </div>
- </div>`;
-
- return rowOutput;
- }
- },
- {
- targets: 5,
- render: function (data, type, full, meta) {
- const payment = full['payment'];
- const paymentStatus = paymentObj[payment];
- if (paymentStatus) {
- return `
- <h6 class="mb-0 align-items-center d-flex w-px-100 ${paymentStatus.class}">
- <i class="icon-base bx bxs-circle icon-8px me-1"></i>${paymentStatus.title}
- </h6>`;
- }
- return data;
- }
- },
- {
- targets: -3,
- render: function (data, type, full, meta) {
- const status = full['status'];
- const statusInfo = statusObj[status];
- if (statusInfo) {
- return `
- <span class="badge px-2 ${statusInfo.class} text-capitalized">
- ${statusInfo.title}
- </span>`;
- }
- return data;
- }
- },
- {
- targets: -2,
- render: function (data, type, full, meta) {
- let method = full['method'];
- let methodNumber = full['method_number'];
-
- if (method === 'paypal') {
- methodNumber = '@gmail.com';
- }
-
- return `
- <div class="d-flex align-items-center text-nowrap">
- <img src="${assetsPath}img/icons/payments/${method}.png" alt="${method}" width="29">
- <span><i class="icon-base bx bx-dots-horizontal-rounded mt-1"></i>${methodNumber}</span>
- </div>`;
- }
- },
- {
- targets: -1,
- title: 'Actions',
- searchable: false,
- orderable: false,
- render: function (data, type, full, meta) {
- return `
- <div class="d-flex justify-content-sm-start align-items-sm-center">
- <button class="btn btn-icon dropdown-toggle hide-arrow" data-bs-toggle="dropdown">
- <i class="icon-base bx bx-dots-vertical-rounded icon-md"></i>
- </button>
- <div class="dropdown-menu dropdown-menu-end m-0">
- <a href="${baseUrl}app/ecommerce/order/details" class="dropdown-item">View</a>
- <a href="javascript:void(0);" class="dropdown-item delete-record">Delete</a>
- </div>
- </div>`;
- }
- }
- ],
- select: {
- style: 'multi',
- selector: 'td:nth-child(2)'
- },
- order: [3, 'asc'],
- layout: {
- topStart: {
- search: {
- placeholder: 'Search Order',
- text: '_INPUT_'
- }
- },
- topEnd: {
- rowClass: 'row ms-3 my-0 justify-content-between',
- features: [
- {
- pageLength: {
- menu: [7, 10, 25, 50, 100],
- text: '_MENU_'
- }
- },
- {
- buttons: [
- {
- extend: 'collection',
- className: 'btn btn-label-primary dropdown-toggle',
- text: '<span class="d-flex align-items-center gap-2"><i class="icon-base bx bx-export icon-sm"></i> <span class="d-none d-sm-inline-block">Export</span></span>',
- buttons: [
- {
- extend: 'print',
- text: `<span class="d-flex align-items-center"><i class="icon-base bx bx-printer me-1"></i>Print</span>`,
- className: 'dropdown-item',
- exportOptions: {
- columns: [3, 4, 5, 6, 7],
- format: {
- body: function (inner, coldex, rowdex) {
- if (inner.length <= 0) return inner;
- const el = new DOMParser().parseFromString(inner, 'text/html').body.childNodes;
- let result = '';
- el.forEach(item => {
- if (item.classList && item.classList.contains('user-name')) {
- result += item.lastChild.firstChild.textContent;
- } else {
- result += item.textContent || item.innerText || '';
- }
- });
- return result;
- }
- }
- },
- customize: function (win) {
- win.document.body.style.color = headingColor;
- win.document.body.style.borderColor = borderColor;
- win.document.body.style.backgroundColor = bodyBg;
- const table = win.document.body.querySelector('table');
- table.classList.add('compact');
- table.style.color = 'inherit';
- table.style.borderColor = 'inherit';
- table.style.backgroundColor = 'inherit';
- }
- },
- {
- extend: 'csv',
- text: `<span class="d-flex align-items-center"><i class="icon-base bx bx-file me-1"></i>Csv</span>`,
- className: 'dropdown-item',
- exportOptions: {
- columns: [3, 4, 5, 6, 7],
- format: {
- body: function (inner, coldex, rowdex) {
- if (inner.length <= 0) return inner;
- const el = new DOMParser().parseFromString(inner, 'text/html').body.childNodes;
- let result = '';
- el.forEach(item => {
- if (item.classList && item.classList.contains('user-name')) {
- result += item.lastChild.firstChild.textContent;
- } else {
- result += item.textContent || item.innerText || '';
- }
- });
- return result;
- }
- }
- }
- },
- {
- extend: 'excel',
- text: `<span class="d-flex align-items-center"><i class="icon-base bx bxs-file-export me-1"></i>Excel</span>`,
- className: 'dropdown-item',
- exportOptions: {
- columns: [3, 4, 5, 6, 7],
- format: {
- body: function (inner, coldex, rowdex) {
- if (inner.length <= 0) return inner;
- const el = new DOMParser().parseFromString(inner, 'text/html').body.childNodes;
- let result = '';
- el.forEach(item => {
- if (item.classList && item.classList.contains('user-name')) {
- result += item.lastChild.firstChild.textContent;
- } else {
- result += item.textContent || item.innerText || '';
- }
- });
- return result;
- }
- }
- }
- },
- {
- extend: 'pdf',
- text: `<span class="d-flex align-items-center"><i class="icon-base bx bxs-file-pdf me-1"></i>Pdf</span>`,
- className: 'dropdown-item',
- exportOptions: {
- columns: [3, 4, 5, 6, 7],
- format: {
- body: function (inner, coldex, rowdex) {
- if (inner.length <= 0) return inner;
- const el = new DOMParser().parseFromString(inner, 'text/html').body.childNodes;
- let result = '';
- el.forEach(item => {
- if (item.classList && item.classList.contains('user-name')) {
- result += item.lastChild.firstChild.textContent;
- } else {
- result += item.textContent || item.innerText || '';
- }
- });
- return result;
- }
- }
- }
- },
- {
- extend: 'copy',
- text: `<i class="icon-base bx bx-copy me-1"></i>Copy`,
- className: 'dropdown-item',
- exportOptions: {
- columns: [3, 4, 5, 6, 7],
- format: {
- body: function (inner, coldex, rowdex) {
- if (inner.length <= 0) return inner;
- const el = new DOMParser().parseFromString(inner, 'text/html').body.childNodes;
- let result = '';
- el.forEach(item => {
- if (item.classList && item.classList.contains('user-name')) {
- result += item.lastChild.firstChild.textContent;
- } else {
- result += item.textContent || item.innerText || '';
- }
- });
- return result;
- }
- }
- }
- }
- ]
- }
- ]
- }
- ]
- },
- bottomStart: {
- rowClass: 'row mx-3 justify-content-between',
- features: ['info']
- },
- bottomEnd: 'paging'
- },
- language: {
- paginate: {
- next: '<i class="icon-base bx bx-chevron-right scaleX-n1-rtl icon-18px"></i>',
- previous: '<i class="icon-base bx bx-chevron-left scaleX-n1-rtl icon-18px"></i>',
- first: '<i class="icon-base bx bx-chevrons-left scaleX-n1-rtl icon-18px"></i>',
- last: '<i class="icon-base bx bx-chevrons-right scaleX-n1-rtl icon-18px"></i>'
- }
- },
- // For responsive popup
- responsive: {
- details: {
- display: DataTable.Responsive.display.modal({
- header: function (row) {
- const data = row.data();
- return 'Details of ' + data['customer'];
- }
- }),
- type: 'column',
- renderer: function (api, rowIdx, columns) {
- const data = columns
- .map(function (col) {
- return col.title !== '' // Do not show row in modal popup if title is blank (for check box)
- ? `<tr data-dt-row="${col.rowIndex}" data-dt-column="${col.columnIndex}">
- <td>${col.title}:</td>
- <td>${col.data}</td>
- </tr>`
- : '';
- })
- .join('');
-
- if (data) {
- const div = document.createElement('div');
- div.classList.add('table-responsive');
- const table = document.createElement('table');
- div.appendChild(table);
- table.classList.add('table');
- const tbody = document.createElement('tbody');
- tbody.innerHTML = data;
- table.appendChild(tbody);
- return div;
- }
- return false;
- }
- }
- }
- });
-
- //? The 'delete-record' class is necessary for the functionality of the following code.
- document.addEventListener('click', function (e) {
- if (e.target.classList.contains('delete-record')) {
- dt_products.row(e.target.closest('tr')).remove().draw();
- const modalEl = document.querySelector('.dtr-bs-modal');
- if (modalEl && modalEl.classList.contains('show')) {
- const modal = bootstrap.Modal.getInstance(modalEl);
- modal?.hide();
- }
- }
- });
- }
-
- // Filter form control to default size
- // ? setTimeout used for order-list table initialization
- setTimeout(() => {
- const elementsToModify = [
- { selector: '.dt-buttons .btn', classToRemove: 'btn-secondary', classToAdd: 'btn-label-secondary' },
- { selector: '.dt-search .form-control', classToRemove: 'form-control-sm', classToAdd: 'ms-0' },
- { selector: '.dt-length .form-select', classToRemove: 'form-select-sm' },
- { selector: '.dt-length', classToAdd: 'mt-md-6 mt-0' },
- { selector: '.dt-layout-table', classToRemove: 'row mt-2' },
- { selector: '.dt-layout-end', classToAdd: 'px-3 mt-0' },
- {
- selector: '.dt-layout-end .dt-buttons',
- classToAdd: 'gap-2 px-3 mt-0 mb-md-0 mb-6'
- },
- {
- selector: '.dt-layout-end .dt-buttons .btn-group',
- classToAdd: 'mx-auto'
- },
- { selector: '.dt-layout-start', classToAdd: 'px-3 mt-0' },
- { selector: '.dt-layout-full', classToRemove: 'col-md col-12', classToAdd: 'table-responsive' }
- ];
-
- // Delete record
- elementsToModify.forEach(({ selector, classToRemove, classToAdd }) => {
- document.querySelectorAll(selector).forEach(element => {
- if (classToRemove) {
- classToRemove.split(' ').forEach(className => element.classList.remove(className));
- }
- if (classToAdd) {
- classToAdd.split(' ').forEach(className => element.classList.add(className));
- }
- });
- });
- }, 100);
- });
|