| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- /**
- * App eCommerce Category List
- */
-
- 'use strict';
-
- // Comment editor
-
- const commentEditor = document.querySelector('.comment-editor');
-
- if (commentEditor) {
- new Quill(commentEditor, {
- modules: {
- toolbar: '.comment-toolbar'
- },
- placeholder: 'Write a Comment...',
- theme: 'snow'
- });
- }
-
- // Datatable (js)
- document.addEventListener('DOMContentLoaded', function (e) {
- var dt_category_list_table = document.querySelector('.datatables-category-list');
-
- //select2 for dropdowns in offcanvas
-
- var select2 = $('.select2');
- if (select2.length) {
- select2.each(function () {
- var $this = $(this);
- $this.wrap('<div class="position-relative"></div>').select2({
- dropdownParent: $this.parent(),
- placeholder: $this.data('placeholder') //for dynamic placeholder
- });
- });
- }
-
- // Customers List Datatable
-
- if (dt_category_list_table) {
- var dt_category = new DataTable(dt_category_list_table, {
- ajax: assetsPath + 'json/ecommerce-category-list.json', // JSON file to add data
- columns: [
- // columns according to JSON
- { data: 'id' },
- { data: 'id', orderable: false, render: DataTable.render.select() },
- { data: 'categories' },
- { data: 'total_products' },
- { data: 'total_earnings' },
- { data: 'id' }
- ],
- columnDefs: [
- {
- // For Responsive
- className: 'control',
- searchable: false,
- orderable: false,
- responsivePriority: 1,
- 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: 2,
- render: function (data, type, full, meta) {
- const name = full['categories'];
- const categoryDetail = full['category_detail'];
- const image = full['cat_image'];
- const id = full['id'];
- let output;
- if (image) {
- // For Product image
- output = `<img src="${assetsPath}img/ecommerce-images/${image}" alt="Product-${id}" class="rounded">`;
- } else {
- // For Product badge
- const stateNum = Math.floor(Math.random() * 6);
- const states = ['success', 'danger', 'warning', 'info', 'dark', 'primary', 'secondary'];
- const state = states[stateNum];
- const initials = (categoryDetail.match(/\b\w/g) || []).slice(0, 2).join('').toUpperCase();
- output = `<span class="avatar-initial rounded-2 bg-label-${state}">${initials}</span>`;
- }
- // Creates full output for Categories and Category Detail
- const rowOutput = `
- <div class="d-flex align-items-center">
- <div class="avatar-wrapper me-3 rounded-2 bg-label-secondary">
- <div class="avatar">${output}</div>
- </div>
- <div class="d-flex flex-column justify-content-center">
- <span class="text-heading text-wrap fw-medium">${name}</span>
- <span class="text-truncate mb-0 d-none d-sm-block"><small>${categoryDetail}</small></span>
- </div>
- </div>`;
- return rowOutput;
- }
- },
- {
- // Total products
- targets: 3,
- responsivePriority: 3,
- render: function (data, type, full, meta) {
- const total_products = full['total_products'];
- return '<div class="text-sm-end">' + total_products + '</div>';
- }
- },
- {
- // Total Earnings
- targets: 4,
- orderable: false,
- render: function (data, type, full, meta) {
- const total_earnings = full['total_earnings'];
- return "<div class='mb-0 text-sm-end'>" + total_earnings + '</div';
- }
- },
- {
- // Actions
- targets: -1,
- title: 'Actions',
- searchable: false,
- orderable: false,
- render: function (data, type, full, meta) {
- return `
- <div class="d-flex align-items-sm-center justify-content-sm-center">
- <button class="btn btn-icon"><i class="icon-base bx bx-edit icon-md"></i></button>
- <button class="btn btn-icon dropdown-toggle hide-arrow" data-bs-toggle="dropdown">
- <i class="icon-base bx bx-dots-vertical-rounded icon-md"></i>
- </button>
- <div class="dropdown-menu dropdown-menu-end m-0">
- <a href="javascript:void(0);" class="dropdown-item">View</a>
- <a href="javascript:void(0);" class="dropdown-item">Suspend</a>
- </div>
- </div>
- `;
- }
- }
- ],
- select: {
- style: 'multi',
- selector: 'td:nth-child(2)'
- },
- order: [2, 'desc'],
- layout: {
- topStart: {
- rowClass: 'row m-3 my-0 justify-content-between',
- features: [
- {
- search: {
- placeholder: 'Search Category',
- text: '_INPUT_'
- }
- }
- ]
- },
- topEnd: {
- rowClass: 'row m-3 my-0 justify-content-between',
- features: {
- pageLength: {
- menu: [10, 25, 50, 100],
- text: '_MENU_'
- },
- buttons: [
- {
- 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 Category</span>`,
- className: 'add-new btn btn-primary',
- attr: {
- 'data-bs-toggle': 'offcanvas',
- 'data-bs-target': '#offcanvasEcommerceCategoryList'
- }
- }
- ]
- }
- },
- bottomStart: {
- rowClass: 'row mx-3 justify-content-between',
- features: ['info']
- },
- bottomEnd: 'paging'
- },
- language: {
- 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['categories'];
- }
- }),
- 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;
- }
- }
- }
- });
- }
-
- // Filter form control to default size
- // ? setTimeout used for category-list table initialization
- setTimeout(() => {
- const elementsToModify = [
- { selector: '.dt-buttons .btn', classToRemove: 'btn-secondary' },
- { selector: '.dt-search .form-control', classToRemove: 'form-control-sm', classToAdd: 'ms-0' },
- { selector: '.dt-search', classToAdd: 'mb-0 mb-md-6' },
- { selector: '.dt-length .form-select', classToRemove: 'form-select-sm' },
- { selector: '.dt-layout-table', classToRemove: 'row mt-2', classToAdd: 'border-top' },
- { selector: '.dt-layout-start', classToAdd: 'px-3 mt-0' },
- { selector: '.dt-layout-end', classToAdd: 'px-3 column-gap-2 mt-0 mb-md-0 mb-4' },
- { selector: '.dt-layout-full', classToAdd: 'table-responsive' }
- ];
-
- 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);
- });
-
- //For form validation
- (function () {
- const eCommerceCategoryListForm = document.getElementById('eCommerceCategoryListForm');
-
- //Add New customer Form Validation
- const fv = FormValidation.formValidation(eCommerceCategoryListForm, {
- fields: {
- categoryTitle: {
- validators: {
- notEmpty: {
- message: 'Please enter category title'
- }
- }
- },
- slug: {
- validators: {
- notEmpty: {
- message: 'Please enter slug'
- }
- }
- }
- },
- plugins: {
- trigger: new FormValidation.plugins.Trigger(),
- bootstrap5: new FormValidation.plugins.Bootstrap5({
- // Use this for enabling/changing valid/invalid class
- eleValidClass: 'is-valid',
- 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()
- }
- });
- })();
|