diff --git a/.npmrc b/.npmrc index 5e4086a7..38f11c64 100644 --- a/.npmrc +++ b/.npmrc @@ -1 +1 @@ -registry=https://registry.npmmirror.com/ +registry=https://registry.npmjs.org diff --git a/dist/button/index.wxml b/dist/button/index.wxml index beb46cd4..b5abebbd 100644 --- a/dist/button/index.wxml +++ b/dist/button/index.wxml @@ -5,7 +5,7 @@ id="{{ id }}" data-detail="{{ dataset }}" class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) }} {{ hairline ? 'van-hairline--surround' : '' }}" - hover-class="van-button--active hover-class" + hover-class="{{ disabled || loading ? '' : 'van-button--active hover-class'}}" lang="{{ lang }}" form-type="{{ formType }}" style="{{ computed.rootStyle({ plain, color, customStyle }) }}" diff --git a/dist/calendar/utils.d.ts b/dist/calendar/utils.d.ts index eb710c09..889e6e78 100644 --- a/dist/calendar/utils.d.ts +++ b/dist/calendar/utils.d.ts @@ -1,7 +1,7 @@ export declare const ROW_HEIGHT = 64; export declare function formatMonthTitle(date: Date): string; -export declare function compareMonth(date1: Date | number, date2: Date | number): 1 | -1 | 0; -export declare function compareDay(day1: Date | number, day2: Date | number): 1 | -1 | 0; +export declare function compareMonth(date1: Date | number, date2: Date | number): 0 | 1 | -1; +export declare function compareDay(day1: Date | number, day2: Date | number): 0 | 1 | -1; export declare function getDayByOffset(date: Date, offset: number): Date; export declare function getPrevDay(date: Date): Date; export declare function getNextDay(date: Date): Date; diff --git a/dist/common/utils.d.ts b/dist/common/utils.d.ts index ed4add6c..b6532f95 100644 --- a/dist/common/utils.d.ts +++ b/dist/common/utils.d.ts @@ -1,12 +1,12 @@ -/// /// /// /// /// +/// export { isDef } from './validator'; +export { getSystemInfoSync } from './version'; export declare function range(num: number, min: number, max: number): number; export declare function nextTick(cb: (...args: any[]) => void): void; -export declare function getSystemInfoSync(): WechatMiniprogram.SystemInfo; export declare function addUnit(value?: string | number): string | undefined; export declare function requestAnimationFrame(cb: () => void): NodeJS.Timeout | WechatMiniprogram.NodesRef; export declare function pickExclude(obj: unknown, keys: string[]): {}; diff --git a/dist/common/utils.js b/dist/common/utils.js index d06acb14..9918f48f 100644 --- a/dist/common/utils.js +++ b/dist/common/utils.js @@ -1,6 +1,7 @@ import { isDef, isNumber, isPlainObject, isPromise } from './validator'; -import { canIUseGroupSetData, canIUseNextTick } from './version'; +import { canIUseGroupSetData, canIUseNextTick, getSystemInfoSync } from './version'; export { isDef } from './validator'; +export { getSystemInfoSync } from './version'; export function range(num, min, max) { return Math.min(Math.max(num, min), max); } @@ -14,13 +15,6 @@ export function nextTick(cb) { }, 1000 / 30); } } -let systemInfo; -export function getSystemInfoSync() { - if (systemInfo == null) { - systemInfo = wx.getSystemInfoSync(); - } - return systemInfo; -} export function addUnit(value) { if (!isDef(value)) { return undefined; diff --git a/dist/common/version.d.ts b/dist/common/version.d.ts index 988b2264..71422018 100644 --- a/dist/common/version.d.ts +++ b/dist/common/version.d.ts @@ -1,3 +1,5 @@ +/// +export declare function getSystemInfoSync(): WechatMiniprogram.SystemInfo; export declare function canIUseModel(): boolean; export declare function canIUseFormFieldButton(): boolean; export declare function canIUseAnimate(): boolean; diff --git a/dist/common/version.js b/dist/common/version.js index eb851856..c675e1f4 100644 --- a/dist/common/version.js +++ b/dist/common/version.js @@ -1,4 +1,10 @@ -import { getSystemInfoSync } from './utils'; +let systemInfo; +export function getSystemInfoSync() { + if (systemInfo == null) { + systemInfo = wx.getSystemInfoSync(); + } + return systemInfo; +} function compareVersion(v1, v2) { v1 = v1.split('.'); v2 = v2.split('.'); @@ -38,7 +44,12 @@ export function canIUseGroupSetData() { return gte('2.4.0'); } export function canIUseNextTick() { - return wx.canIUse('nextTick'); + try { + return wx.canIUse('nextTick'); + } + catch (e) { + return gte('2.7.1'); + } } export function canIUseCanvas2d() { return gte('2.9.0'); diff --git a/dist/dialog/dialog.d.ts b/dist/dialog/dialog.d.ts index 8726f6cc..bb00408f 100644 --- a/dist/dialog/dialog.d.ts +++ b/dist/dialog/dialog.d.ts @@ -1,6 +1,7 @@ /// /// export declare type Action = 'confirm' | 'cancel' | 'overlay'; +declare type DialogContext = WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance; interface DialogOptions { lang?: string; show?: boolean; @@ -8,7 +9,7 @@ interface DialogOptions { width?: string | number | null; zIndex?: number; theme?: string; - context?: WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance; + context?: (() => DialogContext) | DialogContext; message?: string; overlay?: boolean; selector?: string; diff --git a/dist/dialog/dialog.js b/dist/dialog/dialog.js index 0b72feca..a96ec08c 100644 --- a/dist/dialog/dialog.js +++ b/dist/dialog/dialog.js @@ -30,7 +30,9 @@ function getContext() { const Dialog = (options) => { options = Object.assign(Object.assign({}, currentOptions), options); return new Promise((resolve, reject) => { - const context = options.context || getContext(); + const context = (typeof options.context === 'function' + ? options.context() + : options.context) || getContext(); const dialog = context.selectComponent(options.selector); delete options.context; delete options.selector; diff --git a/dist/mixins/page-scroll.d.ts b/dist/mixins/page-scroll.d.ts index 16d17d33..9fab3e2a 100644 --- a/dist/mixins/page-scroll.d.ts +++ b/dist/mixins/page-scroll.d.ts @@ -2,5 +2,5 @@ /// declare type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption; declare type Scroller = (this: WechatMiniprogram.Component.TrivialInstance, event?: IPageScrollOption) => void; -export declare const pageScrollMixin: (scroller: Scroller) => string; +export declare function pageScrollMixin(scroller: Scroller): string; export {}; diff --git a/dist/mixins/page-scroll.js b/dist/mixins/page-scroll.js index 0a0a561e..c1e5614b 100644 --- a/dist/mixins/page-scroll.js +++ b/dist/mixins/page-scroll.js @@ -1,3 +1,4 @@ +import { isFunction } from '../common/validator'; import { getCurrentPage, isDef } from '../common/utils'; function onPageScroll(event) { const { vanPageScroller = [] } = getCurrentPage(); @@ -8,29 +9,34 @@ function onPageScroll(event) { } }); } -export const pageScrollMixin = (scroller) => Behavior({ - attached() { - const page = getCurrentPage(); - if (!isDef(page)) { - return; - } - if (Array.isArray(page.vanPageScroller)) { - page.vanPageScroller.push(scroller.bind(this)); - } - else { - page.vanPageScroller = - typeof page.onPageScroll === 'function' - ? [page.onPageScroll.bind(page), scroller.bind(this)] - : [scroller.bind(this)]; - } - page.onPageScroll = onPageScroll; - }, - detached() { - var _a; - const page = getCurrentPage(); - if (isDef(page)) { - page.vanPageScroller = - ((_a = page.vanPageScroller) === null || _a === void 0 ? void 0 : _a.filter((item) => item !== scroller)) || []; - } - }, -}); +export function pageScrollMixin(scroller) { + return Behavior({ + attached() { + const page = getCurrentPage(); + if (!isDef(page)) { + return; + } + const _scroller = scroller.bind(this); + const { vanPageScroller = [] } = page; + if (!vanPageScroller.length && isFunction(page.onPageScroll)) { + vanPageScroller.push(page.onPageScroll.bind(page)); + } + vanPageScroller.push(_scroller); + page.vanPageScroller = vanPageScroller; + page.onPageScroll = onPageScroll; + this._scroller = _scroller; + }, + detached() { + const page = getCurrentPage(); + if (!isDef(page) || !isDef(page.vanPageScroller)) { + return; + } + const { vanPageScroller } = page; + const index = vanPageScroller.findIndex(v => v === this._scroller); + if (index > -1) { + page.vanPageScroller.splice(index, 1); + } + this._scroller = undefined; + }, + }); +} diff --git a/dist/overlay/index.wxml b/dist/overlay/index.wxml index 92734a0c..4ac2c6dd 100644 --- a/dist/overlay/index.wxml +++ b/dist/overlay/index.wxml @@ -1,7 +1,7 @@ /// /// /// /// +/// export { isDef } from './validator'; +export { getSystemInfoSync } from './version'; export declare function range(num: number, min: number, max: number): number; export declare function nextTick(cb: (...args: any[]) => void): void; -export declare function getSystemInfoSync(): WechatMiniprogram.SystemInfo; export declare function addUnit(value?: string | number): string | undefined; export declare function requestAnimationFrame(cb: () => void): NodeJS.Timeout | WechatMiniprogram.NodesRef; export declare function pickExclude(obj: unknown, keys: string[]): {}; diff --git a/lib/common/utils.js b/lib/common/utils.js index 8966b001..bcc85c45 100644 --- a/lib/common/utils.js +++ b/lib/common/utils.js @@ -1,10 +1,12 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -exports.getCurrentPage = exports.toPromise = exports.groupSetData = exports.getAllRect = exports.getRect = exports.pickExclude = exports.requestAnimationFrame = exports.addUnit = exports.getSystemInfoSync = exports.nextTick = exports.range = exports.isDef = void 0; +exports.getCurrentPage = exports.toPromise = exports.groupSetData = exports.getAllRect = exports.getRect = exports.pickExclude = exports.requestAnimationFrame = exports.addUnit = exports.nextTick = exports.range = exports.getSystemInfoSync = exports.isDef = void 0; var validator_1 = require("./validator"); var version_1 = require("./version"); var validator_2 = require("./validator"); Object.defineProperty(exports, "isDef", { enumerable: true, get: function () { return validator_2.isDef; } }); +var version_2 = require("./version"); +Object.defineProperty(exports, "getSystemInfoSync", { enumerable: true, get: function () { return version_2.getSystemInfoSync; } }); function range(num, min, max) { return Math.min(Math.max(num, min), max); } @@ -20,14 +22,6 @@ function nextTick(cb) { } } exports.nextTick = nextTick; -var systemInfo; -function getSystemInfoSync() { - if (systemInfo == null) { - systemInfo = wx.getSystemInfoSync(); - } - return systemInfo; -} -exports.getSystemInfoSync = getSystemInfoSync; function addUnit(value) { if (!(0, validator_1.isDef)(value)) { return undefined; @@ -37,7 +31,7 @@ function addUnit(value) { } exports.addUnit = addUnit; function requestAnimationFrame(cb) { - var systemInfo = getSystemInfoSync(); + var systemInfo = (0, version_1.getSystemInfoSync)(); if (systemInfo.platform === 'devtools') { return setTimeout(function () { cb(); diff --git a/lib/common/version.d.ts b/lib/common/version.d.ts index 988b2264..71422018 100644 --- a/lib/common/version.d.ts +++ b/lib/common/version.d.ts @@ -1,3 +1,5 @@ +/// +export declare function getSystemInfoSync(): WechatMiniprogram.SystemInfo; export declare function canIUseModel(): boolean; export declare function canIUseFormFieldButton(): boolean; export declare function canIUseAnimate(): boolean; diff --git a/lib/common/version.js b/lib/common/version.js index 1e49e30d..59370086 100644 --- a/lib/common/version.js +++ b/lib/common/version.js @@ -1,7 +1,14 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -exports.canIUseGetUserProfile = exports.canIUseCanvas2d = exports.canIUseNextTick = exports.canIUseGroupSetData = exports.canIUseAnimate = exports.canIUseFormFieldButton = exports.canIUseModel = void 0; -var utils_1 = require("./utils"); +exports.canIUseGetUserProfile = exports.canIUseCanvas2d = exports.canIUseNextTick = exports.canIUseGroupSetData = exports.canIUseAnimate = exports.canIUseFormFieldButton = exports.canIUseModel = exports.getSystemInfoSync = void 0; +var systemInfo; +function getSystemInfoSync() { + if (systemInfo == null) { + systemInfo = wx.getSystemInfoSync(); + } + return systemInfo; +} +exports.getSystemInfoSync = getSystemInfoSync; function compareVersion(v1, v2) { v1 = v1.split('.'); v2 = v2.split('.'); @@ -25,7 +32,7 @@ function compareVersion(v1, v2) { return 0; } function gte(version) { - var system = (0, utils_1.getSystemInfoSync)(); + var system = getSystemInfoSync(); return compareVersion(system.SDKVersion, version) >= 0; } function canIUseModel() { @@ -45,7 +52,12 @@ function canIUseGroupSetData() { } exports.canIUseGroupSetData = canIUseGroupSetData; function canIUseNextTick() { - return wx.canIUse('nextTick'); + try { + return wx.canIUse('nextTick'); + } + catch (e) { + return gte('2.7.1'); + } } exports.canIUseNextTick = canIUseNextTick; function canIUseCanvas2d() { diff --git a/lib/dialog/dialog.d.ts b/lib/dialog/dialog.d.ts index 8726f6cc..bb00408f 100644 --- a/lib/dialog/dialog.d.ts +++ b/lib/dialog/dialog.d.ts @@ -1,6 +1,7 @@ /// /// export declare type Action = 'confirm' | 'cancel' | 'overlay'; +declare type DialogContext = WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance; interface DialogOptions { lang?: string; show?: boolean; @@ -8,7 +9,7 @@ interface DialogOptions { width?: string | number | null; zIndex?: number; theme?: string; - context?: WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance; + context?: (() => DialogContext) | DialogContext; message?: string; overlay?: boolean; selector?: string; diff --git a/lib/dialog/dialog.js b/lib/dialog/dialog.js index 0cba6ab4..400f4f1b 100644 --- a/lib/dialog/dialog.js +++ b/lib/dialog/dialog.js @@ -43,7 +43,9 @@ function getContext() { var Dialog = function (options) { options = __assign(__assign({}, currentOptions), options); return new Promise(function (resolve, reject) { - var context = options.context || getContext(); + var context = (typeof options.context === 'function' + ? options.context() + : options.context) || getContext(); var dialog = context.selectComponent(options.selector); delete options.context; delete options.selector; diff --git a/lib/mixins/page-scroll.d.ts b/lib/mixins/page-scroll.d.ts index 16d17d33..9fab3e2a 100644 --- a/lib/mixins/page-scroll.d.ts +++ b/lib/mixins/page-scroll.d.ts @@ -2,5 +2,5 @@ /// declare type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption; declare type Scroller = (this: WechatMiniprogram.Component.TrivialInstance, event?: IPageScrollOption) => void; -export declare const pageScrollMixin: (scroller: Scroller) => string; +export declare function pageScrollMixin(scroller: Scroller): string; export {}; diff --git a/lib/mixins/page-scroll.js b/lib/mixins/page-scroll.js index 6857a974..d6a3794f 100644 --- a/lib/mixins/page-scroll.js +++ b/lib/mixins/page-scroll.js @@ -1,6 +1,7 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.pageScrollMixin = void 0; +var validator_1 = require("../common/validator"); var utils_1 = require("../common/utils"); function onPageScroll(event) { var _a = (0, utils_1.getCurrentPage)().vanPageScroller, vanPageScroller = _a === void 0 ? [] : _a; @@ -11,32 +12,36 @@ function onPageScroll(event) { } }); } -var pageScrollMixin = function (scroller) { +function pageScrollMixin(scroller) { return Behavior({ attached: function () { var page = (0, utils_1.getCurrentPage)(); if (!(0, utils_1.isDef)(page)) { return; } - if (Array.isArray(page.vanPageScroller)) { - page.vanPageScroller.push(scroller.bind(this)); - } - else { - page.vanPageScroller = - typeof page.onPageScroll === 'function' - ? [page.onPageScroll.bind(page), scroller.bind(this)] - : [scroller.bind(this)]; + var _scroller = scroller.bind(this); + var _a = page.vanPageScroller, vanPageScroller = _a === void 0 ? [] : _a; + if (!vanPageScroller.length && (0, validator_1.isFunction)(page.onPageScroll)) { + vanPageScroller.push(page.onPageScroll.bind(page)); } + vanPageScroller.push(_scroller); + page.vanPageScroller = vanPageScroller; page.onPageScroll = onPageScroll; + this._scroller = _scroller; }, detached: function () { - var _a; + var _this = this; var page = (0, utils_1.getCurrentPage)(); - if ((0, utils_1.isDef)(page)) { - page.vanPageScroller = - ((_a = page.vanPageScroller) === null || _a === void 0 ? void 0 : _a.filter(function (item) { return item !== scroller; })) || []; + if (!(0, utils_1.isDef)(page) || !(0, utils_1.isDef)(page.vanPageScroller)) { + return; } + var vanPageScroller = page.vanPageScroller; + var index = vanPageScroller.findIndex(function (v) { return v === _this._scroller; }); + if (index > -1) { + page.vanPageScroller.splice(index, 1); + } + this._scroller = undefined; }, }); -}; +} exports.pageScrollMixin = pageScrollMixin; diff --git a/lib/overlay/index.wxml b/lib/overlay/index.wxml index 92734a0c..4ac2c6dd 100644 --- a/lib/overlay/index.wxml +++ b/lib/overlay/index.wxml @@ -1,7 +1,7 @@