HEX
Server: LiteSpeed
System: Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User: swifizcd (1555)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/swifizcd/shoppers-joy.com.ng/wp-content/plugins/formidable/js/formidable_admin_global.js
/* exported frm_install_now, frmSelectSubnav, frmCreatePostEntry */

jQuery( document ).ready( function() {
	const installLink = document.getElementById( 'frm_install_link' );

	if ( installLink !== null ) {
		jQuery( installLink ).on( 'click', frmInstallPro );
	}

	const deauthLink = jQuery( '.frm_deauthorize_link' );
	if ( deauthLink.length ) {
		deauthLink.on( 'click', frmDeauthorizeNow );
	}

	if ( typeof tb_remove === 'function' ) { // eslint-disable-line camelcase
		frmAdminPopup.init();
	}

	const submenuItem = document.querySelector( '.frm-upgrade-submenu' );
	if ( null !== submenuItem ) {
		const li = submenuItem.parentNode.parentNode;
		if ( li ) {
			li.classList.add( 'frm-submenu-highlight' );
		}
	}
} );

function frm_install_now() { // eslint-disable-line camelcase
	const $msg = jQuery( document.getElementById( 'frm_install_message' ) );
	$msg.html( `<div class="frm_plugin_updating">${ frmGlobal.updating_msg }<div class="spinner frm_spinner"></div></div>` );
	jQuery.ajax( {
		type: 'POST',
		url: ajaxurl,
		data: {
			action: 'frm_install',
			nonce: frmGlobal.nonce
		},
		success() {
			$msg.fadeOut( 'slow' );
		}
	} );
	return false;
}

function frmInstallPro( e ) {
	const plugin = this.getAttribute( 'data-prourl' );
	if ( plugin === '' ) {
		return true;
	}

	e.preventDefault();

	const $msg = jQuery( document.getElementById( 'frm_install_message' ) );
	$msg.html( `<div class="frm_plugin_updating">${ frmGlobal.updating_msg }<div class="spinner frm_spinner"></div></div>` );
	$msg.fadeIn( 'slow' );

	jQuery.ajax( {
		url: ajaxurl,
		type: 'POST',
		async: true,
		cache: false,
		dataType: 'json',
		data: {
			action: 'frm_install_addon',
			nonce: frmGlobal.nonce,
			plugin
		},
		success() {
			$msg.fadeOut( 'slow' );
			$msg.parent().fadeOut( 'slow' );
		},
		error() {
			$msg.fadeOut( 'slow' );
		}
	} );
	return false;
}

function frmDeauthorizeNow() {
	if ( ! confirm( frmGlobal.deauthorize ) ) {
		return false;
	}
	jQuery( this ).html( '<span class="spinner"></span>' );
	jQuery.ajax( {
		type: 'POST',
		url: ajaxurl,
		data: {
			action: 'frm_deauthorize',
			nonce: frmGlobal.nonce
		},
		success() {
			jQuery( '.error' ).fadeOut( 'slow' );
		}
	} );
	return false;
}

function frmSelectSubnav() {
	const frmMenu = document.getElementById( 'toplevel_page_formidable' );
	jQuery( frmMenu ).removeClass( 'wp-not-current-submenu' ).addClass( 'wp-has-current-submenu wp-menu-open' );
	jQuery( '#toplevel_page_formidable a.wp-has-submenu' ).removeClass( 'wp-not-current-submenu' ).addClass( 'wp-has-current-submenu wp-menu-open' );
}

function frmCreatePostEntry( id, postId ) {
	jQuery( '#frm_create_entry p' ).replaceWith( `<img src="${ frmGlobal.url }/images/wpspin_light.gif" alt="${ frmGlobal.loading }" />` );
	jQuery.ajax( {
		type: 'POST',
		url: ajaxurl,
		data: {
			action: 'frm_create_post_entry',
			id,
			post_id: postId,
			nonce: frmGlobal.nonce
		},
		success() {
			jQuery( document.getElementById( 'frm_create_entry' ) ).fadeOut( 'slow' );
		}
	} );
}

