You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
927 B
24 lines
927 B
import { parse } from 'querystring';
|
|
|
|
/* eslint no-useless-escape:0 import/prefer-default-export:0 */
|
|
const reg = /(((^https?:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+(?::\d+)?|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)$/;
|
|
|
|
export const isUrl = (path: string): boolean => reg.test(path);
|
|
|
|
export const isAntDesignPro = (): boolean => {
|
|
if (ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION === 'site') {
|
|
return true;
|
|
}
|
|
return window.location.hostname === 'preview.pro.ant.design';
|
|
};
|
|
|
|
// For the official demo site, it is used to turn off features that are not needed in the real development environment
|
|
export const isAntDesignProOrDev = (): boolean => {
|
|
const { NODE_ENV } = process.env;
|
|
if (NODE_ENV === 'development') {
|
|
return true;
|
|
}
|
|
return isAntDesignPro();
|
|
};
|
|
|
|
export const getPageQuery = () => parse(window.location.href.split('?')[1]);
|
|
|