mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
121 lines
2.7 KiB
TypeScript
121 lines
2.7 KiB
TypeScript
import { isDef, isNumber, isPlainObject, isPromise } from './validator';
|
|
import {
|
|
canIUseGroupSetData,
|
|
canIUseNextTick,
|
|
getSystemInfoSync,
|
|
} from './version';
|
|
|
|
export { isDef } from './validator';
|
|
export { getSystemInfoSync } from './version';
|
|
|
|
export function range(num: number, min: number, max: number) {
|
|
return Math.min(Math.max(num, min), max);
|
|
}
|
|
|
|
export function nextTick(cb: (...args: any[]) => void) {
|
|
if (canIUseNextTick()) {
|
|
wx.nextTick(cb);
|
|
} else {
|
|
setTimeout(() => {
|
|
cb();
|
|
}, 1000 / 30);
|
|
}
|
|
}
|
|
|
|
export function addUnit(value?: string | number): string | undefined {
|
|
if (!isDef(value)) {
|
|
return undefined;
|
|
}
|
|
|
|
value = String(value);
|
|
return isNumber(value) ? `${value}px` : value;
|
|
}
|
|
|
|
export function requestAnimationFrame(cb: () => void) {
|
|
return setTimeout(() => {
|
|
cb();
|
|
}, 1000 / 30);
|
|
}
|
|
|
|
export function pickExclude(obj: unknown, keys: string[]) {
|
|
if (!isPlainObject(obj)) {
|
|
return {};
|
|
}
|
|
|
|
return Object.keys(obj).reduce((prev, key) => {
|
|
if (!keys.includes(key)) {
|
|
prev[key] = obj[key];
|
|
}
|
|
|
|
return prev;
|
|
}, {});
|
|
}
|
|
|
|
export function getRect(
|
|
context: WechatMiniprogram.Component.TrivialInstance,
|
|
selector: string
|
|
) {
|
|
return new Promise<WechatMiniprogram.BoundingClientRectCallbackResult>(
|
|
(resolve) => {
|
|
wx.createSelectorQuery()
|
|
.in(context)
|
|
.select(selector)
|
|
.boundingClientRect()
|
|
.exec((rect = []) => resolve(rect[0]));
|
|
}
|
|
);
|
|
}
|
|
|
|
export function getAllRect(
|
|
context: WechatMiniprogram.Component.TrivialInstance,
|
|
selector: string
|
|
) {
|
|
return new Promise<WechatMiniprogram.BoundingClientRectCallbackResult[]>(
|
|
(resolve) => {
|
|
wx.createSelectorQuery()
|
|
.in(context)
|
|
.selectAll(selector)
|
|
.boundingClientRect()
|
|
.exec((rect = []) => resolve(rect[0]));
|
|
}
|
|
);
|
|
}
|
|
|
|
export function groupSetData(
|
|
context: WechatMiniprogram.Component.TrivialInstance,
|
|
cb: () => void
|
|
) {
|
|
if (canIUseGroupSetData()) {
|
|
context.groupSetData(cb);
|
|
} else {
|
|
cb();
|
|
}
|
|
}
|
|
|
|
export function toPromise(promiseLike: Promise<unknown> | unknown) {
|
|
if (isPromise(promiseLike)) {
|
|
return promiseLike;
|
|
}
|
|
|
|
return Promise.resolve(promiseLike);
|
|
}
|
|
|
|
// 浮点数精度处理
|
|
export function addNumber(num1, num2) {
|
|
const cardinal = 10 ** 10;
|
|
return Math.round((num1 + num2) * cardinal) / cardinal;
|
|
}
|
|
|
|
// 限制value在[min, max]之间
|
|
export const clamp = (num, min, max) => Math.min(Math.max(num, min), max);
|
|
|
|
export function getCurrentPage<T>() {
|
|
const pages = getCurrentPages();
|
|
return pages[pages.length - 1] as T & WechatMiniprogram.Page.TrivialInstance;
|
|
}
|
|
|
|
export const isPC = ['mac', 'windows'].includes(getSystemInfoSync().platform);
|
|
|
|
// 是否企业微信
|
|
export const isWxWork = getSystemInfoSync().environment === 'wxwork';
|