Sindbad~EG File Manager
/**
* Utils functions
*
* @param url
* @param data
* @param functions
* @since 4.2.5.1
* @version 1.0.3
*/
const lpClassName = {
hidden: 'lp-hidden',
loading: 'loading',
};
const lpFetchAPI = ( url, data = {}, functions = {} ) => {
if ( 'function' === typeof functions.before ) {
functions.before();
}
fetch( url, { method: 'GET', ...data } )
.then( ( response ) => response.json() )
.then( ( response ) => {
if ( 'function' === typeof functions.success ) {
functions.success( response );
}
} ).catch( ( err ) => {
if ( 'function' === typeof functions.error ) {
functions.error( err );
}
} )
.finally( () => {
if ( 'function' === typeof functions.completed ) {
functions.completed();
}
} );
};
/**
* Get current URL without params.
*
* @since 4.2.5.1
*/
const lpGetCurrentURLNoParam = () => {
let currentUrl = window.location.href;
const hasParams = currentUrl.includes( '?' );
if ( hasParams ) {
currentUrl = currentUrl.split( '?' )[ 0 ];
}
return currentUrl;
};
const lpAddQueryArgs = ( endpoint, args ) => {
const url = new URL( endpoint );
Object.keys( args ).forEach( ( arg ) => {
url.searchParams.set( arg, args[ arg ] );
} );
return url;
};
/**
* Listen element viewed.
*
* @param el
* @param callback
* @since 4.2.5.8
*/
const listenElementViewed = ( el, callback ) => {
const observerSeeItem = new IntersectionObserver( function( entries ) {
for ( const entry of entries ) {
if ( entry.isIntersecting ) {
callback( entry );
}
}
} );
observerSeeItem.observe( el );
};
/**
* Listen element created.
*
* @param callback
* @since 4.2.5.8
*/
const listenElementCreated = ( callback ) => {
const observerCreateItem = new MutationObserver( function( mutations ) {
mutations.forEach( function( mutation ) {
if ( mutation.addedNodes ) {
mutation.addedNodes.forEach( function( node ) {
if ( node.nodeType === 1 ) {
callback( node );
}
} );
}
} );
} );
observerCreateItem.observe( document, { childList: true, subtree: true } );
// End.
};
/**
* Listen element created.
*
* @param selector
* @param callback
* @since 4.2.7.1
*/
const lpOnElementReady = ( selector, callback ) => {
const element = document.querySelector( selector );
if ( element ) {
callback( element );
return;
}
const observer = new MutationObserver( ( mutations, obs ) => {
const element = document.querySelector( selector );
if ( element ) {
obs.disconnect();
callback( element );
}
} );
observer.observe( document.documentElement, {
childList: true,
subtree: true,
} );
};
// Parse JSON from string with content include LP_AJAX_START.
const lpAjaxParseJsonOld = ( data ) => {
if ( typeof data !== 'string' ) {
return data;
}
const m = String.raw( { raw: data } ).match( /<-- LP_AJAX_START -->(.*)<-- LP_AJAX_END -->/s );
try {
if ( m ) {
data = JSON.parse( m[ 1 ].replace( /(?:\r\n|\r|\n)/g, '' ) );
} else {
data = JSON.parse( data );
}
} catch ( e ) {
data = {};
}
return data;
};
// status 0: hide, 1: show
const lpShowHideEl = ( el, status = 0 ) => {
if ( ! el ) {
return;
}
if ( ! status ) {
el.classList.add( lpClassName.hidden );
} else {
el.classList.remove( lpClassName.hidden );
}
};
// status 0: hide, 1: show
const lpSetLoadingEl = ( el, status ) => {
if ( ! el ) {
return;
}
if ( ! status ) {
el.classList.remove( lpClassName.loading );
} else {
el.classList.add( lpClassName.loading );
}
};
export {
lpFetchAPI, lpAddQueryArgs, lpGetCurrentURLNoParam,
listenElementViewed, listenElementCreated, lpOnElementReady, lpAjaxParseJsonOld,
lpShowHideEl, lpSetLoadingEl, lpClassName,
};
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists