421 lines
16 KiB
JavaScript
421 lines
16 KiB
JavaScript
/**
|
|
* App user list
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
// Datatable (jquery)
|
|
$(function () {
|
|
var dtUserTable = $('.datatables-users'),
|
|
dt_User,
|
|
statusObj = {
|
|
1: { title: 'Pending', class: 'bg-label-warning' },
|
|
2: { title: 'Active', class: 'bg-label-success' },
|
|
3: { title: 'Inactive', class: 'bg-label-secondary' }
|
|
};
|
|
|
|
var userView = 'app-user-view-account.html';
|
|
|
|
// Users List datatable
|
|
if (dtUserTable.length) {
|
|
dt_User = dtUserTable.DataTable({
|
|
ajax: assetsPath + 'json/user-list.json', // JSON file to add data
|
|
columns: [
|
|
// columns according to JSON
|
|
{ data: 'id' },
|
|
{ data: 'id' },
|
|
{ data: 'full_name' },
|
|
{ data: 'email' },
|
|
{ data: 'role' },
|
|
{ data: 'current_plan' },
|
|
{ data: 'status' },
|
|
{ data: '' }
|
|
],
|
|
columnDefs: [
|
|
{
|
|
// For Responsive
|
|
className: 'control',
|
|
orderable: false,
|
|
searchable: 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
|
|
},
|
|
{
|
|
// User full name and email
|
|
targets: 2,
|
|
responsivePriority: 4,
|
|
render: function (data, type, full, meta) {
|
|
var $name = full['full_name'],
|
|
$user = full['username'],
|
|
$image = full['avatar'];
|
|
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) + 1;
|
|
var states = ['success', 'danger', 'warning', 'info', 'dark', 'primary', 'secondary'];
|
|
var $state = states[stateNum],
|
|
$name = full['full_name'],
|
|
$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-left align-items-center">' +
|
|
'<div class="avatar-wrapper">' +
|
|
'<div class="avatar avatar-sm me-3">' +
|
|
$output +
|
|
'</div>' +
|
|
'</div>' +
|
|
'<div class="d-flex flex-column">' +
|
|
'<a href="' +
|
|
userView +
|
|
'" class="text-heading"><span class="fw-medium text-truncate">' +
|
|
$name +
|
|
'</span></a>' +
|
|
'<small>' +
|
|
$user +
|
|
'</small>' +
|
|
'</div>' +
|
|
'</div>';
|
|
return $row_output;
|
|
}
|
|
},
|
|
{
|
|
// User email
|
|
targets: 3,
|
|
render: function (data, type, full, meta) {
|
|
var $email = full['email'];
|
|
return '<span >' + $email + '</span>';
|
|
}
|
|
},
|
|
{
|
|
// User Role
|
|
targets: 4,
|
|
render: function (data, type, full, meta) {
|
|
var $role = full['role'];
|
|
var roleBadgeObj = {
|
|
Subscriber: '<i class="ri-user-line ri-22px text-primary me-2"></i>',
|
|
Author: '<i class="ri-vip-crown-line ri-22px text-warning me-2"></i>',
|
|
Maintainer: '<i class="ri-pie-chart-line ri-22px text-success me-2"></i>',
|
|
Editor: '<i class="ri-edit-box-line ri-22px text-info me-2"></i>',
|
|
Admin: '<i class="ri-computer-line ri-22px text-danger me-2"></i>'
|
|
};
|
|
return (
|
|
"<span class='text-truncate d-flex align-items-center text-heading'>" +
|
|
roleBadgeObj[$role] +
|
|
$role +
|
|
'</span>'
|
|
);
|
|
}
|
|
},
|
|
{
|
|
// Plans
|
|
targets: 5,
|
|
render: function (data, type, full, meta) {
|
|
var $plan = full['current_plan'];
|
|
|
|
return '<span class="text-heading">' + $plan + '</span>';
|
|
}
|
|
},
|
|
{
|
|
// User Status
|
|
targets: 6,
|
|
render: function (data, type, full, meta) {
|
|
var $status = full['status'];
|
|
|
|
return (
|
|
'<span class="badge rounded-pill ' +
|
|
statusObj[$status].class +
|
|
'" text-capitalized>' +
|
|
statusObj[$status].title +
|
|
'</span>'
|
|
);
|
|
}
|
|
},
|
|
{
|
|
// Actions
|
|
targets: -1,
|
|
title: 'Actions',
|
|
searchable: false,
|
|
orderable: false,
|
|
render: function (data, type, full, meta) {
|
|
return (
|
|
'<div class="d-flex align-items-center gap-50">' +
|
|
'<button class="btn btn-sm btn-icon btn-text-secondary rounded-pill delete-record waves-effect waves-light"><i class="ri-delete-bin-7-line ri-20px"></i></button>' +
|
|
'<a href="' +
|
|
userView +
|
|
'" class="btn btn-sm btn-icon btn-text-secondary rounded-pill waves-effect waves-light"><i class="ri-eye-line ri-20px"></i></a>' +
|
|
'<button class="btn btn-sm btn-icon btn-text-secondary rounded-pill dropdown-toggle hide-arrow waves-effect waves-light" data-bs-toggle="dropdown"><i class="ri-more-2-fill ri-20px"></i></button>' +
|
|
'<div class="dropdown-menu dropdown-menu-end m-0">' +
|
|
'<a href="javascript:0;" class="dropdown-item">View</a>' +
|
|
'<a href="javascript:0;" class="dropdown-item">Suspend</a>' +
|
|
'</div>' +
|
|
'</div>'
|
|
);
|
|
}
|
|
}
|
|
],
|
|
order: [[2, 'desc']],
|
|
dom:
|
|
'<"row mx-1"' +
|
|
'<"col-sm-12 col-md-5 d-flex align-items-center justify-content-center justify-content-md-start gap-4 mt-5 mt-md-0"l<"dt-action-buttons text-xl-end text-lg-start text-md-end text-start"B>>' +
|
|
'<"col-sm-12 col-md-7"<"dt-action-buttons d-flex align-items-center justify-content-md-end justify-content-center flex-column flex-sm-row flex-nowrap"<"me-sm-4"f><"user_role w-px-200 mb-5 mb-sm-0">>>' +
|
|
'>t' +
|
|
'<"row mx-1"' +
|
|
'<"col-sm-12 col-md-6"i>' +
|
|
'<"col-sm-12 col-md-6"p>' +
|
|
'>',
|
|
language: {
|
|
sLengthMenu: 'Show _MENU_',
|
|
search: '',
|
|
searchPlaceholder: 'Search User'
|
|
},
|
|
// for buttons
|
|
buttons: [
|
|
{
|
|
extend: 'collection',
|
|
className: 'btn btn-outline-secondary dropdown-toggle me-4 waves-effect waves-light',
|
|
text: '<i class="ri-download-line ri-16px me-1"></i> <span class="d-none d-sm-inline-block">Export</span>',
|
|
buttons: [
|
|
{
|
|
extend: 'print',
|
|
text: '<i class="ri-printer-line me-1" ></i>Print',
|
|
className: 'dropdown-item',
|
|
exportOptions: {
|
|
columns: [1, 2, 3, 4, 5],
|
|
// 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('user-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="ri-file-text-line me-1" ></i>Csv',
|
|
className: 'dropdown-item',
|
|
exportOptions: {
|
|
columns: [1, 2, 3, 4, 5],
|
|
// 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('user-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="ri-file-excel-line me-1"></i>Excel',
|
|
className: 'dropdown-item',
|
|
exportOptions: {
|
|
columns: [1, 2, 3, 4, 5],
|
|
// 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('user-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="ri-file-pdf-line me-1"></i>Pdf',
|
|
className: 'dropdown-item',
|
|
exportOptions: {
|
|
columns: [1, 2, 3, 4, 5],
|
|
// 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('user-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="ri-file-copy-line me-1"></i>Copy',
|
|
className: 'dropdown-item',
|
|
exportOptions: {
|
|
columns: [1, 2, 3, 4, 5],
|
|
// 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('user-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['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)
|
|
? '<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;
|
|
}
|
|
}
|
|
},
|
|
initComplete: function () {
|
|
// Adding role filter once table initialized
|
|
this.api()
|
|
.columns(4)
|
|
.every(function () {
|
|
var column = this;
|
|
var select = $(
|
|
'<select id="UserRole" class="form-select text-capitalize form-select-sm"><option value=""> Select Role </option></select>'
|
|
)
|
|
.appendTo('.user_role')
|
|
.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('<option value="' + d + '" class="text-capitalize">' + d + '</option>');
|
|
});
|
|
});
|
|
}
|
|
});
|
|
$('.add-new').html(
|
|
"<button class='btn btn-primary' data-bs-toggle='modal' data-bs-target='#editUser'><i class='ri-add-line me-0 me-sm-1'></i><span class= 'd-none d-sm-inline-block'> Add User </span ></button>"
|
|
);
|
|
}
|
|
|
|
// Delete Record
|
|
$('.datatables-users tbody').on('click', '.delete-record', function () {
|
|
dt_User.row($(this).parents('tr')).remove().draw();
|
|
});
|
|
});
|
|
|
|
(function () {
|
|
// On edit role click, update text
|
|
var roleEditList = document.querySelectorAll('.role-edit-modal'),
|
|
roleAdd = document.querySelector('.add-new-role'),
|
|
roleTitle = document.querySelector('.role-title');
|
|
|
|
roleAdd.onclick = function () {
|
|
roleTitle.innerHTML = 'Add New Role'; // reset text
|
|
};
|
|
if (roleEditList) {
|
|
roleEditList.forEach(function (roleEditEl) {
|
|
roleEditEl.onclick = function () {
|
|
roleTitle.innerHTML = 'Edit Role'; // reset text
|
|
};
|
|
});
|
|
}
|
|
})();
|