69 lines
1.7 KiB
JavaScript
69 lines
1.7 KiB
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import compareVersions from 'compare-versions';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { getSetting } from './get-setting';
|
|
|
|
export * from './default-constants';
|
|
export { setSetting } from './set-setting';
|
|
|
|
/**
|
|
* Note: this attempts to coerce the wpVersion to a semver for comparison
|
|
* This will result in dropping any beta/rc values.
|
|
*
|
|
* `5.3-beta1-4252` would get converted to `5.3.0-rc.4252`
|
|
* `5.3-beta1` would get converted to `5.3.0-rc`.
|
|
* `5.3` would not be touched.
|
|
*
|
|
* For the purpose of these comparisons all pre-release versions are normalized
|
|
* to `rc`.
|
|
*
|
|
* @param {string} version Version to compare.
|
|
* @param {string} setting Setting name (e.g. wpVersion or wcVersion).
|
|
* @param {string} operator Comparison operator.
|
|
*/
|
|
const compareVersionSettingIgnorePrerelease = (
|
|
version,
|
|
setting,
|
|
operator
|
|
) => {
|
|
let replacement = getSetting( setting, '' ).replace(
|
|
/-[a-zA-Z0-9]*[\-]*/,
|
|
'.0-rc.'
|
|
);
|
|
replacement = replacement.endsWith( '.' )
|
|
? replacement.substring( 0, replacement.length - 1 )
|
|
: replacement;
|
|
return compareVersions.compare( version, replacement, operator );
|
|
};
|
|
|
|
export const compareWithWpVersion = ( version, operator ) => {
|
|
return compareVersionSettingIgnorePrerelease(
|
|
version,
|
|
'wpVersion',
|
|
operator
|
|
);
|
|
};
|
|
|
|
export const compareWithWooVersion = ( version, operator ) => {
|
|
return compareVersionSettingIgnorePrerelease(
|
|
version,
|
|
'wcVersion',
|
|
operator
|
|
);
|
|
};
|
|
|
|
export { compareVersions, getSetting };
|
|
|
|
/**
|
|
* Returns a string with the site's wp-admin URL appended. JS version of `admin_url`.
|
|
*
|
|
* @param {string} path Relative path.
|
|
* @return {string} Full admin URL.
|
|
*/
|
|
export const getAdminLink = ( path ) => getSetting( 'adminUrl' ) + path;
|