mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
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
This commit is contained in:
parent
44da05bec4
commit
c0db43fc88
@ -21,24 +21,27 @@
|
|||||||
"checkSiteMap": true,
|
"checkSiteMap": true,
|
||||||
"uploadWithSourceMap": true,
|
"uploadWithSourceMap": true,
|
||||||
"compileHotReLoad": false,
|
"compileHotReLoad": false,
|
||||||
"useMultiFrameRuntime": false,
|
"useMultiFrameRuntime": true,
|
||||||
"useApiHook": true,
|
"useApiHook": true,
|
||||||
|
"useApiHostProcess": false,
|
||||||
"babelSetting": {
|
"babelSetting": {
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"disablePlugins": [],
|
"disablePlugins": [],
|
||||||
"outputPath": ""
|
"outputPath": ""
|
||||||
},
|
},
|
||||||
|
"enableEngineNative": false,
|
||||||
"bundle": false,
|
"bundle": false,
|
||||||
"useIsolateContext": true,
|
"useIsolateContext": true,
|
||||||
"useCompilerModule": true,
|
"useCompilerModule": true,
|
||||||
"userConfirmedUseCompilerModuleSwitch": false,
|
"userConfirmedUseCompilerModuleSwitch": false,
|
||||||
|
"userConfirmedBundleSwitch": false,
|
||||||
"packNpmManually": false,
|
"packNpmManually": false,
|
||||||
"packNpmRelationList": [],
|
"packNpmRelationList": [],
|
||||||
"minifyWXSS": true
|
"minifyWXSS": true
|
||||||
},
|
},
|
||||||
"compileType": "miniprogram",
|
"compileType": "miniprogram",
|
||||||
"cloudfunctionRoot": "functions/",
|
"cloudfunctionRoot": "functions/",
|
||||||
"libVersion": "2.3.0",
|
"libVersion": "2.3.2",
|
||||||
"appid": "wx1c01b35002d3ba14",
|
"appid": "wx1c01b35002d3ba14",
|
||||||
"projectname": "vant-weapp",
|
"projectname": "vant-weapp",
|
||||||
"debugOptions": {
|
"debugOptions": {
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { button } from '../mixins/button';
|
import { button } from '../mixins/button';
|
||||||
import { openType } from '../mixins/open-type';
|
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
mixins: [button, openType],
|
mixins: [button],
|
||||||
props: {
|
props: {
|
||||||
show: Boolean,
|
show: Boolean,
|
||||||
title: String,
|
title: String,
|
||||||
@ -42,13 +41,23 @@ VantComponent({
|
|||||||
methods: {
|
methods: {
|
||||||
onSelect(event: WechatMiniprogram.TouchEvent) {
|
onSelect(event: WechatMiniprogram.TouchEvent) {
|
||||||
const { index } = event.currentTarget.dataset;
|
const { index } = event.currentTarget.dataset;
|
||||||
const item = this.data.actions[index];
|
const { actions, closeOnClickAction, canIUseGetUserProfile } = this.data;
|
||||||
if (item && !item.disabled && !item.loading) {
|
const item = actions[index];
|
||||||
|
if (item) {
|
||||||
this.$emit('select', item);
|
this.$emit('select', item);
|
||||||
|
|
||||||
if (this.data.closeOnClickAction) {
|
if (closeOnClickAction) {
|
||||||
this.onClose();
|
this.onClose();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (item.openType === 'getUserInfo' && canIUseGetUserProfile) {
|
||||||
|
wx.getUserProfile({
|
||||||
|
desc: item.getUserProfileDesc || ' ',
|
||||||
|
complete: (userProfile) => {
|
||||||
|
this.$emit('getuserinfo', userProfile);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -27,18 +27,18 @@
|
|||||||
<button
|
<button
|
||||||
wx:for="{{ actions }}"
|
wx:for="{{ actions }}"
|
||||||
wx:key="index"
|
wx:key="index"
|
||||||
open-type="{{ item.openType }}"
|
open-type="{{ item.disabled || item.loading || canIUseGetUserProfile ? '' : item.openType }}"
|
||||||
style="{{ item.color ? 'color: ' + item.color : '' }}"
|
style="{{ item.color ? 'color: ' + item.color : '' }}"
|
||||||
class="{{ utils.bem('action-sheet__item', { disabled: item.disabled || item.loading }) }} {{ item.className || '' }}"
|
class="{{ utils.bem('action-sheet__item', { disabled: item.disabled || item.loading }) }} {{ item.className || '' }}"
|
||||||
hover-class="van-action-sheet__item--hover"
|
hover-class="van-action-sheet__item--hover"
|
||||||
data-index="{{ index }}"
|
data-index="{{ index }}"
|
||||||
bind:tap="onSelect"
|
bindtap="{{ item.disabled || item.loading ? '' : 'onSelect' }}"
|
||||||
bindgetuserinfo="bindGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="bindContact"
|
bindcontact="onContact"
|
||||||
bindgetphonenumber="bindGetPhoneNumber"
|
bindgetphonenumber="onGetPhoneNumber"
|
||||||
binderror="bindError"
|
binderror="onError"
|
||||||
bindlaunchapp="bindLaunchApp"
|
bindlaunchapp="onLaunchApp"
|
||||||
bindopensetting="bindOpenSetting"
|
bindopensetting="onOpenSetting"
|
||||||
lang="{{ lang }}"
|
lang="{{ lang }}"
|
||||||
session-from="{{ sessionFrom }}"
|
session-from="{{ sessionFrom }}"
|
||||||
send-message-title="{{ sendMessageTitle }}"
|
send-message-title="{{ sendMessageTitle }}"
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { button } from '../mixins/button';
|
import { button } from '../mixins/button';
|
||||||
import { openType } from '../mixins/open-type';
|
|
||||||
import { canIUseFormFieldButton } from '../common/version';
|
import { canIUseFormFieldButton } from '../common/version';
|
||||||
|
|
||||||
const mixins = [button, openType];
|
const mixins = [button];
|
||||||
if (canIUseFormFieldButton()) {
|
if (canIUseFormFieldButton()) {
|
||||||
mixins.push('wx://form-field-button');
|
mixins.push('wx://form-field-button');
|
||||||
}
|
}
|
||||||
@ -54,12 +53,19 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClick() {
|
onClick(event: WechatMiniprogram.TouchEvent) {
|
||||||
if (!this.data.loading) {
|
this.$emit('click', event);
|
||||||
this.$emit('click');
|
|
||||||
|
const { canIUseGetUserProfile, openType, getUserProfileDesc } = this.data;
|
||||||
|
|
||||||
|
if (openType === 'getUserInfo' && canIUseGetUserProfile) {
|
||||||
|
wx.getUserProfile({
|
||||||
|
desc: getUserProfileDesc || ' ',
|
||||||
|
complete: (userProfile) => {
|
||||||
|
this.$emit('getuserinfo', userProfile);
|
||||||
|
},
|
||||||
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
noop() {},
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
lang="{{ lang }}"
|
lang="{{ lang }}"
|
||||||
form-type="{{ formType }}"
|
form-type="{{ formType }}"
|
||||||
style="{{ computed.rootStyle({ plain, color, customStyle }) }}"
|
style="{{ computed.rootStyle({ plain, color, customStyle }) }}"
|
||||||
open-type="{{ disabled ? '' : openType }}"
|
open-type="{{ disabled || loading || canIUseGetUserProfile ? '' : openType }}"
|
||||||
business-id="{{ businessId }}"
|
business-id="{{ businessId }}"
|
||||||
session-from="{{ sessionFrom }}"
|
session-from="{{ sessionFrom }}"
|
||||||
send-message-title="{{ sendMessageTitle }}"
|
send-message-title="{{ sendMessageTitle }}"
|
||||||
@ -18,13 +18,13 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
aria-label="{{ ariaLabel }}"
|
aria-label="{{ ariaLabel }}"
|
||||||
bindtap="{{ !disabled ? 'onClick' : 'noop' }}"
|
bindtap="{{ disabled || loading ? '' : 'onClick' }}"
|
||||||
bindgetuserinfo="bindGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="bindContact"
|
bindcontact="onContact"
|
||||||
bindgetphonenumber="bindGetPhoneNumber"
|
bindgetphonenumber="onGetPhoneNumber"
|
||||||
binderror="bindError"
|
binderror="onError"
|
||||||
bindlaunchapp="bindLaunchApp"
|
bindlaunchapp="onLaunchApp"
|
||||||
bindopensetting="bindOpenSetting"
|
bindopensetting="onOpenSetting"
|
||||||
>
|
>
|
||||||
<block wx:if="{{ loading }}">
|
<block wx:if="{{ loading }}">
|
||||||
<van-loading
|
<van-loading
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
style="{{ computed.titleStyle({ titleWidth, titleStyle }) }}"
|
style="{{ computed.titleStyle({ titleWidth, titleStyle }) }}"
|
||||||
class="van-cell__title title-class"
|
class="van-cell__title title-class"
|
||||||
>
|
>
|
||||||
|
|
||||||
<block wx:if="{{ title }}">{{ title }}</block>
|
<block wx:if="{{ title }}">{{ title }}</block>
|
||||||
<slot wx:else name="title" />
|
<slot wx:else name="title" />
|
||||||
|
|
||||||
|
@ -56,3 +56,7 @@ export function canIUseNextTick() {
|
|||||||
export function canIUseCanvas2d() {
|
export function canIUseCanvas2d() {
|
||||||
return gte('2.9.0');
|
return gte('2.9.0');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function canIUseGetUserProfile() {
|
||||||
|
return !!wx.getUserProfile;
|
||||||
|
}
|
||||||
|
@ -37,7 +37,7 @@ export type VantComponentOptions<
|
|||||||
Data & {
|
Data & {
|
||||||
name: string;
|
name: string;
|
||||||
value: any;
|
value: any;
|
||||||
},
|
} & Record<string, any>,
|
||||||
Props,
|
Props,
|
||||||
Methods
|
Methods
|
||||||
> &
|
> &
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { button } from '../mixins/button';
|
import { button } from '../mixins/button';
|
||||||
import { openType } from '../mixins/open-type';
|
|
||||||
import { GRAY, RED } from '../common/color';
|
import { GRAY, RED } from '../common/color';
|
||||||
import { toPromise } from '../common/utils';
|
import { toPromise } from '../common/utils';
|
||||||
import type { Action } from './dialog';
|
import type { Action } from './dialog';
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
mixins: [button, openType],
|
mixins: [button],
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
show: {
|
show: {
|
||||||
@ -75,7 +74,7 @@ VantComponent({
|
|||||||
callback: ((() => {}) as unknown) as (
|
callback: ((() => {}) as unknown) as (
|
||||||
action: string,
|
action: string,
|
||||||
context: WechatMiniprogram.Component.TrivialInstance
|
context: WechatMiniprogram.Component.TrivialInstance
|
||||||
) => {},
|
) => void,
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -58,12 +58,12 @@
|
|||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
|
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
bindgetuserinfo="bindGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="bindContact"
|
bindcontact="onContact"
|
||||||
bindgetphonenumber="bindGetPhoneNumber"
|
bindgetphonenumber="onGetPhoneNumber"
|
||||||
binderror="bindError"
|
binderror="onError"
|
||||||
bindlaunchapp="bindLaunchApp"
|
bindlaunchapp="onLaunchApp"
|
||||||
bindopensetting="bindOpenSetting"
|
bindopensetting="onOpenSetting"
|
||||||
>
|
>
|
||||||
{{ confirmButtonText }}
|
{{ confirmButtonText }}
|
||||||
</van-goods-action-button>
|
</van-goods-action-button>
|
||||||
@ -100,12 +100,12 @@
|
|||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
|
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
bindgetuserinfo="bindGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="bindContact"
|
bindcontact="onContact"
|
||||||
bindgetphonenumber="bindGetPhoneNumber"
|
bindgetphonenumber="onGetPhoneNumber"
|
||||||
binderror="bindError"
|
binderror="onError"
|
||||||
bindlaunchapp="bindLaunchApp"
|
bindlaunchapp="onLaunchApp"
|
||||||
bindopensetting="bindOpenSetting"
|
bindopensetting="onOpenSetting"
|
||||||
>
|
>
|
||||||
{{ confirmButtonText }}
|
{{ confirmButtonText }}
|
||||||
</van-button>
|
</van-button>
|
||||||
|
@ -2,10 +2,9 @@ import { VantComponent } from '../common/component';
|
|||||||
import { useParent } from '../common/relation';
|
import { useParent } from '../common/relation';
|
||||||
import { button } from '../mixins/button';
|
import { button } from '../mixins/button';
|
||||||
import { link } from '../mixins/link';
|
import { link } from '../mixins/link';
|
||||||
import { openType } from '../mixins/open-type';
|
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
mixins: [link, button, openType],
|
mixins: [link, button],
|
||||||
|
|
||||||
relation: useParent('goods-action'),
|
relation: useParent('goods-action'),
|
||||||
|
|
||||||
|
@ -18,12 +18,12 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
send-message-title="{{ sendMessageTitle }}"
|
send-message-title="{{ sendMessageTitle }}"
|
||||||
bind:click="onClick"
|
bind:click="onClick"
|
||||||
binderror="bindError"
|
binderror="onError"
|
||||||
bindcontact="bindContact"
|
bindcontact="onContact"
|
||||||
bindopensetting="bindOpenSetting"
|
bindopensetting="onOpenSetting"
|
||||||
bindgetuserinfo="bindGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindgetphonenumber="bindGetPhoneNumber"
|
bindgetphonenumber="onGetPhoneNumber"
|
||||||
bindlaunchapp="bindLaunchApp"
|
bindlaunchapp="onLaunchApp"
|
||||||
>
|
>
|
||||||
{{ text }}
|
{{ text }}
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { button } from '../mixins/button';
|
import { button } from '../mixins/button';
|
||||||
import { link } from '../mixins/link';
|
import { link } from '../mixins/link';
|
||||||
import { openType } from '../mixins/open-type';
|
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
classes: ['icon-class', 'text-class'],
|
classes: ['icon-class', 'text-class'],
|
||||||
|
|
||||||
mixins: [link, button, openType],
|
mixins: [link, button],
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
text: String,
|
text: String,
|
||||||
|
@ -15,12 +15,12 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
send-message-title="{{ sendMessageTitle }}"
|
send-message-title="{{ sendMessageTitle }}"
|
||||||
bind:click="onClick"
|
bind:click="onClick"
|
||||||
binderror="bindError"
|
binderror="onError"
|
||||||
bindcontact="bindContact"
|
bindcontact="onContact"
|
||||||
bindopensetting="bindOpenSetting"
|
bindopensetting="onOpenSetting"
|
||||||
bindgetuserinfo="bindGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindgetphonenumber="bindGetPhoneNumber"
|
bindgetphonenumber="onGetPhoneNumber"
|
||||||
bindlaunchapp="bindLaunchApp"
|
bindlaunchapp="onLaunchApp"
|
||||||
>
|
>
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ icon }}"
|
wx:if="{{ icon }}"
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { button } from '../mixins/button';
|
import { button } from '../mixins/button';
|
||||||
import { openType } from '../mixins/open-type';
|
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
mixins: [button, openType],
|
mixins: [button],
|
||||||
|
|
||||||
classes: ['custom-class', 'loading-class', 'error-class', 'image-class'],
|
classes: ['custom-class', 'loading-class', 'error-class', 'image-class'],
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import { canIUseGetUserProfile } from '../common/version';
|
||||||
|
|
||||||
export const button = Behavior({
|
export const button = Behavior({
|
||||||
externalClasses: ['hover-class'],
|
externalClasses: ['hover-class'],
|
||||||
|
|
||||||
@ -12,5 +14,37 @@ export const button = Behavior({
|
|||||||
showMessageCard: Boolean,
|
showMessageCard: Boolean,
|
||||||
appParameter: String,
|
appParameter: String,
|
||||||
ariaLabel: String,
|
ariaLabel: String,
|
||||||
|
openType: String,
|
||||||
|
getUserProfileDesc: String,
|
||||||
|
},
|
||||||
|
|
||||||
|
data: {
|
||||||
|
canIUseGetUserProfile: canIUseGetUserProfile(),
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
onGetUserInfo(event: WechatMiniprogram.ButtonGetUserInfo) {
|
||||||
|
this.triggerEvent('getuserinfo', event.detail);
|
||||||
|
},
|
||||||
|
|
||||||
|
onContact(event: WechatMiniprogram.ButtonContact) {
|
||||||
|
this.triggerEvent('contact', event.detail);
|
||||||
|
},
|
||||||
|
|
||||||
|
onGetPhoneNumber(event: WechatMiniprogram.ButtonGetPhoneNumber) {
|
||||||
|
this.triggerEvent('getphonenumber', event.detail);
|
||||||
|
},
|
||||||
|
|
||||||
|
onError(event: WechatMiniprogram.ButtonError) {
|
||||||
|
this.triggerEvent('error', event.detail);
|
||||||
|
},
|
||||||
|
|
||||||
|
onLaunchApp(event: WechatMiniprogram.ButtonLaunchApp) {
|
||||||
|
this.triggerEvent('launchapp', event.detail);
|
||||||
|
},
|
||||||
|
|
||||||
|
onOpenSetting(event: WechatMiniprogram.ButtonOpenSetting) {
|
||||||
|
this.triggerEvent('opensetting', event.detail);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
// @ts-nocheck
|
|
||||||
|
|
||||||
export const openType = Behavior({
|
|
||||||
properties: {
|
|
||||||
openType: String,
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
bindGetUserInfo(event: WechatMiniprogram.ButtonGetUserInfo) {
|
|
||||||
this.$emit('getuserinfo', event.detail);
|
|
||||||
},
|
|
||||||
|
|
||||||
bindContact(event: WechatMiniprogram.ButtonContact) {
|
|
||||||
this.$emit('contact', event.detail);
|
|
||||||
},
|
|
||||||
|
|
||||||
bindGetPhoneNumber(event: WechatMiniprogram.ButtonGetPhoneNumber) {
|
|
||||||
this.$emit('getphonenumber', event.detail);
|
|
||||||
},
|
|
||||||
|
|
||||||
bindError(event: WechatMiniprogram.ButtonError) {
|
|
||||||
this.$emit('error', event.detail);
|
|
||||||
},
|
|
||||||
|
|
||||||
bindLaunchApp(event: WechatMiniprogram.ButtonLaunchApp) {
|
|
||||||
this.$emit('launchapp', event.detail);
|
|
||||||
},
|
|
||||||
|
|
||||||
bindOpenSetting(event: WechatMiniprogram.ButtonOpenSetting) {
|
|
||||||
this.$emit('opensetting', event.detail);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
Loading…
x
Reference in New Issue
Block a user