From c0db43fc8821edfc455a0ec7ec1e4300f37be2a7 Mon Sep 17 00:00:00 2001 From: rex Date: Tue, 11 May 2021 15:24:04 +0800 Subject: [PATCH] feat(open-type): support getUserProfile (#4203) * chore(open-type): merge open type mixin into button mixin * chore(button): shorten open type method names * feat(open-type): support getUserProfile --- example/project.config.json | 7 +++-- packages/action-sheet/index.ts | 19 ++++++++++---- packages/action-sheet/index.wxml | 16 ++++++------ packages/button/index.ts | 20 ++++++++++----- packages/button/index.wxml | 16 ++++++------ packages/cell/index.wxml | 1 + packages/common/version.ts | 4 +++ packages/definitions/index.ts | 2 +- packages/dialog/index.ts | 5 ++-- packages/dialog/index.wxml | 24 ++++++++--------- packages/goods-action-button/index.ts | 3 +-- packages/goods-action-button/index.wxml | 12 ++++----- packages/goods-action-icon/index.ts | 3 +-- packages/goods-action-icon/index.wxml | 12 ++++----- packages/image/index.ts | 3 +-- packages/mixins/button.ts | 34 +++++++++++++++++++++++++ packages/mixins/open-type.ts | 33 ------------------------ 17 files changed, 117 insertions(+), 97 deletions(-) delete mode 100644 packages/mixins/open-type.ts diff --git a/example/project.config.json b/example/project.config.json index cd039eb6..187e5f0f 100644 --- a/example/project.config.json +++ b/example/project.config.json @@ -21,24 +21,27 @@ "checkSiteMap": true, "uploadWithSourceMap": true, "compileHotReLoad": false, - "useMultiFrameRuntime": false, + "useMultiFrameRuntime": true, "useApiHook": true, + "useApiHostProcess": false, "babelSetting": { "ignore": [], "disablePlugins": [], "outputPath": "" }, + "enableEngineNative": false, "bundle": false, "useIsolateContext": true, "useCompilerModule": true, "userConfirmedUseCompilerModuleSwitch": false, + "userConfirmedBundleSwitch": false, "packNpmManually": false, "packNpmRelationList": [], "minifyWXSS": true }, "compileType": "miniprogram", "cloudfunctionRoot": "functions/", - "libVersion": "2.3.0", + "libVersion": "2.3.2", "appid": "wx1c01b35002d3ba14", "projectname": "vant-weapp", "debugOptions": { diff --git a/packages/action-sheet/index.ts b/packages/action-sheet/index.ts index a539e980..4fa3583e 100644 --- a/packages/action-sheet/index.ts +++ b/packages/action-sheet/index.ts @@ -1,9 +1,8 @@ import { VantComponent } from '../common/component'; import { button } from '../mixins/button'; -import { openType } from '../mixins/open-type'; VantComponent({ - mixins: [button, openType], + mixins: [button], props: { show: Boolean, title: String, @@ -42,13 +41,23 @@ VantComponent({ methods: { onSelect(event: WechatMiniprogram.TouchEvent) { const { index } = event.currentTarget.dataset; - const item = this.data.actions[index]; - if (item && !item.disabled && !item.loading) { + const { actions, closeOnClickAction, canIUseGetUserProfile } = this.data; + const item = actions[index]; + if (item) { this.$emit('select', item); - if (this.data.closeOnClickAction) { + if (closeOnClickAction) { this.onClose(); } + + if (item.openType === 'getUserInfo' && canIUseGetUserProfile) { + wx.getUserProfile({ + desc: item.getUserProfileDesc || ' ', + complete: (userProfile) => { + this.$emit('getuserinfo', userProfile); + }, + }); + } } }, diff --git a/packages/action-sheet/index.wxml b/packages/action-sheet/index.wxml index c2bebcac..24d24ac6 100644 --- a/packages/action-sheet/index.wxml +++ b/packages/action-sheet/index.wxml @@ -27,18 +27,18 @@