Files
think-greaterchiangmai/think-backend.greaterchiangmai.com/public/assets/js/custom/account/security/license-usage.js
2025-11-11 14:55:29 +07:00

69 lines
2.1 KiB
JavaScript

"use strict";
// Class definition
var KTAccountSecurityLicenseUsage = function () {
// Private functions
var initLicenceCopy = function() {
KTUtil.each(document.querySelectorAll('#kt_security_license_usage_table [data-action="copy"]'), function(button) {
var tr = button.closest('tr');
var license = KTUtil.find(tr, '[data-bs-target="license"]');
var clipboard = new ClipboardJS(button, {
target: license,
text: function() {
return license.innerHTML;
}
});
clipboard.on('success', function(e) {
// Icons
var svgIcon = button.querySelector('.svg-icon');
var checkIcon = button.querySelector('.bi.bi-check');
// exit if check icon is already shown
if (checkIcon) {
return;
}
// Create check icon
checkIcon = document.createElement('i');
checkIcon.classList.add('bi');
checkIcon.classList.add('bi-check');
checkIcon.classList.add('fs-2x');
// Append check icon
button.appendChild(checkIcon);
// Highlight target
license.classList.add('text-success');
// Hide copy icon
svgIcon.classList.add('d-none');
// Set 3 seconds timeout to hide the check icon and show copy icon back
setTimeout(function() {
// Remove check icon
svgIcon.classList.remove('d-none');
// Show check icon back
button.removeChild(checkIcon);
// Remove highlight
license.classList.remove('text-success');
}, 3000);
});
});
}
// Public methods
return {
init: function () {
initLicenceCopy();
}
}
}();
// On document ready
KTUtil.onDOMContentLoaded(function() {
KTAccountSecurityLicenseUsage.init();
});