| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /**
- * App User View - Suspend User Script
- */
- 'use strict';
-
- document.addEventListener('DOMContentLoaded', function (e) {
- const suspendUser = document.querySelector('.suspend-user');
-
- // Suspend User javascript
- if (suspendUser) {
- suspendUser.onclick = function () {
- Swal.fire({
- title: 'Are you sure?',
- text: "You won't be able to revert user!",
- icon: 'warning',
- showCancelButton: true,
- confirmButtonText: 'Yes, Suspend user!',
- customClass: {
- confirmButton: 'btn btn-primary me-2',
- cancelButton: 'btn btn-label-secondary'
- },
- buttonsStyling: false
- }).then(function (result) {
- if (result.value) {
- Swal.fire({
- icon: 'success',
- title: 'Suspended!',
- text: 'User has been suspended.',
- customClass: {
- confirmButton: 'btn btn-success'
- }
- });
- } else if (result.dismiss === Swal.DismissReason.cancel) {
- Swal.fire({
- title: 'Cancelled',
- text: 'Cancelled Suspension :)',
- icon: 'error',
- customClass: {
- confirmButton: 'btn btn-success'
- }
- });
- }
- });
- };
- }
-
- //? Billing page have multiple buttons
- // Cancel Subscription alert
- const cancelSubscription = document.querySelectorAll('.cancel-subscription');
-
- // Alert With Functional Confirm Button
- if (cancelSubscription) {
- cancelSubscription.forEach(btnCancle => {
- btnCancle.onclick = function () {
- Swal.fire({
- text: 'Are you sure you would like to cancel your subscription?',
- icon: 'warning',
- showCancelButton: true,
- confirmButtonText: 'Yes',
- customClass: {
- confirmButton: 'btn btn-primary me-2',
- cancelButton: 'btn btn-label-secondary'
- },
- buttonsStyling: false
- }).then(function (result) {
- if (result.value) {
- Swal.fire({
- icon: 'success',
- title: 'Unsubscribed!',
- text: 'Your subscription cancelled successfully.',
- customClass: {
- confirmButton: 'btn btn-success'
- }
- });
- } else if (result.dismiss === Swal.DismissReason.cancel) {
- Swal.fire({
- title: 'Cancelled',
- text: 'Unsubscription Cancelled!!',
- icon: 'error',
- customClass: {
- confirmButton: 'btn btn-success'
- }
- });
- }
- });
- };
- });
- }
- });
|