403Webshell
Server IP : 69.39.225.240  /  Your IP : 216.73.216.138
Web Server : Apache
System : Linux bronze7.serverhost.net 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
User : reademotions ( 1074)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/reademotions/www/wp-content/plugins/easy-login-woocommerce/assets/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/reademotions/www/wp-content/plugins/easy-login-woocommerce/assets/js/xoo-el-js-old.js
jQuery(document).ready(function($){

	//Return if form is not available in the DOM
	var popup_container = $('.xoo-el-container');
	if(popup_container.length  === 0){
		return false;
	}


	var spinner = '<i class="fas fa-circle-notch spinner fa-spin" aria-hidden="true"></i>',
		el_notice = $('.xoo-el-notice');


	//Opens popup
	var open_popup = function(){
		$('html, body , .xoo-el-container').addClass('xoo-el-popup-active');
	}

	//Close popup
	var close_popup = function(e){
		$.each(e.target.classList,function(key,value){
			if(value == 'xoo-el-modal' || value == 'xoo-el-close'){
				$('html, body , .xoo-el-container').removeClass('xoo-el-popup-active');
				clear_notice();
				$('body').trigger( 'xoo_el_popup_closed' );
				return false;
			}
		})
	}

	$('.xoo-el-modal').on('click',close_popup);

	//Show notice
	function show_notice( notice, notice_type, $context  ){

		$context = !$context ? $('body') : $context;
		notice_type = !notice_type ? 'success' : notice_type;

		var notice_string = typeof notice == 'object' ? '<span>'+notice.join('<br>')+'</span>' : '<span>'+notice+'</span>';
		var notice_class  = notice_type == 'error' ? 'xoo-el-notice-error' : 'xoo-el-notice-success';
		$context.find('.xoo-el-notice').html(notice_string)
			.addClass(notice_class).show();
		
		setScrollbarPosition( $context.closest('.xoo-el-srcont') );
		
	}

	

	var clear_notice = function(){
		if( el_notice.hasClass('xoo-el-lla-notice') ){
			return;
		}
		el_notice.attr('class','xoo-el-notice').html('').hide();
		$('.xoo-el-lostpw-success').remove();
	}


	/* 
		Handles form interaction
	*/

	var formHandler = {

		init: function(){

			this.switch_form_to = this.switch_form_to.bind(this);
			this.submit_form 	= this.submit_form.bind(this);

			//Switch form
			$(document).on('click','.xoo-el-login-tgr , .xoo-el-reg-tgr , .xoo-el-lostpw-tgr, .xoo-el-resetpw-tgr',this.switch_form_to);
			//Submit form
			$(document).on('submit','.xoo-el-action-form',this.submit_form);

			//Trigger popup if reset field is active
			if( $('form.xoo-el-form-resetpw').length ){
				if( $('.xoo-el-form-inline').length ){
					$([document.documentElement, document.body]).animate({
						scrollTop: $(".xoo-el-form-inline").offset().top
					}, 500);
				}
				else{
					open_popup();
				}
			}

			//On phone otp form submit
			$('.xoo-el-action-form').on( 'xoo_uv_phone_register_form_submit', function(){
				$('.xoo-el-notice').hide();
			} )

			formHandler.validation.init();

		},


		$formCont: function($target){
			if( $target.parents('.xoo-el-form-inline').length > 0 ){
				return $target.parents('.xoo-el-form-inline');
			}
			else{
				return $('.xoo-el-form-popup');
			}
		},

		//Navigate to different parts of form Login/Register/Lost Password
		switch_form_to: function(eventObj){

			eventObj.stopImmediatePropagation();
			eventObj.preventDefault();

			var $target = $(eventObj.currentTarget),
				$formCont 	= formHandler.$formCont( $target ),
				activeForm;

			if(!$target || $target.is('.xoo-el-login-tgr')){
				activeForm = 'xoo-el-login-ph';
			}

			else if($target.is('.xoo-el-reg-tgr')){
				activeForm = 'xoo-el-register-ph';
			}

			else if($target.is('.xoo-el-lostpw-tgr')){
				activeForm = 'xoo-el-lostpw-ph';
			}

			else if($target.is('.xoo-el-resetpw-tgr')){
				activeForm = 'xoo-el-resetpw-ph';
			}

			$.each( ['xoo-el-login-ph','xoo-el-register-ph','xoo-el-lostpw-ph', 'xoo-el-resetpw-ph'], function(index,class_name){
				$formCont.find('.'+class_name).removeClass('xoo-el-active');
			} )
			$formCont.find('.'+activeForm).addClass('xoo-el-active').find('form.xoo-el-action-form').show();

			$formCont.attr('data-active', activeForm );

			$('body').addClass( activeForm+'-active' );

			if( $formCont.hasClass('xoo-el-form-popup') ){
				open_popup();
			}

			clear_notice();

			$formCont.trigger( 'xoo_el_form_tab_switched' );
			
		},


		submit_form: function(eventObj){

			eventObj.preventDefault();
			clear_notice();

			var $target 		= $(eventObj.currentTarget),
				$formCont 		= formHandler.$formCont( $target ),
				$form 			= $target,
				form_type 		= $form.find('input[name=_xoo_el_form]').val();


			if( !form_type ) return;

			/*var errors = formHandler.validation.validate( $form, form_type );

			if(errors.length !== 0){
				show_notice(errors,'error', $formCont);
				return;
			}*/

			this.perform_action($form)

		},

		perform_action: function($form){

			var $button 		= $form.find('button[type="submit"]'),
				old_btn_txt 	= $button.text(),
				$section 		= $form.parents('.xoo-el-section'),
				$notice_el		= $form.parents('.xoo-el-fields').find('.xoo-el-notice'),
				$formCont 		= formHandler.$formCont( $form ),
				display_type 	= $formCont.hasClass('xoo-el-fom-inline') ? 'inline' : 'popup';

			$button.html(spinner).addClass('xoo-el-processing');

			var form_data = $form.serialize()+'&action=xoo_el_form_action'+'&display='+display_type;

			$.ajax({
				url: xoo_el_localize.adminurl,
				type: 'POST',
				data: form_data,
				success: function(response){

					$button.removeClass('xoo-el-processing').html(old_btn_txt);
					if(response.notice){
						$notice_el.html(response.notice).show();
						$('html, body').animate({ scrollTop: $notice_el.offset().top - 100}, 500);
					}else{
						console.log(response);
					}

					if ( response.error == 0 ){
						
						if(response.redirect ){
							//Redirect
							setTimeout(function(){
								window.location = response.redirect;
							},300);
						}
						else{
							$form.hide();
						}

						$form.trigger('reset');

						if( $form.find( 'input[name="_xoo_el_form"]' ).val() === 'resetPassword' ){
							$form.add( '.xoo-el-resetpw-hnotice' ).remove();
						}

					}

					if( response.error === undefined ){
						show_notice( 'Please contact support team or check your console. Some other plugin is controlling the login/signup request and causing conflict. You can debug by deactivating other plugins.','error' );
					}

					$( document ).trigger( 'xoo_el_form_submitted', [ $form, response ] );
					
					setScrollbarPosition( $form.closest('.xoo-el-srcont') );
					
				}
			})
		},


		validation: {

			errors: [],

			init: function(){
			},

			validate: function( $form, validate_type){

				if(typeof this[ validate_type] !== 'function'){
					console.log(validate_type + ' is not a valid input form type.');
					return;
				}
				this[validate_type]( $form );
				return this.getErrors();
			},


			setError: function(error){
				this.errors.push(error);
			},


			getErrors: function(){
				var saveErrors = this.errors;
				this.errors = []; //clear
				return saveErrors;
			},


			checkLength: function(input_el,length){
				return length > input_el.val().trim().length;
			},


			login: function($form){

			},


			register: function($form){

				var password 		= $form.find('#xoo_el_reg_pass'),
					password_again 	= $form.find('#xoo_el_reg_pass_again'),
					strings 		= xoo_el_localize.strings.errors.register;


				//Password must be minimum 6 characters.
				if( password.length && this.checkLength(password,6)){
					this.setError(strings.min_password);
				}
				else{//Passwords don't match
					if( password_again.length > 0 && password.val() !== password_again.val()){
						this.setError(strings.match_password);
					}
				}
			},

		}
	}



	//Initialize form handler
	formHandler.init();

	$('.xoo-el-action-btn').on( 'click', function(){
		var invalid_els = $(this).closest('form').find('input:invalid');
		if( invalid_els.length === 0 ) return;
		setScrollbarPosition( $(this).closest('.xoo-el-srcont'), invalid_els.filter(":first").closest('.xoo-aff-group').position().top );
	} );


	function setScrollbarPosition( $scrollBar, value ){
		if( !$scrollBar.length ) return;
		Scrollbar.get( $scrollBar.get(0) ).scrollTop = value || 0;
	}

	//Initialize scrollbar
	var Scrollbar = window.Scrollbar;
  	Scrollbar.init(document.querySelector('.xoo-el-srcont'));


	if( $( 'body.woocommerce-checkout' ).length && $('.xoo-el-form-inline').length && $( 'a.showlogin' ).length ){
  		var $inlineForm = $('.xoo-el-form-inline');
  		$inlineForm.hide();
  		$( document.body ).on( 'click', 'a.showlogin', function(){
  			$inlineForm.slideToggle();
  			$inlineForm.find('.xoo-el-login-tgr').trigger('click');
  		} );	
  	}



});

Youez - 2016 - github.com/yon3zu
LinuXploit