| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615 |
- /**
- * Page User List
- */
-
- '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_user_table = document.querySelector('.datatables-users'),
- userView = baseUrl + 'app/user/view/account',
- statusObj = {
- 1: { title: 'Pending', class: 'bg-label-warning' },
- 2: { title: 'Active', class: 'bg-label-success' },
- 3: { title: 'Inactive', class: 'bg-label-secondary' }
- };
- var select2 = $('.select2');
-
- if (select2.length) {
- var $this = select2;
- $this.wrap('<div class="position-relative"></div>').select2({
- placeholder: 'Select Country',
- dropdownParent: $this.parent()
- });
- }
-
- // Users datatable
- if (dt_user_table) {
- const dt_user = new DataTable(dt_user_table, {
- ajax: assetsPath + 'json/user-list.json', // JSON file to add data
- columns: [
- // columns according to JSON
- { data: 'id' },
- { data: 'id', orderable: false, render: DataTable.render.select() },
- { data: 'full_name' },
- { data: 'role' },
- { data: 'current_plan' },
- { data: 'billing' },
- { data: 'status' },
- { data: 'action' }
- ],
- 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: 4,
- checkboxes: true,
- render: function () {
- return '<input type="checkbox" class="dt-checkboxes form-check-input">';
- },
- checkboxes: {
- selectAllRender: '<input type="checkbox" class="form-check-input">'
- }
- },
- {
- targets: 2,
- responsivePriority: 3,
- render: function (data, type, full, meta) {
- var name = full['full_name'];
- var email = full['email'];
- var image = full['avatar'];
- var output;
-
- if (image) {
- // For Avatar image
- 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];
- var initials = (name.match(/\b\w/g) || []).map(char => char.toUpperCase());
- 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 user-name">' +
- '<div class="avatar-wrapper">' +
- '<div class="avatar avatar-sm me-4">' +
- output +
- '</div>' +
- '</div>' +
- '<div class="d-flex flex-column">' +
- '<a href="' +
- userView +
- '" class="text-heading text-truncate"><span class="fw-medium">' +
- name +
- '</span></a>' +
- '<small>' +
- email +
- '</small>' +
- '</div>' +
- '</div>';
- return row_output;
- }
- },
- {
- targets: 3,
- render: function (data, type, full, meta) {
- var role = full['role'];
- var roleBadgeObj = {
- Subscriber: '<i class="icon-base bx bx-crown text-primary me-2"></i>',
- Author: '<i class="icon-base bx bx-edit text-warning me-2"></i>',
- Maintainer: '<i class="icon-base bx bx-user text-success me-2"></i>',
- Editor: '<i class="icon-base bx bx-pie-chart-alt text-info me-2"></i>',
- Admin: '<i class="icon-base bx bx-desktop text-danger me-2"></i>'
- };
- return (
- "<span class='text-truncate d-flex align-items-center text-heading'>" +
- (roleBadgeObj[role] || '') + // Ensures badge exists for the role
- role +
- '</span>'
- );
- }
- },
- {
- // Plans
- targets: 4,
- render: function (data, type, full, meta) {
- const plan = full['current_plan'];
-
- return '<span class="text-heading">' + plan + '</span>';
- }
- },
- {
- // User Status
- targets: 6,
- render: function (data, type, full, meta) {
- const status = full['status'];
-
- return (
- '<span class="badge ' +
- statusObj[status].class +
- '" text-capitalized>' +
- statusObj[status].title +
- '</span>'
- );
- }
- },
- {
- targets: -1,
- title: 'Actions',
- searchable: false,
- orderable: false,
- render: (data, type, full, meta) => {
- return `
- <div class="d-flex align-items-center">
- <a href="javascript:;" class="btn btn-icon delete-record">
- <i class="icon-base bx bx-trash icon-md"></i>
- </a>
- <a href="${userView}" class="btn btn-icon">
- <i class="icon-base bx bx-show icon-md"></i>
- </a>
- <a href="javascript:;" class="btn btn-icon dropdown-toggle hide-arrow" data-bs-toggle="dropdown">
- <i class="icon-base bx bx-dots-vertical-rounded icon-md"></i>
- </a>
- <div class="dropdown-menu dropdown-menu-end m-0">
- <a href="javascript:;" class="dropdown-item">Edit</a>
- <a href="javascript:;" class="dropdown-item">Suspend</a>
- </div>
- </div>
- `;
- }
- }
- ],
- select: {
- style: 'multi',
- selector: 'td:nth-child(2)'
- },
- order: [[2, 'desc']],
- layout: {
- topStart: {
- rowClass: 'row mx-3 my-0 justify-content-between',
- features: [
- {
- pageLength: {
- menu: [10, 25, 50, 100],
- text: '_MENU_'
- }
- }
- ]
- },
- topEnd: {
- features: [
- {
- search: {
- placeholder: 'Search User',
- text: '_INPUT_'
- }
- },
- {
- buttons: [
- {
- extend: 'collection',
- className: 'btn btn-label-secondary 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-2"></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 = config.colors.headingColor;
- win.document.body.style.borderColor = config.colors.borderColor;
- win.document.body.style.backgroundColor = config.colors.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-2"></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-2"></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-2"></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;
- }
- }
- }
- }
- ]
- },
- {
- text: '<i class="icon-base bx bx-plus icon-sm me-0 me-sm-2"></i><span class="d-none d-sm-inline-block">Add New User</span>',
- className: 'add-new btn btn-primary',
- attr: {
- 'data-bs-toggle': 'offcanvas',
- 'data-bs-target': '#offcanvasAddUser'
- }
- }
- ]
- }
- ]
- },
- bottomStart: {
- rowClass: 'row mx-3 justify-content-between',
- features: ['info']
- },
- bottomEnd: 'paging'
- },
- language: {
- sLengthMenu: '_MENU_',
- search: '',
- searchPlaceholder: 'Search User',
- 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['full_name'];
- }
- }),
- 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;
- }
- }
- },
- initComplete: function () {
- const api = this.api();
-
- // Helper function to create a select dropdown and append options
- const createFilter = (columnIndex, containerClass, selectId, defaultOptionText) => {
- const column = api.column(columnIndex);
- const select = document.createElement('select');
- select.id = selectId;
- select.className = 'form-select text-capitalize';
- select.innerHTML = `<option value="">${defaultOptionText}</option>`;
- document.querySelector(containerClass).appendChild(select);
-
- // Add event listener for filtering
- select.addEventListener('change', () => {
- const val = select.value ? `^${select.value}$` : '';
- column.search(val, true, false).draw();
- });
-
- // Populate options based on unique column data
- const uniqueData = Array.from(new Set(column.data().toArray())).sort();
- uniqueData.forEach(d => {
- const option = document.createElement('option');
- option.value = d;
- option.textContent = d;
- select.appendChild(option);
- });
- };
-
- // Role filter
- createFilter(3, '.user_role', 'UserRole', 'Select Role');
-
- // Plan filter
- createFilter(4, '.user_plan', 'UserPlan', 'Select Plan');
-
- // Status filter
- const statusFilter = document.createElement('select');
- statusFilter.id = 'FilterTransaction';
- statusFilter.className = 'form-select text-capitalize';
- statusFilter.innerHTML = '<option value="">Select Status</option>';
- document.querySelector('.user_status').appendChild(statusFilter);
- statusFilter.addEventListener('change', () => {
- const val = statusFilter.value ? `^${statusFilter.value}$` : '';
- api.column(6).search(val, true, false).draw();
- });
-
- const statusColumn = api.column(6);
- const uniqueStatusData = Array.from(new Set(statusColumn.data().toArray())).sort();
- uniqueStatusData.forEach(d => {
- const option = document.createElement('option');
- option.value = statusObj[d]?.title || d;
- option.textContent = statusObj[d]?.title || d;
- option.className = 'text-capitalize';
- statusFilter.appendChild(option);
- });
- }
- });
-
- //? The 'delete-record' class is necessary for the functionality of the following code.
- function deleteRecord(event) {
- let row = document.querySelector('.dtr-expanded');
- if (event) {
- row = event.target.parentElement.closest('tr');
- }
- if (row) {
- dt_user.row(row).remove().draw();
- }
- }
-
- function bindDeleteEvent() {
- const userListTable = document.querySelector('.datatables-users');
- const modal = document.querySelector('.dtr-bs-modal');
-
- if (userListTable && userListTable.classList.contains('collapsed')) {
- if (modal) {
- modal.addEventListener('click', function (event) {
- if (event.target.parentElement.classList.contains('delete-record')) {
- deleteRecord();
- const closeButton = modal.querySelector('.btn-close');
- if (closeButton) closeButton.click(); // Simulates a click on the close button
- }
- });
- }
- } else {
- const tableBody = userListTable?.querySelector('tbody');
- if (tableBody) {
- tableBody.addEventListener('click', function (event) {
- if (event.target.parentElement.classList.contains('delete-record')) {
- deleteRecord(event);
- }
- });
- }
- }
- }
-
- // Initial event binding
- bindDeleteEvent();
-
- // Re-bind events when modal is shown or hidden
- document.addEventListener('show.bs.modal', function (event) {
- if (event.target.classList.contains('dtr-bs-modal')) {
- bindDeleteEvent();
- }
- });
-
- document.addEventListener('hide.bs.modal', function (event) {
- if (event.target.classList.contains('dtr-bs-modal')) {
- bindDeleteEvent();
- }
- });
- // To remove default btn-secondary in export buttons
- $('.dt-buttons > .btn-group > button').removeClass('btn-secondary');
- }
-
- // Filter form control to default size
- // ? setTimeout used for user-list table initialization
- setTimeout(() => {
- const elementsToModify = [
- { selector: '.dt-buttons .btn', classToRemove: 'btn-secondary' },
- { selector: '.dt-search .form-control', classToRemove: 'form-control-sm' },
- { selector: '.dt-length .form-select', classToRemove: 'form-select-sm', classToAdd: 'ms-0' },
- { selector: '.dt-length', classToAdd: 'mb-md-6 mb-0' },
- { selector: '.dt-search', classToAdd: 'mb-md-6 mb-2' },
- {
- selector: '.dt-layout-end',
- classToRemove: 'justify-content-between',
- classToAdd: 'd-flex gap-md-4 justify-content-md-between justify-content-center gap-4 flex-wrap mt-0'
- },
- { selector: '.dt-layout-start', classToAdd: 'mt-0' },
- { selector: '.dt-buttons', classToAdd: 'd-flex gap-4 mb-md-0 mb-6' },
- { selector: '.dt-layout-table', classToRemove: 'row mt-2' },
- { 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);
-
- // Validation & Phone mask
- const phoneMaskList = document.querySelectorAll('.phone-mask'),
- addNewUserForm = document.getElementById('addNewUserForm');
-
- // Phone Number
- if (phoneMaskList) {
- phoneMaskList.forEach(function (phoneMask) {
- phoneMask.addEventListener('input', event => {
- const cleanValue = event.target.value.replace(/\D/g, '');
- phoneMask.value = formatGeneral(cleanValue, {
- blocks: [3, 3, 4],
- delimiters: [' ', ' ']
- });
- });
- registerCursorTracker({
- input: phoneMask,
- delimiter: ' '
- });
- });
- }
- // Add New User Form Validation
- const fv = FormValidation.formValidation(addNewUserForm, {
- fields: {
- userFullname: {
- validators: {
- notEmpty: {
- message: 'Please enter fullname '
- }
- }
- },
- userEmail: {
- 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 '.form-control-validation';
- }
- }),
- submitButton: new FormValidation.plugins.SubmitButton(),
- // Submit the form when all fields are valid
- // defaultSubmit: new FormValidation.plugins.DefaultSubmit(),
- autoFocus: new FormValidation.plugins.AutoFocus()
- }
- });
- });
|