chore(utils): fix circular dependency (#12110)

* chore: fix circular dependency

* chore: fix

* chore: fix test
This commit is contained in:
neverland 2023-07-22 13:03:48 +08:00 committed by GitHub
parent 78064c6fd2
commit b601ca1e0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 57 additions and 60 deletions

View File

@ -1,4 +1,3 @@
import { isObject } from './validate';
import type { ComponentPublicInstance } from 'vue'; import type { ComponentPublicInstance } from 'vue';
export function noop() {} export function noop() {}
@ -12,6 +11,38 @@ export type Numeric = number | string;
// eslint-disable-next-line // eslint-disable-next-line
export type ComponentInstance = ComponentPublicInstance<{}, any>; export type ComponentInstance = ComponentPublicInstance<{}, any>;
export const isObject = (val: unknown): val is Record<any, any> =>
val !== null && typeof val === 'object';
export const isDef = <T>(val: T): val is NonNullable<T> =>
val !== undefined && val !== null;
// eslint-disable-next-line @typescript-eslint/ban-types
export const isFunction = (val: unknown): val is Function =>
typeof val === 'function';
export const isPromise = <T = any>(val: unknown): val is Promise<T> =>
isObject(val) && isFunction(val.then) && isFunction(val.catch);
export const isDate = (val: unknown): val is Date =>
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 const isNumeric = (val: Numeric): val is string =>
typeof val === 'number' || /^\d+(\.\d+)?$/.test(val);
export const isIOS = (): boolean =>
inBrowser
? /ios|iphone|ipad|ipod/.test(navigator.userAgent.toLowerCase())
: false;
export function get(object: any, path: string): any { export function get(object: any, path: string): any {
const keys = path.split('.'); const keys = path.split('.');
let result = object; let result = object;
@ -32,14 +63,17 @@ export type RequiredParams<T> = T extends (...args: infer P) => infer R
export function pick<T, U extends keyof T>( export function pick<T, U extends keyof T>(
obj: T, obj: T,
keys: ReadonlyArray<U>, keys: ReadonlyArray<U>,
ignoreUndefined?: boolean ignoreUndefined?: boolean,
) { ) {
return keys.reduce((ret, key) => { return keys.reduce(
if (!ignoreUndefined || obj[key] !== undefined) { (ret, key) => {
ret[key] = obj[key]; if (!ignoreUndefined || obj[key] !== undefined) {
} ret[key] = obj[key];
return ret; }
}, {} as Writeable<Pick<T, U>>); return ret;
},
{} as Writeable<Pick<T, U>>,
);
} }
export const isSameValue = (newValue: unknown, oldValue: unknown) => export const isSameValue = (newValue: unknown, oldValue: unknown) =>

View File

@ -1,6 +1,5 @@
import { get } from './basic'; import { get, isFunction } from './basic';
import { camelize } from './format'; import { camelize } from './format';
import { isFunction } from './validate';
import locale from '../locale'; import locale from '../locale';
export function createTranslate(name: string) { export function createTranslate(name: string) {
@ -31,13 +30,13 @@ function genBem(name: string, mods?: Mods): string {
if (Array.isArray(mods)) { if (Array.isArray(mods)) {
return (mods as Mod[]).reduce<string>( return (mods as Mod[]).reduce<string>(
(ret, item) => ret + genBem(name, item), (ret, item) => ret + genBem(name, item),
'' '',
); );
} }
return Object.keys(mods).reduce( return Object.keys(mods).reduce(
(ret, key) => ret + (mods[key] ? genBem(name, key) : ''), (ret, key) => ret + (mods[key] ? genBem(name, key) : ''),
'' '',
); );
} }

View File

@ -1,4 +1,4 @@
import { isDef, isObject } from './validate'; import { isDef, isObject } from './basic';
type ObjectIndex = Record<string, unknown>; type ObjectIndex = Record<string, unknown>;

View File

@ -1,7 +1,7 @@
import { isDef, isObject } from './validate'; import { isDef, isObject } from './basic';
export function deepClone<T extends Record<string, any> | null | undefined>( export function deepClone<T extends Record<string, any> | null | undefined>(
obj: T obj: T,
): T { ): T {
if (!isDef(obj)) { if (!isDef(obj)) {
return obj; return obj;

View File

@ -1,6 +1,6 @@
import { useRect, useWindowSize } from '@vant/use'; import { useRect, useWindowSize } from '@vant/use';
import { unref, Ref } from 'vue'; import { unref, Ref } from 'vue';
import { isIOS as checkIsIOS } from './validate'; import { isIOS as checkIsIOS } from './basic';
export type ScrollElement = Element | Window; export type ScrollElement = Element | Window;
@ -67,7 +67,7 @@ export function preventDefault(event: Event, isStopPropagation?: boolean) {
} }
export function isHidden( export function isHidden(
elementRef: HTMLElement | Ref<HTMLElement | undefined> elementRef: HTMLElement | Ref<HTMLElement | undefined>,
) { ) {
const el = unref(elementRef); const el = unref(elementRef);
if (!el) { if (!el) {

View File

@ -1,7 +1,7 @@
import type { CSSProperties } from 'vue'; import type { CSSProperties } from 'vue';
import { inBrowser, type Numeric } from './basic'; import { inBrowser, type Numeric } from './basic';
import { windowWidth, windowHeight } from './dom'; import { windowWidth, windowHeight } from './dom';
import { isDef, isNumeric } from './validate'; import { isDef, isNumeric } from './basic';
export function addUnit(value?: Numeric): string | undefined { export function addUnit(value?: Numeric): string | undefined {
if (isDef(value)) { if (isDef(value)) {
@ -11,7 +11,7 @@ export function addUnit(value?: Numeric): string | undefined {
} }
export function getSizeStyle( export function getSizeStyle(
originSize?: Numeric | Numeric[] originSize?: Numeric | Numeric[],
): CSSProperties | undefined { ): CSSProperties | undefined {
if (isDef(originSize)) { if (isDef(originSize)) {
if (Array.isArray(originSize)) { if (Array.isArray(originSize)) {
@ -128,7 +128,7 @@ function trimExtraChar(value: string, char: string, regExp: RegExp) {
export function formatNumber( export function formatNumber(
value: string, value: string,
allowDot = true, allowDot = true,
allowMinus = true allowMinus = true,
) { ) {
if (allowDot) { if (allowDot) {
value = trimExtraChar(value, '.', /\./g); value = trimExtraChar(value, '.', /\./g);

View File

@ -4,7 +4,6 @@ export * from './dom';
export * from './create'; export * from './create';
export * from './format'; export * from './format';
export * from './constant'; export * from './constant';
export * from './validate';
export * from './interceptor'; export * from './interceptor';
export * from './with-install'; export * from './with-install';
export * from './closest'; export * from './closest';

View File

@ -1,5 +1,4 @@
import { noop } from './basic'; import { noop, isPromise } from './basic';
import { isPromise } from './validate';
export type Interceptor = ( export type Interceptor = (
...args: any[] ...args: any[]
@ -15,7 +14,7 @@ export function callInterceptor(
args?: unknown[]; args?: unknown[];
done: () => void; done: () => void;
canceled?: () => void; canceled?: () => void;
} },
) { ) {
if (interceptor) { if (interceptor) {
// eslint-disable-next-line prefer-spread // eslint-disable-next-line prefer-spread

View File

@ -1,7 +1,6 @@
import { get, noop } from '../basic'; import { get, noop, isDef, isMobile, isNumeric } from '../basic';
import { deepClone } from '../deep-clone'; import { deepClone } from '../deep-clone';
import { deepAssign } from '../deep-assign'; import { deepAssign } from '../deep-assign';
import { isDef, isMobile, isNumeric } from '../validate';
import { addUnit, unitToPx, camelize, formatNumber } from '../format'; import { addUnit, unitToPx, camelize, formatNumber } from '../format';
import { trigger } from '../../../test'; import { trigger } from '../../../test';
@ -23,7 +22,7 @@ test('deepAssign', () => {
expect(deepAssign({ noop: null }, { noop })).toEqual({ noop }); expect(deepAssign({ noop: null }, { noop })).toEqual({ noop });
expect(deepAssign({ foo: 0 }, { bar: 1 })).toEqual({ foo: 0, bar: 1 }); expect(deepAssign({ foo: 0 }, { bar: 1 })).toEqual({ foo: 0, bar: 1 });
expect( expect(
deepAssign({ foo: { bar: false } }, { foo: { bar: true, foo: false } }) deepAssign({ foo: { bar: false } }, { foo: { bar: true, foo: false } }),
).toEqual({ ).toEqual({
foo: { foo: {
bar: true, bar: true,

View File

@ -1,33 +0,0 @@
import { inBrowser, type Numeric } from './basic';
export const isDef = <T>(val: T): val is NonNullable<T> =>
val !== undefined && val !== null;
// eslint-disable-next-line @typescript-eslint/ban-types
export const isFunction = (val: unknown): val is Function =>
typeof val === 'function';
export const isObject = (val: unknown): val is Record<any, any> =>
val !== null && typeof val === 'object';
export const isPromise = <T = any>(val: unknown): val is Promise<T> =>
isObject(val) && isFunction(val.then) && isFunction(val.catch);
export const isDate = (val: unknown): val is Date =>
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 const isNumeric = (val: Numeric): val is string =>
typeof val === 'number' || /^\d+(\.\d+)?$/.test(val);
export const isIOS = (): boolean =>
inBrowser
? /ios|iphone|ipad|ipod/.test(navigator.userAgent.toLowerCase())
: false;