450 lines
16 KiB
JavaScript
450 lines
16 KiB
JavaScript
/**
|
|
* App eCommerce customer all
|
|
*/
|
|
|
|
'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_customer_table = $('.datatables-customers'),
|
|
select2 = $('.select2'),
|
|
customerView = 'app-ecommerce-customer-details-overview.html';
|
|
if (select2.length) {
|
|
var $this = select2;
|
|
$this.wrap('<div class="position-relative"></div>').select2({
|
|
placeholder: 'United States ',
|
|
dropdownParent: $this.parent()
|
|
});
|
|
}
|
|
|
|
// customers datatable
|
|
if (dt_customer_table.length) {
|
|
var dt_customer = dt_customer_table.DataTable({
|
|
ajax: assetsPath + 'json/ecommerce-customer-all.json', // JSON file to add data
|
|
columns: [
|
|
// columns according to JSON
|
|
{ data: '' },
|
|
{ data: 'id' },
|
|
{ data: 'customer' },
|
|
{ data: 'customer_id' },
|
|
{ data: 'country' },
|
|
{ data: 'order' },
|
|
{ data: 'total_spent' }
|
|
],
|
|
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">'
|
|
}
|
|
},
|
|
{
|
|
// customer full name and email
|
|
targets: 2,
|
|
responsivePriority: 1,
|
|
render: function (data, type, full, meta) {
|
|
var $name = full['customer'],
|
|
$email = full['email'],
|
|
$image = full['image'];
|
|
|
|
if ($image) {
|
|
// For Avatar image
|
|
var $output =
|
|
'<img src="' + assetsPath + 'img/avatars/' + $image + '" 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 customer-name">' +
|
|
'<div class="avatar-wrapper">' +
|
|
'<div class="avatar avatar-sm me-3">' +
|
|
$output +
|
|
'</div>' +
|
|
'</div>' +
|
|
'<div class="d-flex flex-column">' +
|
|
'<a href="' +
|
|
customerView +
|
|
'" class="text-heading" ><span class="fw-medium">' +
|
|
$name +
|
|
'</span></a>' +
|
|
'<small>' +
|
|
$email +
|
|
'</small>' +
|
|
'</div>' +
|
|
'</div>';
|
|
return $row_output;
|
|
}
|
|
},
|
|
{
|
|
// customer Role
|
|
targets: 3,
|
|
render: function (data, type, full, meta) {
|
|
var $id = full['customer_id'];
|
|
|
|
return "<span class='text-heading'>#" + $id + '</span>';
|
|
}
|
|
},
|
|
{
|
|
// Plans
|
|
targets: 4,
|
|
render: function (data, type, full, meta) {
|
|
var $plan = full['country'];
|
|
var $code = full['country_code'];
|
|
|
|
if ($code) {
|
|
var $output_code = `<i class ="fis fi fi-${$code} rounded-circle me-2 fs-4"></i>`;
|
|
} else {
|
|
// For Avatar badge
|
|
var $output_code = `<i class ="fis fi fi-xx rounded-circle me-2 fs-4"></i>`;
|
|
}
|
|
|
|
var $row_output =
|
|
'<div class="d-flex justify-content-start align-items-center customer-country">' +
|
|
'<div>' +
|
|
$output_code +
|
|
'</div>' +
|
|
'<div>' +
|
|
'<span>' +
|
|
$plan +
|
|
'</span>' +
|
|
'</div>' +
|
|
'</div>';
|
|
return $row_output;
|
|
}
|
|
},
|
|
{
|
|
// customer Status
|
|
targets: 5,
|
|
render: function (data, type, full, meta) {
|
|
var $status = full['order'];
|
|
|
|
return '<span>' + $status + '</span>';
|
|
}
|
|
},
|
|
{
|
|
// customer Spent
|
|
targets: 6,
|
|
render: function (data, type, full, meta) {
|
|
var $spent = full['total_spent'];
|
|
|
|
return '<span class="fw-medium text-heading">' + $spent + '</span>';
|
|
}
|
|
}
|
|
],
|
|
order: [[2, 'desc']],
|
|
dom:
|
|
'<"card-header d-flex flex-wrap flex-md-row flex-column align-items-start align-items-sm-center py-0"' +
|
|
'<"d-flex align-items-center me-5"f>' +
|
|
'<"dt-action-buttons text-xl-end text-lg-start text-md-end text-start d-flex align-items-center justify-content-md-end flex-wrap flex-sm-nowrap mb-6 mb-sm-0"lB>' +
|
|
'>t' +
|
|
'<"row"' +
|
|
'<"col-sm-12 col-md-6"i>' +
|
|
'<"col-sm-12 col-md-6"p>' +
|
|
'>',
|
|
|
|
language: {
|
|
sLengthMenu: '_MENU_',
|
|
search: '',
|
|
searchPlaceholder: 'Search Order',
|
|
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 me-4',
|
|
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: [1, 2, 3, 4, 5, 6],
|
|
// prevent avatar to be print
|
|
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('customer-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: [1, 2, 3, 4, 5, 6],
|
|
// prevent avatar to be display
|
|
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('customer-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: [1, 2, 3, 4, 5, 6],
|
|
// prevent avatar to be display
|
|
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('customer-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: [1, 2, 3, 4, 5, 6],
|
|
// prevent avatar to be display
|
|
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('customer-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: [1, 2, 3, 4, 5, 6],
|
|
// prevent avatar to be display
|
|
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('customer-name')) {
|
|
result = result + item.lastChild.firstChild.textContent;
|
|
} else if (item.innerText === undefined) {
|
|
result = result + item.textContent;
|
|
} else result = result + item.innerText;
|
|
});
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
text: '<i class="bx bx-plus bx-sm me-0 me-sm-2 mb-1"></i><span class="d-none d-sm-inline-block">Add Customer</span>',
|
|
className: 'add-new btn btn-primary',
|
|
attr: {
|
|
'data-bs-toggle': 'offcanvas',
|
|
'data-bs-target': '#offcanvasEcommerceCustomerAdd'
|
|
}
|
|
}
|
|
],
|
|
// 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 me-2');
|
|
$('.dt-action-buttons').addClass('pt-0');
|
|
$('.dataTables_filter').addClass('ms-n3 mb-0 mb-md-6');
|
|
$('.dt-buttons').addClass('d-flex flex-wrap');
|
|
}
|
|
|
|
// Delete Record
|
|
$('.datatables-customers tbody').on('click', '.delete-record', function () {
|
|
dt_customer.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
|
|
(function () {
|
|
const phoneMaskList = document.querySelectorAll('.phone-mask'),
|
|
eCommerceCustomerAddForm = document.getElementById('eCommerceCustomerAddForm');
|
|
|
|
// Phone Number
|
|
if (phoneMaskList) {
|
|
phoneMaskList.forEach(function (phoneMask) {
|
|
new Cleave(phoneMask, {
|
|
phone: true,
|
|
phoneRegionCode: 'US'
|
|
});
|
|
});
|
|
}
|
|
// Add New customer Form Validation
|
|
const fv = FormValidation.formValidation(eCommerceCustomerAddForm, {
|
|
fields: {
|
|
customerName: {
|
|
validators: {
|
|
notEmpty: {
|
|
message: 'Please enter fullname '
|
|
}
|
|
}
|
|
},
|
|
customerEmail: {
|
|
validators: {
|
|
notEmpty: {
|
|
message: 'Please enter your email'
|
|
},
|
|
emailAddress: {
|
|
message: 'The value is not a valid email address'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: {
|
|
trigger: new FormValidation.plugins.Trigger(),
|
|
bootstrap5: new FormValidation.plugins.Bootstrap5({
|
|
// Use this for enabling/changing valid/invalid class
|
|
eleValidClass: '',
|
|
rowSelector: function (field, ele) {
|
|
// field is the field name & ele is the field element
|
|
return '.mb-6';
|
|
}
|
|
}),
|
|
submitButton: new FormValidation.plugins.SubmitButton(),
|
|
// Submit the form when all fields are valid
|
|
// defaultSubmit: new FormValidation.plugins.DefaultSubmit(),
|
|
autoFocus: new FormValidation.plugins.AutoFocus()
|
|
}
|
|
});
|
|
})();
|