434 lines
16 KiB
JavaScript
434 lines
16 KiB
JavaScript
/**
|
|
* app-ecommerce-order-list Script
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
// Datatable (jquery)
|
|
|
|
$(function () {
|
|
let borderColor, bodyBg, headingColor;
|
|
|
|
if (isDarkStyle) {
|
|
borderColor = config.colors_dark.borderColor;
|
|
bodyBg = config.colors_dark.bodyBg;
|
|
headingColor = config.colors_dark.headingColor;
|
|
} else {
|
|
borderColor = config.colors.borderColor;
|
|
bodyBg = config.colors.bodyBg;
|
|
headingColor = config.colors.headingColor;
|
|
}
|
|
|
|
// Variable declaration for table
|
|
|
|
var dt_order_table = $('.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.length) {
|
|
var dt_products = dt_order_table.DataTable({
|
|
ajax: assetsPath + 'json/ecommerce-customer-order.json', // JSON file to add data
|
|
columns: [
|
|
// columns according to JSON
|
|
{ data: 'id' },
|
|
{ data: 'id' },
|
|
{ data: 'order' },
|
|
{ data: 'date' },
|
|
{ data: 'customer' }, //email //avatar
|
|
{ data: 'payment' },
|
|
{ data: 'status' },
|
|
{ data: 'method' }, //method_number
|
|
{ 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,
|
|
checkboxes: {
|
|
selectAllRender: '<input type="checkbox" class="form-check-input">'
|
|
},
|
|
render: function () {
|
|
return '<input type="checkbox" class="dt-checkboxes form-check-input" >';
|
|
},
|
|
searchable: false
|
|
},
|
|
{
|
|
// Order ID
|
|
targets: 2,
|
|
render: function (data, type, full, meta) {
|
|
var $order_id = full['order'];
|
|
// Creates full output for row
|
|
var $row_output = '<a href="app-ecommerce-order-details.html"><span>#' + $order_id + '</span></a>';
|
|
return $row_output;
|
|
}
|
|
},
|
|
{
|
|
// Date and Time
|
|
targets: 3,
|
|
render: function (data, type, full, meta) {
|
|
var date = new Date(full.date); // convert the date string to a Date object
|
|
var timeX = full['time'].substring(0, 5);
|
|
var formattedDate = date.toLocaleDateString('en-US', {
|
|
month: 'short',
|
|
day: 'numeric',
|
|
year: 'numeric',
|
|
time: 'numeric'
|
|
});
|
|
return '<span class="text-nowrap">' + formattedDate + ', ' + timeX + '</span>';
|
|
}
|
|
},
|
|
{
|
|
// Customers
|
|
targets: 4,
|
|
responsivePriority: 1,
|
|
render: function (data, type, full, meta) {
|
|
var $name = full['customer'],
|
|
$email = full['email'],
|
|
$avatar = full['avatar'];
|
|
if ($avatar) {
|
|
// For Avatar image
|
|
var $output =
|
|
'<img src="' + assetsPath + 'img/avatars/' + $avatar + '" alt="Avatar" class="rounded-circle">';
|
|
} else {
|
|
// For Avatar badge
|
|
var stateNum = Math.floor(Math.random() * 6);
|
|
var states = ['success', 'danger', 'warning', 'info', 'dark', 'primary', 'secondary'];
|
|
var $state = states[stateNum],
|
|
$name = full['customer'],
|
|
$initials = $name.match(/\b\w/g) || [];
|
|
$initials = (($initials.shift() || '') + ($initials.pop() || '')).toUpperCase();
|
|
$output = '<span class="avatar-initial rounded-circle bg-label-' + $state + '">' + $initials + '</span>';
|
|
}
|
|
// Creates full output for row
|
|
var $row_output =
|
|
'<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="pages-profile-user.html" class="text-heading">' +
|
|
$name +
|
|
'</a></h6>' +
|
|
'<small>' +
|
|
$email +
|
|
'</small>' +
|
|
'</div>' +
|
|
'</div>';
|
|
return $row_output;
|
|
}
|
|
},
|
|
{
|
|
targets: 5,
|
|
render: function (data, type, full, meta) {
|
|
var $payment = full['payment'],
|
|
$paymentObj = paymentObj[$payment];
|
|
if ($paymentObj) {
|
|
return (
|
|
'<h6 class="mb-0 align-items-center d-flex w-px-100 ' +
|
|
$paymentObj.class +
|
|
'">' +
|
|
'<i class="bx bxs-circle bx-8px me-1"></i>' +
|
|
$paymentObj.title +
|
|
'</h6>'
|
|
);
|
|
}
|
|
return data;
|
|
}
|
|
},
|
|
{
|
|
// Status
|
|
targets: -3,
|
|
render: function (data, type, full, meta) {
|
|
var $status = full['status'];
|
|
|
|
return (
|
|
'<span class="badge px-2 ' +
|
|
statusObj[$status].class +
|
|
'" text-capitalized>' +
|
|
statusObj[$status].title +
|
|
'</span>'
|
|
);
|
|
}
|
|
},
|
|
{
|
|
// Payment Method
|
|
targets: -2,
|
|
render: function (data, type, full, meta) {
|
|
var $method = full['method'];
|
|
var $method_number = full['method_number'];
|
|
|
|
if ($method == 'paypal') {
|
|
$method_number = '@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="bx bx-dots-horizontal-rounded mt-1"></i>' +
|
|
$method_number +
|
|
'</span>' +
|
|
'</div>'
|
|
);
|
|
}
|
|
},
|
|
{
|
|
// Actions
|
|
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="bx bx-dots-vertical-rounded bx-md"></i></button>' +
|
|
'<div class="dropdown-menu dropdown-menu-end m-0">' +
|
|
'<a href="app-ecommerce-order-details.html" class="dropdown-item">View</a>' +
|
|
'<a href="javascript:0;" class="dropdown-item delete-record">' +
|
|
'Delete' +
|
|
'</a>' +
|
|
'</div>' +
|
|
'</div>'
|
|
);
|
|
}
|
|
}
|
|
],
|
|
order: [3, 'asc'], //set any columns order asc/desc
|
|
dom:
|
|
'<"card-header py-0 d-flex flex-column flex-md-row align-items-center"<f><"d-flex align-items-center justify-content-md-end gap-2 justify-content-center"l<"dt-action-buttons"B>>' +
|
|
'>t' +
|
|
'<"row"' +
|
|
'<"col-sm-12 col-md-6"i>' +
|
|
'<"col-sm-12 col-md-6"p>' +
|
|
'>',
|
|
lengthMenu: [10, 40, 60, 80, 100], //for length of menu
|
|
language: {
|
|
sLengthMenu: '_MENU_',
|
|
search: '',
|
|
searchPlaceholder: 'Search Order',
|
|
info: 'Displaying _START_ to _END_ of _TOTAL_ entries',
|
|
paginate: {
|
|
next: '<i class="bx bx-chevron-right bx-18px"></i>',
|
|
previous: '<i class="bx bx-chevron-left bx-18px"></i>'
|
|
}
|
|
},
|
|
// Buttons with Dropdown
|
|
buttons: [
|
|
{
|
|
extend: 'collection',
|
|
className: 'btn btn-label-secondary dropdown-toggle',
|
|
text: '<i class="bx bx-export bx-sm me-2"></i>Export',
|
|
buttons: [
|
|
{
|
|
extend: 'print',
|
|
text: '<i class="bx bx-printer me-2" ></i>Print',
|
|
className: 'dropdown-item',
|
|
exportOptions: {
|
|
columns: [2, 3, 4, 5, 6, 7],
|
|
format: {
|
|
body: function (inner, coldex, rowdex) {
|
|
if (inner.length <= 0) return inner;
|
|
var el = $.parseHTML(inner);
|
|
var result = '';
|
|
$.each(el, function (index, item) {
|
|
if (item.classList !== undefined && item.classList.contains('order-name')) {
|
|
result = result + item.lastChild.firstChild.textContent;
|
|
} else if (item.innerText === undefined) {
|
|
result = result + item.textContent;
|
|
} else result = result + item.innerText;
|
|
});
|
|
return result;
|
|
}
|
|
}
|
|
},
|
|
customize: function (win) {
|
|
// Customize print view for dark
|
|
$(win.document.body)
|
|
.css('color', headingColor)
|
|
.css('border-color', borderColor)
|
|
.css('background-color', bodyBg);
|
|
$(win.document.body)
|
|
.find('table')
|
|
.addClass('compact')
|
|
.css('color', 'inherit')
|
|
.css('border-color', 'inherit')
|
|
.css('background-color', 'inherit');
|
|
}
|
|
},
|
|
{
|
|
extend: 'csv',
|
|
text: '<i class="bx bx-file me-2" ></i>Csv',
|
|
className: 'dropdown-item',
|
|
exportOptions: {
|
|
columns: [2, 3, 4, 5, 6, 7],
|
|
format: {
|
|
body: function (inner, coldex, rowdex) {
|
|
if (inner.length <= 0) return inner;
|
|
var el = $.parseHTML(inner);
|
|
var result = '';
|
|
$.each(el, function (index, item) {
|
|
if (item.classList !== undefined && item.classList.contains('order-name')) {
|
|
result = result + item.lastChild.firstChild.textContent;
|
|
} else if (item.innerText === undefined) {
|
|
result = result + item.textContent;
|
|
} else result = result + item.innerText;
|
|
});
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
extend: 'excel',
|
|
text: '<i class="bx bxs-file-export me-2"></i>Excel',
|
|
className: 'dropdown-item',
|
|
exportOptions: {
|
|
columns: [2, 3, 4, 5, 6, 7],
|
|
format: {
|
|
body: function (inner, coldex, rowdex) {
|
|
if (inner.length <= 0) return inner;
|
|
var el = $.parseHTML(inner);
|
|
var result = '';
|
|
$.each(el, function (index, item) {
|
|
if (item.classList !== undefined && item.classList.contains('order-name')) {
|
|
result = result + item.lastChild.firstChild.textContent;
|
|
} else if (item.innerText === undefined) {
|
|
result = result + item.textContent;
|
|
} else result = result + item.innerText;
|
|
});
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
extend: 'pdf',
|
|
text: '<i class="bx bxs-file-pdf me-2"></i>Pdf',
|
|
className: 'dropdown-item',
|
|
exportOptions: {
|
|
columns: [2, 3, 4, 5, 6, 7],
|
|
format: {
|
|
body: function (inner, coldex, rowdex) {
|
|
if (inner.length <= 0) return inner;
|
|
var el = $.parseHTML(inner);
|
|
var result = '';
|
|
$.each(el, function (index, item) {
|
|
if (item.classList !== undefined && item.classList.contains('order-name')) {
|
|
result = result + item.lastChild.firstChild.textContent;
|
|
} else if (item.innerText === undefined) {
|
|
result = result + item.textContent;
|
|
} else result = result + item.innerText;
|
|
});
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
extend: 'copy',
|
|
text: '<i class="bx bx-copy me-2" ></i>Copy',
|
|
className: 'dropdown-item',
|
|
exportOptions: {
|
|
columns: [2, 3, 4, 5, 6, 7],
|
|
format: {
|
|
body: function (inner, coldex, rowdex) {
|
|
if (inner.length <= 0) return inner;
|
|
var el = $.parseHTML(inner);
|
|
var result = '';
|
|
$.each(el, function (index, item) {
|
|
if (item.classList !== undefined && item.classList.contains('order-name')) {
|
|
result = result + item.lastChild.firstChild.textContent;
|
|
} else if (item.innerText === undefined) {
|
|
result = result + item.textContent;
|
|
} else result = result + item.innerText;
|
|
});
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
],
|
|
// For responsive popup
|
|
responsive: {
|
|
details: {
|
|
display: $.fn.dataTable.Responsive.display.modal({
|
|
header: function (row) {
|
|
var data = row.data();
|
|
return 'Details of ' + data['customer'];
|
|
}
|
|
}),
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
$('.dataTables_length').addClass('ms-n2');
|
|
$('.dt-action-buttons').addClass('pt-0');
|
|
$('.dataTables_filter').addClass('ms-n3 mb-0 mb-md-6');
|
|
}
|
|
|
|
// Delete Record
|
|
$('.datatables-order tbody').on('click', '.delete-record', function () {
|
|
dt_products.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);
|
|
});
|