mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
export function isDef(value) {
|
|
return value !== undefined && value !== null;
|
|
}
|
|
export function isObj(x) {
|
|
const type = typeof x;
|
|
return x !== null && (type === 'object' || type === 'function');
|
|
}
|
|
export function isNumber(value) {
|
|
return /^\d+(\.\d+)?$/.test(value);
|
|
}
|
|
export function range(num, min, max) {
|
|
return Math.min(Math.max(num, min), max);
|
|
}
|
|
export function nextTick(fn) {
|
|
setTimeout(() => {
|
|
fn();
|
|
}, 1000 / 30);
|
|
}
|
|
let systemInfo;
|
|
export function getSystemInfoSync() {
|
|
if (systemInfo == null) {
|
|
systemInfo = wx.getSystemInfoSync();
|
|
}
|
|
return systemInfo;
|
|
}
|
|
export function addUnit(value) {
|
|
if (!isDef(value)) {
|
|
return undefined;
|
|
}
|
|
value = String(value);
|
|
return isNumber(value) ? `${value}px` : value;
|
|
}
|
|
export function requestAnimationFrame(cb) {
|
|
const systemInfo = getSystemInfoSync();
|
|
if (systemInfo.platform === 'devtools') {
|
|
return nextTick(cb);
|
|
}
|
|
return wx
|
|
.createSelectorQuery()
|
|
.selectViewport()
|
|
.boundingClientRect()
|
|
.exec(() => {
|
|
cb();
|
|
});
|
|
}
|
|
export function getRect(selector) {
|
|
return new Promise((resolve) => {
|
|
wx.createSelectorQuery()
|
|
.in(this)
|
|
.select(selector)
|
|
.boundingClientRect()
|
|
.exec((rect = []) => resolve(rect[0]));
|
|
});
|
|
}
|
|
export function getAllRect(selector) {
|
|
return new Promise((resolve) => {
|
|
wx.createSelectorQuery()
|
|
.in(this)
|
|
.selectAll(selector)
|
|
.boundingClientRect()
|
|
.exec((rect = []) => resolve(rect[0]));
|
|
});
|
|
}
|