| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/ia/wp-content/plugins/visual-portfolio/gutenberg/utils/encode-decode/ |
Upload File : |
const eCache = {};
const dCache = {};
/**
* Encode URI component with `try {} catch` and caching.
*
* @param {string} str - decoded string.
* @return {string} - new encoded string.
*/
export function maybeEncode( str ) {
// return cached string.
if ( eCache[ str ] ) {
return eCache[ str ];
}
let result = {};
// Object
if ( typeof str === 'object' ) {
Object.keys( str ).forEach( ( k ) => {
result[ maybeEncode( k ) ] = maybeEncode( str[ k ] );
} );
return result;
}
// String
result = str;
if ( typeof result === 'string' ) {
try {
// Because of these replacements, some attributes can't be exported to XML without being broken. So, we need to replace it manually with something safe.
// https://github.com/WordPress/gutenberg/blob/88645e4b268acf5746e914159e3ce790dcb1665a/packages/blocks/src/api/serializer.js#L246-L271
result = result.replace( /--/gm, '_u002d__u002d_' );
result = encodeURIComponent( result );
} catch ( e ) {
// eslint-disable-next-line no-console
console.warn( e );
}
}
// save to cache.
eCache[ str ] = result;
return result;
}
/**
* Encode URI component with `try {} catch` and caching.
*
* @param {string} str - decoded string.
* @return {string} - new encoded string.
*/
export function maybeDecode( str ) {
// return cached string.
if ( dCache[ str ] ) {
return dCache[ str ];
}
let result = {};
// Object
if ( typeof str === 'object' ) {
Object.keys( str ).forEach( ( k ) => {
result[ maybeDecode( k ) ] = maybeDecode( str[ k ] );
} );
return result;
}
// String
result = str;
if ( typeof result === 'string' ) {
try {
result = decodeURIComponent( result );
// Because of these replacements, some attributes can't be exported to XML without being broken. So, we need to replace it manually with something safe.
// https://github.com/WordPress/gutenberg/blob/88645e4b268acf5746e914159e3ce790dcb1665a/packages/blocks/src/api/serializer.js#L246-L271
result = result.replace( /_u002d__u002d_/gm, '--' );
} catch ( e ) {
// eslint-disable-next-line no-console
console.warn( e );
}
}
// save to cache.
dCache[ str ] = result;
return result;
}