function frmAdminPopupJS() {
	function switchSc() {
		jQuery( '.frm_switch_sc' ).removeClass( 'active' );
		jQuery( this ).addClass( 'active' );
		toggleMenu();
		jQuery( '#frm_popup_content .media-frame-title h1' ).html( `${ jQuery( this ).children( '.howto' ).text() } <span class="spinner" style="float:left;"></span>` );
		const val = this.id.replace( 'sc-link-', '' );
		populateOpts( val );
		return false;
	}

	function populateOpts( val ) {
		const sc = document.getElementById( 'frm_complete_shortcode' );

		if ( sc !== null ) {
			sc.value = `[${ val }]`;
		}
		jQuery( '.frm_shortcode_option' ).hide();

		const $settings = document.getElementById( `sc-opts-${ val }` );
		if ( $settings !== null ) {
			$settings.style.display = '';
			jQuery( document.getElementById( `sc-${ val }` ) ).trigger( 'click' );
		} else {
			const $scOpts = jQuery( document.getElementById( 'frm_shortcode_options' ) );
			const $spinner = jQuery( '.media-frame-title .spinner' );
			$spinner.show();
			jQuery.ajax( {
				type: 'POST',
				url: ajaxurl,
				data: {
					action: 'frm_get_shortcode_opts',
					shortcode: val,
					nonce: frmGlobal.nonce
				},
				success( html ) {
					$spinner.hide();
					$scOpts.append( html );
					jQuery( document.getElementById( `sc-${ val }` ) ).trigger( 'click' );
				}
			} );
		}
	}

	function addToShortcode() {
		const sc = jQuery( 'input[name=frmsc]:checked' ).val();
		const inputs = jQuery( document.getElementById( `sc-opts-${ sc }` ) ).find( 'input, select' );
		let output = `[${ sc }`;

		inputs.each( function() {
			let attrName;
			let attrVal;
			const $thisInput = jQuery( this );
			const attrId = this.id;

			if ( attrId.indexOf( 'frmsc_' ) === 0 ) {
				attrName = attrId.replace( `frmsc_${ sc }_`, '' );
				attrVal = $thisInput.val();

				if ( ( $thisInput.attr( 'type' ) !== 'checkbox' || this.checked ) && ( ( $thisInput.attr( 'type' ) !== 'text' && ! $thisInput.is( 'select' ) ) || attrVal !== '' ) ) {
					output += ` ${ attrName }="${ attrVal }"`;
				}
			}
		} );
		output += ']';
		document.getElementById( 'frm_complete_shortcode' ).value = output;
	}

	function insertShortcode() {
		const win = window.dialogArguments || opener || parent || top;
		win.send_to_editor( document.getElementById( 'frm_complete_shortcode' ).value );
	}

	function getFieldSelection() {
		let thisId;
		const formId = this.value;
		if ( formId ) {
			thisId = this.id;
			jQuery.ajax( {
				type: 'POST',
				url: ajaxurl,
				data: {
					action: 'frm_get_field_selection',
					field_id: 0,
					form_id: formId,
					nonce: frmGlobal.nonce
				},
				success( msg ) {
					const baseId = thisId.replace( '_form', '' );
					msg = msg.replace( 'name="field_options[form_select_0]"', `id="frmsc_${ baseId }_fields"` );
					jQuery( document.getElementById( `${ baseId }_fields_container` ) ).html( msg );
				}
			} );
		}
	}

	function toggleMenu() {
		jQuery( document.getElementById( 'frm_popup_content' ) ).find( '.media-menu' ).toggleClass( 'visible' );
	}

	return {
		init() {
			jQuery( '.frm_switch_sc' ).on( 'click', switchSc );
			jQuery( '.button.frm_insert_form' ).on( 'click', function() {
				populateOpts( 'formidable' );
			} );
			jQuery( document.getElementById( 'frm_insert_shortcode' ) ).on( 'click', insertShortcode );

			const $scOptsDiv = jQuery( document.getElementById( 'frm_shortcode_options' ) );
			$scOptsDiv.on( 'change', 'select, input', addToShortcode );
			$scOptsDiv.on( 'change', '.frm_get_field_selection', getFieldSelection );

			jQuery( '#frm_popup_content .media-modal-close' ).on( 'click', tb_remove );
			jQuery( '#frm_popup_content .media-frame-title h1' ).on( 'click', toggleMenu );
		}
	};
}

window.frmAdminPopup = frmAdminPopupJS();

function frmWidgetsJS() {
	function toggleCatOpt() {
		const catOpts = jQuery( this ).closest( '.widget-content' ).children( '.frm_list_items_hide_cat_opts' );
		if ( this.checked ) {
			catOpts.fadeIn();
		} else {
			catOpts.fadeOut();
		}
	}

	function getFields() {
		let widget;
		const displayId = this.value;
		if ( displayId !== '' ) {
			widget = jQuery( this ).closest( '.widget-content' );

			jQuery.ajax( {
				type: 'POST',
				url: ajaxurl,
				dataType: 'json',
				data: {
					action: 'frm_get_dynamic_widget_opts',
					display_id: displayId,
					nonce: frmGlobal.nonce
				},
				success( opts ) {
					const catField = widget.find( '.frm_list_items_cat_id' );
					catField.find( 'option' ).remove().end();
					catField.append( jQuery( '<option></option>' ) );
					jQuery.each( opts.catValues, function( key, value ) {
						catField.append( jQuery( '<option></option>' ).attr( 'value', key ).text( value ) );
					} );

					const titleField = widget.find( '.frm_list_items_title_id' );
					titleField.find( 'option' ).remove().end();
					titleField.append( jQuery( '<option></option>' ) );
					jQuery.each( opts.titleValues, function( key, value ) {
						titleField.append( jQuery( '<option></option>' ).attr( 'value', key ).text( value ) );
					} );
				}
			} );
		}
	}

	return {
		init() {
			jQuery( document ).on( 'click', '.frm_list_items_cat_list', toggleCatOpt );
			jQuery( document ).on( 'change', '.frm_list_items_display_id', getFields );
		}
	};
}
if ( typeof adminpage !== 'undefined' && adminpage === 'widgets-php' ) {
	window.frmWidgets = frmWidgetsJS();
	window.frmWidgets.init();
}