import { PropType, defineComponent } from 'vue'; // Utils import { truthProp, createNamespace, extend, pick } from '../utils'; import { popupSharedProps, popupSharedPropKeys } from '../popup/shared'; // Components import { Popup } from '../popup'; export type ShareSheetOption = { name: string; icon: string; className?: string; description?: string; }; export type ShareSheetOptions = ShareSheetOption[] | ShareSheetOption[][]; const PRESET_ICONS = [ 'qq', 'link', 'weibo', 'wechat', 'poster', 'qrcode', 'weapp-qrcode', 'wechat-moments', ]; const popupKeys = [ ...popupSharedPropKeys, 'closeOnPopstate', 'safeAreaInsetBottom', ] as const; function getIconURL(icon: string) { if (PRESET_ICONS.includes(icon)) { return `https://img.yzcdn.cn/vant/share-sheet-${icon}.png`; } return icon; } const [name, bem, t] = createNamespace('share-sheet'); export default defineComponent({ name, props: extend({}, popupSharedProps, { title: String, cancelText: String, description: String, closeOnPopstate: truthProp, safeAreaInsetBottom: truthProp, options: { type: Array as PropType, default: () => [], }, }), emits: ['cancel', 'select', 'update:show'], setup(props, { emit, slots }) { const updateShow = (value: boolean) => emit('update:show', value); const onCancel = () => { updateShow(false); emit('cancel'); }; const onSelect = (option: ShareSheetOption, index: number) => emit('select', option, index); const renderHeader = () => { const title = slots.title ? slots.title() : props.title; const description = slots.description ? slots.description() : props.description; if (title || description) { return (
{title &&

{title}

} {description && ( {description} )}
); } }; const renderOption = (option: ShareSheetOption, index: number) => { const { name, icon, className, description } = option; return (
onSelect(option, index)} > {name && {name}} {description && ( {description} )}
); }; const renderOptions = (options: ShareSheetOption[], border?: boolean) => (
{options.map(renderOption)}
); const renderRows = () => { const { options } = props; if (Array.isArray(options[0])) { return (options as ShareSheetOption[][]).map((item, index) => renderOptions(item, index !== 0) ); } return renderOptions(options as ShareSheetOption[]); }; const renderCancelButton = () => { const cancelText = props.cancelText ?? t('cancel'); if (slots.cancel || cancelText) { return ( ); } }; return () => ( {renderHeader()} {renderRows()} {renderCancelButton()} ); }, });