trustedlogin.js 5.66 KB
/* global ajaxurl,jQuery,tl_obj */
(function ($) {

	'use strict';

	var $body = $( 'body' ), namespace = tl_obj.vendor.namespace,
		$tl_container = $( '.tl-' + namespace + '-auth' ), copy_button_timer = null,
		second_status = null;

	$body.on( 'click', tl_obj.selector, function ( e ) {

		e.preventDefault();

		grantAccess( $( this ) );

		return false;
	} );

	/**
	 * Adds a hidden <span> for screen readers alerting them that the link will open a new window.
	 */
	$tl_container.find( 'a[target=_blank]' ).each( function () {
		$( this ).append( $( '<span>', {
			'class': 'screen-reader-text',
			'text': tl_obj.lang.a11y.opens_new_window
		} ) );
	} );

	function grantAccess( $button ) {

		$button.addClass( 'disabled' );

		if ( 'extend' === $button.data( 'access' ) ) {
			outputStatus( tl_obj.lang.status.extending.content, 'pending' );
		} else {
			outputStatus( tl_obj.lang.status.pending.content, 'pending' );
		}

		second_status = setTimeout( function () {
			outputStatus( tl_obj.lang.status.syncing.content, 'pending' );
		}, 3000 );

		var remote_error = function ( response ) {

			clearTimeout( second_status );

			if ( tl_obj.debug ) {
				console.error( 'Request failed.', response );
			}

			// User not logged-in
			if ( response.responseText && '0' === response.responseText ) {
				outputStatus( tl_obj.lang.status.failed_permissions.content, 'error' );
			} else if ( typeof response.data === 'object' ) {
				outputStatus( tl_obj.lang.status.failed.content + ' ' + response.data.message, 'error' );
			} else if ( typeof response.responseJSON === 'object' ) {
				outputStatus( tl_obj.lang.status.failed.content + ' ' + response.responseJSON.data.message, 'error' );
			} else if ( 'parsererror' === response.statusText ) {
				outputStatus( tl_obj.lang.status.failed.content + ' ' + response.responseText, 'error' );
			}
		};

		var remote_success = function ( response ) {

			clearTimeout( second_status );

			if ( response.success && typeof response.data == 'object' ) {
				location.href = tl_obj.query_string;
			} else {
				remote_error( response );
			}

		};

		var data = {
			'action': 'tl_' + namespace + '_gen_support',
			'vendor': namespace,
			'_nonce': tl_obj._nonce,
			'reference_id': tl_obj.reference_id,
			'debug_data_consent': $( '#tl-' + namespace + '-debug-data-consent:checked' ).length,
		};


		//Add create_ticket value if allowed and set
		if ( tl_obj.create_ticket ) {
			//add value of textarea  with name "create_ticket"
			var $ticket_message = $( '#tl-' + namespace + '-ticket-message' );
			if ( $ticket_message && $ticket_message.is( ':visible' ) && $ticket_message.val() ) {
				data.ticket = {
					'message': $ticket_message.val(),
				};
			}
		}

		if ( tl_obj.debug ) {
			console.log( data );
		}

		$.ajax( {
			url: tl_obj.ajaxurl,
			type: 'POST',
			dataType: 'json',
			data: data,
			success: remote_success,
			error: remote_error
		} ).always( function ( response ) {

			if ( !tl_obj.debug ) {
				return;
			}

			console.log( 'TrustedLogin response: ', response );

			if ( typeof response.data === 'object' ) {
				console.log( 'TrustedLogin support login URL:' );
				console.log( response.data.site_url + '/' + response.data.endpoint + '/' + response.data.identifier );
			}
		} );
	}

	function outputStatus( content, type ) {

		var responseClass = 'tl-' + namespace + '-auth__response';

		var $responseDiv = $tl_container.find( '.' + responseClass );

		if ( 0 === $responseDiv.length ) {
			if ( tl_obj.debug ) {
				console.log( responseClass + ' not found' );
			}
			return;
		}

		// Reset the class and set the type for contextual styling.
		$responseDiv
			.attr( 'class', responseClass ).addClass( 'tl-' + namespace + '-auth__response_' + type )
			.text( content );

		/**
		 * Handle button actions/labels/etc to it's own function
		 */
		if ( 'error' === type ) {
			$( tl_obj.selector ).text( tl_obj.lang.buttons.go_to_site ).removeClass( 'disabled' );
			$body.off( 'click', tl_obj.selector );
		}

	}

	/**
	 * Select the text of an input field on click
	 * @param  {jQueryEvent} e
	 */
	$( '#tl-' + namespace + '-access-key', $tl_container ).on( 'click', function ( e ) {
		e.preventDefault();

		$( this ).trigger( 'focus' ).trigger( 'select' );

		return false;
	} );

	/**
	 * Expand and collapse toggling sections based on the target's [data-toggle] attribute.
	 * @param  {jQueryEvent} e
	 */
	$( '.tl-' + namespace + '-toggle' ).on( 'click', function ( e ) {
		e.preventDefault();

		$( this ).find( '.dashicons' ).toggleClass( 'dashicons-arrow-down-alt2' ).toggleClass( 'dashicons-arrow-up-alt2' );

		$( $( this ).data( 'toggle' ) ).toggleClass( 'hidden' );
	} );

	/**
	 * Used for copy-to-clipboard functionality
	 */
	$( '.tl-' + namespace + '-auth__accesskey_copy', $tl_container ).on( 'click', function () {
		var $copyButton = $( this );
		var $copyText = $( this ).find( 'span' );

		copyToClipboard( $( '.tl-' + namespace + '-auth__accesskey_field' ).val() );

		wp.a11y.speak( tl_obj.lang.a11y.copied_text, 'assertive' );

		$copyText.text( tl_obj.lang.buttons.copied ).removeClass( 'screen-reader-text' );

		$copyButton.addClass( 'tl-' + namespace + '-auth__copied' );

		if ( copy_button_timer ) {
			clearTimeout( copy_button_timer );
			copy_button_timer = null;
		}

		copy_button_timer = setTimeout( function () {
			$copyButton.removeClass( 'tl-' + namespace + '-auth__copied' );

			$copyText.text( tl_obj.lang.buttons.copy ).addClass( 'screen-reader-text' );
		}, 2000 );
	} );

	function copyToClipboard( copyText ) {

		var $temp = $( '<input>' );
		$body.append( $temp );
		$temp.val( copyText ).select();
		document.execCommand( 'copy' );
		$temp.remove();

		if ( tl_obj.debug ) {
			console.log( 'Copied to clipboard', copyText );
		}
	}

})(jQuery);