提交 fe3d807c 编写于 作者: D DCloud_LXH

feat(App): share、shareWithSystem

上级 1b5dcdd9
...@@ -79,6 +79,7 @@ export * from './protocols/ui/window' ...@@ -79,6 +79,7 @@ export * from './protocols/ui/window'
export * from './protocols/plugin/getProvider' export * from './protocols/plugin/getProvider'
export * from './protocols/plugin/oauth' export * from './protocols/plugin/oauth'
export * from './protocols/plugin/share'
// helpers // helpers
export { export {
defineOnApi, defineOnApi,
......
import { elemInArray } from '../../helpers/protocol'
export const API_SHREA = 'share'
export type API_TYPE_SHARE = typeof uni.share
const SCENE: Parameters<API_TYPE_SHARE>[0]['scene'][] = [
'WXSceneSession',
'WXSenceTimeline',
'WXSceneFavorite',
]
export const SahreOptions: ApiOptions<API_TYPE_SHARE> = {
formatArgs: {
scene(value, params) {
if (params.provider === 'weixin' && (!value || !SCENE.includes(value))) {
return `分享到微信时,scene必须为以下其中一个:${SCENE.join('')}`
}
},
summary(value, params) {
if (params.type === 1 && !value) {
return '分享纯文本时,summary必填'
}
},
href(value, params) {
if (params.type === 0 && !value) {
return '分享图文时,href必填'
}
},
imageUrl(value, params) {
if ([0, 2, 5].includes(Number(params.type)) && !value) {
return '分享图文、纯图片、小程序时,imageUrl必填,推荐使用小于20Kb的图片'
}
},
mediaUrl(value, params) {
if ([3, 4].includes(Number(params.type)) && !value) {
return '分享音乐、视频时,mediaUrl必填'
}
},
miniProgram(value, params) {
if (params.type === 5 && !value) {
return '分享小程序时,miniProgram必填'
}
},
},
}
export const ShareProtocols: ApiProtocol<API_TYPE_SHARE> = {
provider: {
type: String as any,
required: true,
},
type: Number as any,
title: String,
scene: String as any,
summary: String,
href: String,
imageUrl: String,
mediaUrl: String,
miniProgram: Object,
}
export const API_SHARE_WITH_SYSTEM = 'shareWithSystem'
export type API_TYPE_SHARE_WITH_SYSTEM = typeof uni.shareWithSystem
const TYPE: Parameters<API_TYPE_SHARE_WITH_SYSTEM>[0]['type'][] = [
'text',
'image',
]
export const ShareWithSystemOptions: ApiOptions<API_TYPE_SHARE_WITH_SYSTEM> = {
formatArgs: {
type(value, params) {
if (!TYPE.includes(value)) return '分享参数 type 不正确'
return elemInArray(value, TYPE)
},
},
}
export const ShareWithSystemProtocols: ApiProtocol<API_TYPE_SHARE_WITH_SYSTEM> =
{
type: String as any,
summary: String,
href: String,
imageUrl: String,
}
...@@ -35,3 +35,4 @@ export * from './ui/popup/showToast' ...@@ -35,3 +35,4 @@ export * from './ui/popup/showToast'
export * from './plugin/getProvider' export * from './plugin/getProvider'
export * from './plugin/oauth' export * from './plugin/oauth'
export * from './plugin/share'
...@@ -16,7 +16,7 @@ import { ...@@ -16,7 +16,7 @@ import {
API_TYPE_CLOSE_AUTH_VIEW, API_TYPE_CLOSE_AUTH_VIEW,
defineAsyncApi, defineAsyncApi,
} from '@dcloudio/uni-api' } from '@dcloudio/uni-api'
import { isPlainObject } from '@vue/shared' import { isPlainObject, toTypeString } from '@vue/shared'
import { import {
warpPlusSuccessCallback, warpPlusSuccessCallback,
warpPlusErrorCallback, warpPlusErrorCallback,
...@@ -202,11 +202,9 @@ function univerifyButtonsClickHandling( ...@@ -202,11 +202,9 @@ function univerifyButtonsClickHandling(
errorCallback: Function errorCallback: Function
) { ) {
if ( if (
univerifyStyle &&
isPlainObject(univerifyStyle) && isPlainObject(univerifyStyle) &&
univerifyStyle.buttons && univerifyStyle.buttons &&
Object.prototype.toString.call(univerifyStyle.buttons.list) === toTypeString(univerifyStyle.buttons.list) === '[object Array]' &&
'[object Array]' &&
univerifyStyle.buttons.list!.length > 0 univerifyStyle.buttons.list!.length > 0
) { ) {
univerifyStyle.buttons.list!.forEach((button, index) => { univerifyStyle.buttons.list!.forEach((button, index) => {
......
import { getRealPath } from '@dcloudio/uni-platform'
import { warpPlusErrorCallback } from '../../../helpers/plus'
import {
defineAsyncApi,
API_SHREA,
API_TYPE_SHARE,
SahreOptions,
ShareProtocols,
API_SHARE_WITH_SYSTEM,
API_TYPE_SHARE_WITH_SYSTEM,
ShareWithSystemOptions,
ShareWithSystemProtocols,
} from '@dcloudio/uni-api'
// 0:图文,1:纯文字,2:纯图片,3:音乐,4:视频,5:小程序
const TYPES = {
0: {
name: 'web',
title: '图文',
},
1: {
name: 'text',
title: '纯文字',
},
2: {
name: 'image',
title: '纯图片',
},
3: {
name: 'music',
title: '音乐',
},
4: {
name: 'video',
title: '视频',
},
5: {
name: 'miniProgram',
title: '小程序',
},
}
const parseParams = <T extends Data>(args: UniApp.ShareOptions): T | string => {
args.type = args.type || 0
let {
provider,
type,
title,
summary: content,
href,
imageUrl,
mediaUrl: media,
scene,
miniProgram,
} = args
if (typeof imageUrl === 'string' && imageUrl) {
imageUrl = getRealPath(imageUrl)
}
const shareType = TYPES[type]
if (shareType) {
const sendMsg = {
provider,
type: shareType.name,
title,
content,
href,
pictures: [imageUrl],
thumbs: imageUrl ? [imageUrl] : undefined,
media,
miniProgram,
extra: {
scene,
},
}
if (provider === 'weixin' && (type === 1 || type === 2)) {
delete sendMsg.thumbs
}
return sendMsg as unknown as T
}
return '分享参数 type 不正确'
}
const sendShareMsg = function (
service: PlusShareShareService,
params: Data,
resolve: (args?: any) => void,
reject: (errMsg: string, errRes?: any) => void,
method = 'share'
) {
const errorCallback = warpPlusErrorCallback(reject)
service.send(
params,
() => {
resolve()
},
errorCallback
)
}
export const share = defineAsyncApi<API_TYPE_SHARE>(
API_SHREA,
(params, { resolve, reject }) => {
const res = parseParams<typeof params>(params)
const errorCallback = warpPlusErrorCallback(reject)
if (typeof res === 'string') {
return reject(res)
} else {
params = res
}
plus.share.getServices((services) => {
const service = services.find(({ id }) => id === params.provider)
if (!service) {
reject('service not found')
} else {
if (service.authenticated) {
sendShareMsg(service, params, resolve, reject)
} else {
service.authorize(
() => sendShareMsg(service, params, resolve, reject),
errorCallback
)
}
}
}, errorCallback)
},
ShareProtocols,
SahreOptions
)
export const shareWithSystem = defineAsyncApi<API_TYPE_SHARE_WITH_SYSTEM>(
API_SHARE_WITH_SYSTEM,
({ type, imageUrl, summary, href }, { resolve, reject }) => {
const errorCallback = warpPlusErrorCallback(reject)
if (typeof imageUrl === 'string' && imageUrl) {
imageUrl = getRealPath(imageUrl)
}
plus.share.sendWithSystem(
{
type,
pictures: imageUrl ? [imageUrl] : undefined,
content: summary,
href,
},
() => resolve(),
errorCallback
)
},
ShareWithSystemProtocols,
ShareWithSystemOptions
)
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册