Files
magico.prototype/assets/js/app-ecommerce-customer-detail-overview.js
2026-02-13 14:19:15 +01:00

188 lines
5.9 KiB
JavaScript

/**
* Page Detail overview
*/
'use strict';
// Datatable (jquery)
$(function () {
// Variable declaration for table
var dt_customer_order = $('.datatables-customer-order'),
order_details = 'app-ecommerce-order-details.html',
statusObj = {
1: { title: 'Ready to Pickup', class: 'bg-label-info' },
2: { title: 'Dispatched', class: 'bg-label-warning' },
3: { title: 'Delivered', class: 'bg-label-success' },
4: { title: 'Out for delivery', class: 'bg-label-primary' }
};
// orders datatable
if (dt_customer_order.length) {
var dt_order = dt_customer_order.DataTable({
ajax: assetsPath + 'json/ecommerce-customer-order.json', // JSON file to add data
columns: [
// columns according to JSON
{ data: '' },
{ data: 'id' },
{ data: 'order' },
{ data: 'date' },
{ data: 'status' },
{ data: 'spent' },
{ data: ' ' }
],
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 order number
targets: 2,
responsivePriority: 4,
render: function (data, type, full, meta) {
var $id = full['order'];
return "<a href='" + order_details + "' class='fw-medium'><span>#" + $id + '</span></a>';
}
},
{
// date
targets: 3,
render: function (data, type, full, meta) {
var date = new Date(full.date); // convert the date string to a Date object
var formattedDate = date.toLocaleDateString('en-US', { month: 'short', day: 'numeric', year: 'numeric' });
return '<span class="text-nowrap">' + formattedDate + '</span > ';
}
},
{
// status
targets: 4,
render: function (data, type, full, meta) {
var $status = full['status'];
return (
'<span class="badge ' +
statusObj[$status].class +
'" text-capitalized>' +
statusObj[$status].title +
'</span>'
);
}
},
{
// spent
targets: 5,
render: function (data, type, full, meta) {
var $spent = full['spent'];
return '<span >' + $spent + '</span>';
}
},
{
// Actions
targets: -1,
title: 'Actions',
searchable: false,
orderable: false,
render: function (data, type, full, meta) {
return (
'<div class="text-xxl-center">' +
'<button class="btn btn-sm btn-icon dropdown-toggle hide-arrow" data-bs-toggle="dropdown"><i class="bx bx-dots-vertical-rounded"></i></button>' +
'<div class="dropdown-menu dropdown-menu-end m-0">' +
'<a href="javascript:;" class="dropdown-item">View</a>' +
'<a href="javascript:;" class="dropdown-item delete-record">Delete</a>' +
'</div>' +
'</div>'
);
}
}
],
order: [[2, 'desc']],
dom:
'<"card-header d-flex flex-wrap py-3 py-sm-2"<"head-label text-center me-4 ms-1">f' +
'>t' +
'<"row mx-4"' +
'<"col-md-12 col-xl-6 text-center text-xl-start pb-2 pb-lg-0 pe-0"i>' +
'<"col-md-12 col-xl-6 d-flex justify-content-center justify-content-xl-end"p>' +
'>',
lengthMenu: [6, 30, 50, 70, 100],
language: {
sLengthMenu: '_MENU_',
search: '',
searchPlaceholder: 'Search order'
},
// Buttons with Dropdown
// For responsive popup
responsive: {
details: {
display: $.fn.dataTable.Responsive.display.modal({
header: function (row) {
var data = row.data();
return 'Details of ' + data['order'];
}
}),
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)
? '<tr data-dt-row="' +
col.rowIndex +
'" data-dt-column="' +
col.columnIndex +
'">' +
'<td>' +
col.title +
':' +
'</td> ' +
'<td>' +
col.data +
'</td>' +
'</tr>'
: '';
}).join('');
return data ? $('<table class="table"/><tbody />').append(data) : false;
}
}
}
});
$('div.head-label').html('<h5 class="card-title mb-0 text-nowrap">Orders placed</h5>');
}
// Delete Record
$('.datatables-orders tbody').on('click', '.delete-record', function () {
dt_order.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);
});
// Validation & Phone mask