mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
chore: remove isNaN util, re-organize validate utils (#8473)
This commit is contained in:
parent
9f93dd9d61
commit
3214b1dd80
@ -9,8 +9,12 @@ import {
|
||||
} from 'vue';
|
||||
|
||||
// Utils
|
||||
import { ComponentInstance, createNamespace, isObject } from '../utils';
|
||||
import { isMobile } from '../utils/validate/mobile';
|
||||
import {
|
||||
isObject,
|
||||
isMobile,
|
||||
createNamespace,
|
||||
ComponentInstance,
|
||||
} from '../utils';
|
||||
|
||||
// Composables
|
||||
import { useExpose } from '../composables/use-expose';
|
||||
|
@ -1,8 +1,7 @@
|
||||
import { PropType, ref, defineComponent } from 'vue';
|
||||
|
||||
// Utils
|
||||
import { ComponentInstance, createNamespace } from '../utils';
|
||||
import { isAndroid } from '../utils/validate/system';
|
||||
import { isAndroid, ComponentInstance, createNamespace } from '../utils';
|
||||
|
||||
// Components
|
||||
import { Cell } from '../cell';
|
||||
|
@ -1,6 +1,5 @@
|
||||
import { PropType, CSSProperties, defineComponent } from 'vue';
|
||||
import { isDef, createNamespace } from '../utils';
|
||||
import { isNumeric } from '../utils/validate/number';
|
||||
import { isDef, isNumeric, createNamespace } from '../utils';
|
||||
|
||||
const [name, bem] = createNamespace('badge');
|
||||
|
||||
|
@ -9,8 +9,7 @@ import {
|
||||
} from 'vue';
|
||||
|
||||
// Utils
|
||||
import { pick, getScrollTop, ComponentInstance } from '../utils';
|
||||
import { isDate } from '../utils/validate/date';
|
||||
import { pick, isDate, getScrollTop, ComponentInstance } from '../utils';
|
||||
import {
|
||||
t,
|
||||
bem,
|
||||
|
@ -1,8 +1,7 @@
|
||||
import { watch, reactive, PropType, defineComponent } from 'vue';
|
||||
|
||||
// Utils
|
||||
import { createNamespace } from '../utils';
|
||||
import { isMobile } from '../utils/validate/mobile';
|
||||
import { isMobile, createNamespace } from '../utils';
|
||||
|
||||
// Components
|
||||
import { Cell } from '../cell';
|
||||
|
@ -9,10 +9,10 @@ import {
|
||||
} from 'vue';
|
||||
|
||||
// Utils
|
||||
import { isDate } from '../utils/validate/date';
|
||||
import {
|
||||
pick,
|
||||
range,
|
||||
isDate,
|
||||
padZero,
|
||||
createNamespace,
|
||||
ComponentInstance,
|
||||
|
@ -1,5 +1,4 @@
|
||||
import { PropType } from 'vue';
|
||||
import { isNaN } from '../utils/validate/number';
|
||||
import { pickerProps } from '../picker/Picker';
|
||||
|
||||
export type ColumnType = 'year' | 'month' | 'day' | 'hour' | 'minute';
|
||||
@ -42,7 +41,7 @@ export function getTrueValue(value: string | undefined): number {
|
||||
return 0;
|
||||
}
|
||||
|
||||
while (isNaN(parseInt(value, 10))) {
|
||||
while (Number.isNaN(parseInt(value, 10))) {
|
||||
if (value.length > 1) {
|
||||
value = value.slice(1);
|
||||
} else {
|
||||
|
@ -1,7 +1,6 @@
|
||||
import { ref, watch, computed, PropType, defineComponent } from 'vue';
|
||||
|
||||
// Utils
|
||||
import { isNaN } from '../utils/validate/number';
|
||||
import {
|
||||
isDef,
|
||||
addUnit,
|
||||
@ -106,7 +105,7 @@ export default defineComponent({
|
||||
|
||||
value = formatNumber(String(value), !props.integer);
|
||||
value = value === '' ? 0 : +value;
|
||||
value = isNaN(value) ? +min : value;
|
||||
value = Number.isNaN(value) ? +min : value;
|
||||
value = Math.max(Math.min(+max, value), +min);
|
||||
|
||||
// format decimal
|
||||
|
@ -10,23 +10,6 @@ export const UnknownProp = (null as unknown) as PropType<unknown>;
|
||||
// eslint-disable-next-line
|
||||
export type ComponentInstance = ComponentPublicInstance<{}, any>;
|
||||
|
||||
export function isDef<T>(val: T): val is NonNullable<T> {
|
||||
return val !== undefined && val !== null;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/ban-types
|
||||
export function isFunction(val: unknown): val is Function {
|
||||
return typeof val === 'function';
|
||||
}
|
||||
|
||||
export function isObject(val: unknown): val is Record<any, any> {
|
||||
return val !== null && typeof val === 'object';
|
||||
}
|
||||
|
||||
export function isPromise<T = any>(val: unknown): val is Promise<T> {
|
||||
return isObject(val) && isFunction(val.then) && isFunction(val.catch);
|
||||
}
|
||||
|
||||
export function get(object: any, path: string): any {
|
||||
const keys = path.split('.');
|
||||
let result = object;
|
||||
@ -38,7 +21,7 @@ export function get(object: any, path: string): any {
|
||||
return result;
|
||||
}
|
||||
|
||||
type Writeable<T> = { -readonly [P in keyof T]: T[P] };
|
||||
export type Writeable<T> = { -readonly [P in keyof T]: T[P] };
|
||||
|
||||
export function pick<T, U extends keyof T>(
|
||||
obj: T,
|
||||
|
@ -1,5 +1,6 @@
|
||||
import { get, isFunction } from '../base';
|
||||
import { get } from '../base';
|
||||
import { camelize } from '../format/string';
|
||||
import { isFunction } from '../validate';
|
||||
import locale from '../../locale';
|
||||
|
||||
export function createTranslate(name: string) {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { isDef, isObject } from './base';
|
||||
import { isDef, isObject } from './validate';
|
||||
|
||||
type ObjectIndex = Record<string, any>;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { isDef } from './base';
|
||||
import { isDef } from './validate';
|
||||
|
||||
export function deepClone<T extends Record<string, any> | null | undefined>(
|
||||
obj: T
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { isIOS as checkIsIOS } from '../validate/system';
|
||||
import { isIOS as checkIsIOS } from '../validate';
|
||||
|
||||
export type ScrollElement = Element | Window;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { CSSProperties } from 'vue';
|
||||
import { isDef, inBrowser } from '../base';
|
||||
import { isNumeric } from '../validate/number';
|
||||
import { inBrowser } from '../base';
|
||||
import { isDef, isNumeric } from '../validate';
|
||||
|
||||
export function addUnit(value?: string | number): string | undefined {
|
||||
if (!isDef(value)) {
|
||||
|
@ -1,5 +1,6 @@
|
||||
export * from './base';
|
||||
export * from './create';
|
||||
export * from './validate';
|
||||
export * from './with-install';
|
||||
export * from './format/unit';
|
||||
export * from './format/number';
|
||||
|
@ -1,9 +1,7 @@
|
||||
import { deepClone } from '../deep-clone';
|
||||
import { deepAssign } from '../deep-assign';
|
||||
import { isDef, get, noop } from '..';
|
||||
import { isMobile } from '../validate/mobile';
|
||||
import { isNumeric } from '../validate/number';
|
||||
import { isAndroid } from '../validate/system';
|
||||
import { get, noop } from '..';
|
||||
import { isDef, isMobile, isNumeric, isAndroid } from '../validate';
|
||||
import { camelize } from '../format/string';
|
||||
import { formatNumber } from '../format/number';
|
||||
import { addUnit, unitToPx } from '../format/unit';
|
||||
|
46
src/utils/validate.ts
Normal file
46
src/utils/validate.ts
Normal file
@ -0,0 +1,46 @@
|
||||
import { inBrowser } from './base';
|
||||
|
||||
export function isDef<T>(val: T): val is NonNullable<T> {
|
||||
return val !== undefined && val !== null;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/ban-types
|
||||
export function isFunction(val: unknown): val is Function {
|
||||
return typeof val === 'function';
|
||||
}
|
||||
|
||||
export function isObject(val: unknown): val is Record<any, any> {
|
||||
return val !== null && typeof val === 'object';
|
||||
}
|
||||
|
||||
export function isPromise<T = any>(val: unknown): val is Promise<T> {
|
||||
return isObject(val) && isFunction(val.then) && isFunction(val.catch);
|
||||
}
|
||||
|
||||
export function isDate(val: unknown): val is Date {
|
||||
return (
|
||||
Object.prototype.toString.call(val) === '[object Date]' &&
|
||||
!Number.isNaN((val as Date).getTime())
|
||||
);
|
||||
}
|
||||
|
||||
export function isMobile(value: string): boolean {
|
||||
value = value.replace(/[^-|\d]/g, '');
|
||||
return (
|
||||
/^((\+86)|(86))?(1)\d{10}$/.test(value) || /^0[0-9-]{10,13}$/.test(value)
|
||||
);
|
||||
}
|
||||
|
||||
export function isNumeric(val: string | number): val is string {
|
||||
return typeof val === 'number' || /^\d+(\.\d+)?$/.test(val);
|
||||
}
|
||||
|
||||
export function isAndroid(): boolean {
|
||||
return inBrowser ? /android/.test(navigator.userAgent.toLowerCase()) : false;
|
||||
}
|
||||
|
||||
export function isIOS(): boolean {
|
||||
return inBrowser
|
||||
? /ios|iphone|ipad|ipod/.test(navigator.userAgent.toLowerCase())
|
||||
: false;
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
import { isNaN } from './number';
|
||||
|
||||
export function isDate(val: unknown): val is Date {
|
||||
return (
|
||||
Object.prototype.toString.call(val) === '[object Date]' &&
|
||||
!isNaN((val as Date).getTime())
|
||||
);
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
export function isMobile(value: string): boolean {
|
||||
value = value.replace(/[^-|\d]/g, '');
|
||||
return (
|
||||
/^((\+86)|(86))?(1)\d{10}$/.test(value) || /^0[0-9-]{10,13}$/.test(value)
|
||||
);
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
export function isNumeric(val: string | number): val is string {
|
||||
return typeof val === 'number' || /^\d+(\.\d+)?$/.test(val);
|
||||
}
|
||||
|
||||
export function isNaN(val: number): val is typeof NaN {
|
||||
if (Number.isNaN) {
|
||||
return Number.isNaN(val);
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-self-compare
|
||||
return val !== val;
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
import { inBrowser } from '../base';
|
||||
|
||||
export function isAndroid(): boolean {
|
||||
return inBrowser ? /android/.test(navigator.userAgent.toLowerCase()) : false;
|
||||
}
|
||||
|
||||
export function isIOS(): boolean {
|
||||
return inBrowser
|
||||
? /ios|iphone|ipad|ipod/.test(navigator.userAgent.toLowerCase())
|
||||
: false;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user