@aochuang/client-sdk 1.0.278
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +93 -0
- package/common/avatar/avatar.vue +86 -0
- package/common/avatar/index.js +3 -0
- package/common/badge/badge.vue +105 -0
- package/common/badge/index.js +3 -0
- package/common/context-menu/context-menu-box.vue +61 -0
- package/common/context-menu/context-menu-group.vue +162 -0
- package/common/context-menu/context-menu-item.vue +179 -0
- package/common/context-menu/context-menu.vue +201 -0
- package/common/context-menu/index.js +3 -0
- package/common/context-menu/utils.js +138 -0
- package/common/friend-avatar/default.svg +1 -0
- package/common/friend-avatar/friend-avatar.vue +29 -0
- package/common/friend-avatar/index.js +3 -0
- package/common/image/index.js +3 -0
- package/common/index.js +17 -0
- package/common/room-avatar/default.svg +6 -0
- package/common/room-avatar/index.js +3 -0
- package/common/room-avatar/room-avatar.vue +29 -0
- package/common/scroll-load-more/index.js +3 -0
- package/common/scroll-load-more/scroll-load-more.vue +195 -0
- package/common/user-avatar/default.svg +1 -0
- package/common/user-avatar/index.js +3 -0
- package/common/user-avatar/user-avatar.vue +29 -0
- package/components/account-select/account-select-skeleton.vue +56 -0
- package/components/account-select/account-select.vue +205 -0
- package/components/account-select/all.svg +1 -0
- package/components/account-select/index.js +3 -0
- package/components/chat-editor/MENTION_TOKEN_SUMMARY.md +74 -0
- package/components/chat-editor/chat-editor-button/chat-editor-button.vue +78 -0
- package/components/chat-editor/chat-editor-suggestions/chat-editor-suggestions.vue +329 -0
- package/components/chat-editor/chat-editor-toolbar/chat-editor-toolbar-item.vue +28 -0
- package/components/chat-editor/chat-editor-toolbar/chat-editor-toolbar.vue +17 -0
- package/components/chat-editor/chat-editor.vue +933 -0
- package/components/chat-editor/index.js +12 -0
- package/components/chat-editor/utils.js +189 -0
- package/components/chat-friend-profile/chat-friend-profile.vue +118 -0
- package/components/chat-friend-profile/index.js +3 -0
- package/components/chat-layout/chat-layout.vue +71 -0
- package/components/chat-layout/index.js +3 -0
- package/components/chat-panel/chat-panel-box.vue +350 -0
- package/components/chat-panel/chat-panel-chat.vue +121 -0
- package/components/chat-panel/chat-panel-chats.vue +674 -0
- package/components/chat-panel/chat-panel-empty.vue +32 -0
- package/components/chat-panel/chat-panel-increment.vue +80 -0
- package/components/chat-panel/chat-panel-inner-msg.vue +25 -0
- package/components/chat-panel/chat-panel-loading.vue +29 -0
- package/components/chat-panel/chat-panel-nearest.vue +136 -0
- package/components/chat-panel/chat-panel.vue +292 -0
- package/components/chat-panel/index.js +3 -0
- package/components/chat-panel/util.js +83 -0
- package/components/chat-room-profile/chat-room-profile.vue +103 -0
- package/components/chat-room-profile/index.js +3 -0
- package/components/contacts-friend-select/contacts-friend-select-skeleton.vue +41 -0
- package/components/contacts-friend-select/contacts-friend-select.vue +204 -0
- package/components/contacts-friend-select/index.js +3 -0
- package/components/contacts-group-select/contacts-group-select-item.vue +98 -0
- package/components/contacts-group-select/contacts-group-select-skeleton.vue +81 -0
- package/components/contacts-group-select/contacts-group-select.vue +396 -0
- package/components/contacts-group-select/index.js +3 -0
- package/components/contacts-room-select/contacts-room-select-skeleton.vue +41 -0
- package/components/contacts-room-select/contacts-room-select.vue +208 -0
- package/components/contacts-room-select/index.js +3 -0
- package/components/index.js +43 -0
- package/components/layout/index.js +3 -0
- package/components/layout/layout.vue +70 -0
- package/components/session-select/index.js +11 -0
- package/components/session-select/session-select-item-skeleton.vue +59 -0
- package/components/session-select/session-select-item.vue +190 -0
- package/components/session-select/session-select.vue +386 -0
- package/components/wechat-chat-control/calling/calling.vue +227 -0
- package/components/wechat-chat-control/calling/phone-fill.svg +1 -0
- package/components/wechat-chat-control/calling/vidicon-fill.svg +1 -0
- package/components/wechat-chat-control/channel-live/channel-live.vue +198 -0
- package/components/wechat-chat-control/channel-live/quote-icon.svg +1 -0
- package/components/wechat-chat-control/channel-video/channel-video.vue +180 -0
- package/components/wechat-chat-control/channel-video/quote-icon.svg +1 -0
- package/components/wechat-chat-control/channel-video-card/channel-video-card.vue +139 -0
- package/components/wechat-chat-control/channel-video-card/quote-icon.svg +1 -0
- package/components/wechat-chat-control/company-card/company-card.vue +136 -0
- package/components/wechat-chat-control/company-card/quote-icon.svg +1 -0
- package/components/wechat-chat-control/custom-expression/custom-expression.vue +45 -0
- package/components/wechat-chat-control/empty/empty.vue +27 -0
- package/components/wechat-chat-control/file-url/file-url.vue +307 -0
- package/components/wechat-chat-control/file-url/icons/file-excel-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-info-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-music-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-pdf-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-ppt-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-settings-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-text-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-unknow-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-word-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-zip-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/index.js +24 -0
- package/components/wechat-chat-control/image/image.vue +344 -0
- package/components/wechat-chat-control/image/index.js +1 -0
- package/components/wechat-chat-control/image/util.js +29 -0
- package/components/wechat-chat-control/index.js +104 -0
- package/components/wechat-chat-control/jx-sys-text/jx-sys-text.vue +28 -0
- package/components/wechat-chat-control/location/location.vue +179 -0
- package/components/wechat-chat-control/location/offline-bg.png +0 -0
- package/components/wechat-chat-control/member-change/member-change.vue +37 -0
- package/components/wechat-chat-control/music/icons/163.png +0 -0
- package/components/wechat-chat-control/music/icons/163.svg +12 -0
- package/components/wechat-chat-control/music/icons/default.png +0 -0
- package/components/wechat-chat-control/music/icons/default.svg +1 -0
- package/components/wechat-chat-control/music/icons/kuwo.png +0 -0
- package/components/wechat-chat-control/music/icons/qq.png +0 -0
- package/components/wechat-chat-control/music/icons/qq.svg +1 -0
- package/components/wechat-chat-control/music/music.vue +156 -0
- package/components/wechat-chat-control/music/utils.js +30 -0
- package/components/wechat-chat-control/quote-message/quote-message.vue +257 -0
- package/components/wechat-chat-control/real-time-position/icon.svg +1 -0
- package/components/wechat-chat-control/real-time-position/real-time-position.vue +57 -0
- package/components/wechat-chat-control/red-envelopes/quote-icon.svg +1 -0
- package/components/wechat-chat-control/red-envelopes/red-envelope.svg +1 -0
- package/components/wechat-chat-control/red-envelopes/red-envelopes.vue +168 -0
- package/components/wechat-chat-control/revoke-me-message/revoke-me-message.vue +41 -0
- package/components/wechat-chat-control/revoke-other-message/revoke-other-message.vue +41 -0
- package/components/wechat-chat-control/revoke-you-message/revoke-you-message.vue +41 -0
- package/components/wechat-chat-control/room-calling/phone-fill.svg +1 -0
- package/components/wechat-chat-control/room-calling/room-calling.vue +52 -0
- package/components/wechat-chat-control/room-calling/vidicon-fill.svg +1 -0
- package/components/wechat-chat-control/share-card/quote-icon.svg +1 -0
- package/components/wechat-chat-control/share-card/share-card.vue +140 -0
- package/components/wechat-chat-control/system/system.vue +122 -0
- package/components/wechat-chat-control/system-batch-message/system-batch-message.vue +28 -0
- package/components/wechat-chat-control/system-money/system-money.vue +39 -0
- package/components/wechat-chat-control/text/icons/icon.svg +6 -0
- package/components/wechat-chat-control/text/text.vue +164 -0
- package/components/wechat-chat-control/text-with-at/text-with-at.vue +88 -0
- package/components/wechat-chat-control/transfer/collection.svg +1 -0
- package/components/wechat-chat-control/transfer/quote-icon.svg +1 -0
- package/components/wechat-chat-control/transfer/red-transfer.svg +1 -0
- package/components/wechat-chat-control/transfer/refund.svg +1 -0
- package/components/wechat-chat-control/transfer/transfer.svg +1 -0
- package/components/wechat-chat-control/transfer/transfer.vue +263 -0
- package/components/wechat-chat-control/unknow/unknow.vue +21 -0
- package/components/wechat-chat-control/url/icons/link.svg +1 -0
- package/components/wechat-chat-control/url/icons/video.svg +6 -0
- package/components/wechat-chat-control/url/miniprogram.svg +1 -0
- package/components/wechat-chat-control/url/url-file.vue +47 -0
- package/components/wechat-chat-control/url/url-link.vue +169 -0
- package/components/wechat-chat-control/url/url-merge.vue +164 -0
- package/components/wechat-chat-control/url/url-miniprogram.vue +259 -0
- package/components/wechat-chat-control/url/url.vue +116 -0
- package/components/wechat-chat-control/util.js +234 -0
- package/components/wechat-chat-control/video/icons/video.svg +1 -0
- package/components/wechat-chat-control/video/video.vue +304 -0
- package/components/wechat-chat-control/voice/icons/voice.svg +1 -0
- package/components/wechat-chat-control/voice/voice.vue +464 -0
- package/components/wechat-chat-control/wechat-chat-control-config-item.vue +24 -0
- package/components/wechat-chat-control/wechat-chat-control-config-msg.vue +21 -0
- package/components/wechat-chat-control/wechat-chat-control-config.vue +57 -0
- package/components/wechat-chat-panel/chat-panel-chat-status/chat-panel-chat-status.vue +69 -0
- package/components/wechat-chat-panel/chat-panel-item.vue +695 -0
- package/components/wechat-chat-panel/chat-panel.vue +257 -0
- package/components/wechat-chat-panel/index.js +3 -0
- package/components/wework-chat-control/calling/calling.vue +223 -0
- package/components/wework-chat-control/calling/phone-fill.svg +1 -0
- package/components/wework-chat-control/calling/vidicon-fill.svg +1 -0
- package/components/wework-chat-control/channel-live/channel-live.vue +198 -0
- package/components/wework-chat-control/channel-live/quote-icon.svg +1 -0
- package/components/wework-chat-control/channel-video/channel-video.vue +180 -0
- package/components/wework-chat-control/channel-video/quote-icon.svg +1 -0
- package/components/wework-chat-control/company-card/company-card.vue +136 -0
- package/components/wework-chat-control/company-card/quote-icon.svg +1 -0
- package/components/wework-chat-control/custom-expression/custom-expression.vue +34 -0
- package/components/wework-chat-control/empty/empty.vue +27 -0
- package/components/wework-chat-control/expression/expression.vue +53 -0
- package/components/wework-chat-control/file-url/file-url.vue +247 -0
- package/components/wework-chat-control/file-url/icons/file-excel-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-info-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-music-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-pdf-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-ppt-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-settings-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-text-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-unknow-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-word-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-zip-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/index.js +24 -0
- package/components/wework-chat-control/image/image.vue +296 -0
- package/components/wework-chat-control/image/index.js +1 -0
- package/components/wework-chat-control/image/util.js +21 -0
- package/components/wework-chat-control/index.js +105 -0
- package/components/wework-chat-control/jx-sys-text/jx-sys-text.vue +28 -0
- package/components/wework-chat-control/link/link.vue +100 -0
- package/components/wework-chat-control/location/location.vue +181 -0
- package/components/wework-chat-control/location/offline-bg.png +0 -0
- package/components/wework-chat-control/red-envelopes/quote-icon.svg +1 -0
- package/components/wework-chat-control/red-envelopes/red-envelope.svg +1 -0
- package/components/wework-chat-control/red-envelopes/red-envelopes.vue +168 -0
- package/components/wework-chat-control/share-card/quote-icon.svg +1 -0
- package/components/wework-chat-control/share-card/share-card.vue +140 -0
- package/components/wework-chat-control/text/icons/icon.svg +6 -0
- package/components/wework-chat-control/text/text.vue +157 -0
- package/components/wework-chat-control/unknow/unknow.vue +21 -0
- package/components/wework-chat-control/url/icons/link.svg +1 -0
- package/components/wework-chat-control/url/icons/video.svg +6 -0
- package/components/wework-chat-control/url/miniprogram.svg +1 -0
- package/components/wework-chat-control/url/url-file.vue +37 -0
- package/components/wework-chat-control/url/url-link.vue +169 -0
- package/components/wework-chat-control/url/url-merge.vue +164 -0
- package/components/wework-chat-control/url/url-miniprogram.vue +248 -0
- package/components/wework-chat-control/url/url.vue +103 -0
- package/components/wework-chat-control/util.js +223 -0
- package/components/wework-chat-control/video/icons/video.svg +1 -0
- package/components/wework-chat-control/video/video.vue +304 -0
- package/components/wework-chat-control/voice/icons/voice.svg +1 -0
- package/components/wework-chat-control/voice/voice.vue +464 -0
- package/components/wework-chat-panel/chat-panel-controls/company-card/company-card.vue +35 -0
- package/components/wework-chat-panel/chat-panel-controls/expression/expression.vue +36 -0
- package/components/wework-chat-panel/chat-panel-controls/file-url/file-url.vue +35 -0
- package/components/wework-chat-panel/chat-panel-controls/image/image.vue +36 -0
- package/components/wework-chat-panel/chat-panel-controls/index.js +35 -0
- package/components/wework-chat-panel/chat-panel-controls/jx-sys-text/jx-sys-text.vue +28 -0
- package/components/wework-chat-panel/chat-panel-controls/link/link.vue +35 -0
- package/components/wework-chat-panel/chat-panel-controls/location/location.vue +35 -0
- package/components/wework-chat-panel/chat-panel-controls/text/text.vue +43 -0
- package/components/wework-chat-panel/chat-panel-controls/unkonw/unkonw.vue +39 -0
- package/components/wework-chat-panel/chat-panel-controls/video/video.vue +37 -0
- package/components/wework-chat-panel/chat-panel-controls/voice/voice.vue +35 -0
- package/components/wework-chat-panel/chat-panel-item.vue +650 -0
- package/components/wework-chat-panel/chat-panel.vue +163 -0
- package/components/wework-chat-panel/index.js +3 -0
- package/package.json +23 -0
- package/services/client-chat/client-chat-wechat/client-chat-account.js +426 -0
- package/services/client-chat/client-chat-wechat/client-chat-concats.js +1029 -0
- package/services/client-chat/client-chat-wechat/client-chat-draft.js +92 -0
- package/services/client-chat/client-chat-wechat/client-chat-message.js +588 -0
- package/services/client-chat/client-chat-wechat/client-chat-session-manage.js +67 -0
- package/services/client-chat/client-chat-wechat/client-chat-session.js +1048 -0
- package/services/client-chat/client-chat-wechat/client-chat-socket.js +215 -0
- package/services/client-chat/client-chat-wechat/client-chat.js +1065 -0
- package/services/client-chat/client-chat-wechat/index.js +3 -0
- package/services/client-chat/client-chat-wechat/utils.js +82 -0
- package/services/client-chat/client-chat-wework/client-chat-account.js +310 -0
- package/services/client-chat/client-chat-wework/client-chat-concats.js +772 -0
- package/services/client-chat/client-chat-wework/client-chat-message.js +278 -0
- package/services/client-chat/client-chat-wework/client-chat-session.js +929 -0
- package/services/client-chat/client-chat-wework/client-chat-socket.js +64 -0
- package/services/client-chat/client-chat-wework/client-chat.js +330 -0
- package/services/client-chat/client-chat-wework/index.js +3 -0
- package/services/client-chat/client-chat-wework/utils.js +82 -0
- package/services/index.js +10 -0
- package/services/socket/index.js +5 -0
- package/services/socket/socket.js +797 -0
- package/services/socket/utils.js +7 -0
- package/uni-common/account-portray/account-portray.vue +51 -0
- package/uni-common/account-select/account-select-item.vue +172 -0
- package/uni-common/account-select/account-select.vue +252 -0
- package/uni-common/all-friend-avatar/all-friend-avatar.vue +49 -0
- package/uni-common/friend-avatar/default.svg +1 -0
- package/uni-common/friend-avatar/friend-avatar.vue +27 -0
- package/uni-common/friend-avatar/index.js +3 -0
- package/uni-common/friend-loader/friend-loader.vue +53 -0
- package/uni-common/friend-portray/friend-portray.vue +56 -0
- package/uni-common/group-avatar/default.svg +1 -0
- package/uni-common/group-avatar/group-avatar.vue +18 -0
- package/uni-common/group-avatar/index.js +3 -0
- package/uni-common/room-avatar/default.svg +6 -0
- package/uni-common/room-avatar/index.js +3 -0
- package/uni-common/room-avatar/room-avatar.vue +27 -0
- package/uni-common/room-loader/room-loader.vue +53 -0
- package/uni-common/room-portray/room-portray.vue +56 -0
- package/uni-components/chat-control/calling/calling.vue +91 -0
- package/uni-components/chat-control/calling/phone-fill.svg +1 -0
- package/uni-components/chat-control/calling/vidicon-fill.svg +1 -0
- package/uni-components/chat-control/channel-video/channel-video.vue +89 -0
- package/uni-components/chat-control/channel-video-card/channel-video-card.vue +105 -0
- package/uni-components/chat-control/channel-video-live/channel-video-live.vue +92 -0
- package/uni-components/chat-control/chat-control-config-item/chat-control-config-item.vue +20 -0
- package/uni-components/chat-control/chat-control-config-item/index.js +3 -0
- package/uni-components/chat-control/chat-control-config-msg/chat-control-config-msg-app.vue +25 -0
- package/uni-components/chat-control/chat-control-config-msg/chat-control-config-msg-h5.vue +21 -0
- package/uni-components/chat-control/chat-control-config.vue +59 -0
- package/uni-components/chat-control/chat-control.vue +218 -0
- package/uni-components/chat-control/company-card/company-card.vue +123 -0
- package/uni-components/chat-control/const.js +28 -0
- package/uni-components/chat-control/expression/expression.vue +41 -0
- package/uni-components/chat-control/image/image.vue +68 -0
- package/uni-components/chat-control/index.js +89 -0
- package/uni-components/chat-control/location/location.vue +110 -0
- package/uni-components/chat-control/member-change/member-change.vue +32 -0
- package/uni-components/chat-control/quote-message/quote-message.vue +216 -0
- package/uni-components/chat-control/real-time-position/real-time-position.vue +62 -0
- package/uni-components/chat-control/redpacket/red-envelope.svg +1 -0
- package/uni-components/chat-control/redpacket/redpacket.vue +75 -0
- package/uni-components/chat-control/share-card/share-card.vue +101 -0
- package/uni-components/chat-control/system/system.vue +69 -0
- package/uni-components/chat-control/system-batch-message/system-batch-message.vue +30 -0
- package/uni-components/chat-control/system-text/system-text.vue +32 -0
- package/uni-components/chat-control/text/text.vue +67 -0
- package/uni-components/chat-control/text-with-at/text-with-at.vue +51 -0
- package/uni-components/chat-control/transfer/red-transfer.svg +1 -0
- package/uni-components/chat-control/transfer/transfer.vue +80 -0
- package/uni-components/chat-control/unkonw/unkonw.vue +37 -0
- package/uni-components/chat-control/url/icons/file-excel-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-info-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-music-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-pdf-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-ppt-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-settings-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-text-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-unknow-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-word-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-zip-line.svg +1 -0
- package/uni-components/chat-control/url/icons/index.js +24 -0
- package/uni-components/chat-control/url/miniprogram.svg +1 -0
- package/uni-components/chat-control/url/url-miniprogram.vue +116 -0
- package/uni-components/chat-control/url/url.vue +306 -0
- package/uni-components/chat-control/url-new/icons/file-excel-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-info-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-music-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-pdf-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-ppt-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-settings-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-text-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-unknow-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-word-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-zip-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/index.js +24 -0
- package/uni-components/chat-control/url-new/url-new.vue +110 -0
- package/uni-components/chat-control/utils.js +12 -0
- package/uni-components/chat-control/video/video.vue +156 -0
- package/uni-components/chat-control/voice/voice.vue +166 -0
- package/uni-components/chat-editor/chat-editor-chartlet/chat-editor-chartlet-collect.vue +84 -0
- package/uni-components/chat-editor/chat-editor-chartlet/chat-editor-chartlet-system.vue +28 -0
- package/uni-components/chat-editor/chat-editor-chartlet/chat-editor-chartlet.vue +85 -0
- package/uni-components/chat-editor/chat-editor-func/chat-editor-func.vue +157 -0
- package/uni-components/chat-editor/chat-editor-func-at/chat-editor-func-at-panel.vue +158 -0
- package/uni-components/chat-editor/chat-editor-func-at/chat-editor-func-at.vue +61 -0
- package/uni-components/chat-editor/chat-editor-func-button/chat-editor-func-button.vue +58 -0
- package/uni-components/chat-editor/chat-editor-func-file/chat-editor-func-file.vue +54 -0
- package/uni-components/chat-editor/chat-editor-func-image/chat-editor-func-image.vue +42 -0
- package/uni-components/chat-editor/chat-editor-func-video/chat-editor-func-video.vue +42 -0
- package/uni-components/chat-editor/chat-editor-func-voice/chat-editor-func-voice.vue +25 -0
- package/uni-components/chat-editor/chat-editor-message-send/chat-editor-message-send.vue +158 -0
- package/uni-components/chat-editor/chat-editor-quote/chat-editor-quote.vue +75 -0
- package/uni-components/chat-editor/chat-editor.vue +257 -0
- package/uni-components/chat-editor/index.js +10 -0
- package/uni-components/chat-editor/util.js +65 -0
- package/uni-components/chat-panel/chat-panel-chats-box.vue +238 -0
- package/uni-components/chat-panel/chat-panel-chats-forward/chat-panel-chats-forward.vue +273 -0
- package/uni-components/chat-panel/chat-panel-chats-item.vue +578 -0
- package/uni-components/chat-panel/chat-panel-chats-status/chat-panel-chats-status.vue +71 -0
- package/uni-components/chat-panel/chat-panel-chats.vue +368 -0
- package/uni-components/chat-panel/chat-panel.vue +227 -0
- package/uni-components/contacts-group-select/contacts-group-select-item.vue +85 -0
- package/uni-components/contacts-group-select/contacts-group-select-panel.vue +119 -0
- package/uni-components/contacts-group-select/contacts-group-select.vue +150 -0
- package/utils/color.js +178 -0
- package/utils/data.js +11 -0
- package/utils/date.js +107 -0
- package/utils/event.js +3 -0
- package/utils/file.js +26 -0
- package/utils/index.js +5 -0
- package/utils/json.js +40 -0
- package/utils/log.js +243 -0
- package/utils/queue.js +97 -0
- package/utils/regexp.js +9 -0
- package/utils/string.js +66 -0
- package/utils/url.js +48 -0
- package/utils/util.js +130 -0
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-wework-control-location" :class="['sdk-chat-wework-control-location--' + type]">
|
|
3
|
+
<template v-if="type === 'default'">
|
|
4
|
+
<div class="sdk-chat-wework-control-location__main">
|
|
5
|
+
<div class="sdk-chat-wework-control-location__head">
|
|
6
|
+
<h4>{{ title }}</h4>
|
|
7
|
+
<h4 class="sdk-chat-wework-control-location__title">{{address}}</h4>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="sdk-chat-wework-control-location__body">
|
|
10
|
+
<div v-if="offline" class="sdk-chat-wework-control-location__offline">
|
|
11
|
+
<div class="sdk-chat-wework-control-location__offline-label">腾讯地图经纬度坐标:</div>
|
|
12
|
+
<div class="sdk-chat-wework-control-location__offline-value">{{longitude}}、{{latitude}}</div>
|
|
13
|
+
<div class="sdk-chat-wework-control-location__offline-tips">提示:离线模式无法显示地图</div>
|
|
14
|
+
</div>
|
|
15
|
+
<ac-static-map :map-key="mapKey" v-else :enable-link="false" width="280" height="160" :lng="longitude" :lat="latitude" @map-created="handleStaticMapCreated"></ac-static-map>
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
</template>
|
|
19
|
+
<template v-else-if="type === 'quote'">
|
|
20
|
+
<div class="sdk-chat-wework-control-location__main">
|
|
21
|
+
<span class="sdk-chat-wework-control-location__icon">
|
|
22
|
+
<svg t="1752133896251" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="25831" width="200" height="200"><path d="M512 1012.394667l-271.530667-271.530667a384 384 0 1 1 543.061334 0L512 1012.394667z m211.2-331.861334a298.666667 298.666667 0 1 0-422.4 0L512 891.733333l211.2-211.2zM512 554.666667a85.333333 85.333333 0 1 1 0-170.666667 85.333333 85.333333 0 0 1 0 170.666667z" fill="currentColor" p-id="25832"></path></svg>
|
|
23
|
+
</span>
|
|
24
|
+
<span class="sdk-chat-wework-control-location__title">{{address}}</span>
|
|
25
|
+
<ac-static-map :map-key="mapKey" :enable-link="false" width="52" height="52" :lng="longitude" :lat="latitude" @map-created="handleStaticMapCreated"></ac-static-map>
|
|
26
|
+
</div>
|
|
27
|
+
</template>
|
|
28
|
+
</div>
|
|
29
|
+
</template>
|
|
30
|
+
<script>
|
|
31
|
+
import AcStaticMap from '@aochuang/common/common/static-map'
|
|
32
|
+
import { parse } from '../../../utils/json'
|
|
33
|
+
|
|
34
|
+
export default {
|
|
35
|
+
name: 'SdkChatControlLocation',
|
|
36
|
+
components: {
|
|
37
|
+
AcStaticMap
|
|
38
|
+
},
|
|
39
|
+
props: {
|
|
40
|
+
id: {
|
|
41
|
+
type: String
|
|
42
|
+
},
|
|
43
|
+
content: {
|
|
44
|
+
type: String
|
|
45
|
+
},
|
|
46
|
+
type: {
|
|
47
|
+
type: String,
|
|
48
|
+
default: 'default',
|
|
49
|
+
validator (value) {
|
|
50
|
+
return ['quote', 'default'].includes(value)
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
/**
|
|
54
|
+
* 离线模式
|
|
55
|
+
* 微聊天面板下载到本地浏览时会没有网络
|
|
56
|
+
*/
|
|
57
|
+
offline: {
|
|
58
|
+
type: Boolean,
|
|
59
|
+
default: false
|
|
60
|
+
},
|
|
61
|
+
mapKey: {
|
|
62
|
+
type: String,
|
|
63
|
+
required: true
|
|
64
|
+
},
|
|
65
|
+
updateChatBoxProp: {
|
|
66
|
+
type: Function
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
computed: {
|
|
70
|
+
nextContent () {
|
|
71
|
+
return parse(this.content) || {}
|
|
72
|
+
},
|
|
73
|
+
address () {
|
|
74
|
+
return (this.nextContent.address || '')
|
|
75
|
+
},
|
|
76
|
+
title() {
|
|
77
|
+
return (this.nextContent.title || '')
|
|
78
|
+
},
|
|
79
|
+
latitude () {
|
|
80
|
+
return Number(this.nextContent.latitude)
|
|
81
|
+
},
|
|
82
|
+
longitude () {
|
|
83
|
+
return Number(this.nextContent.longitude)
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
methods: {
|
|
87
|
+
handleStaticMapCreated ({ mapHref }) {
|
|
88
|
+
this.updateChatBoxProp && this.updateChatBoxProp('href', mapHref)
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
</script>
|
|
93
|
+
<style lang="less">
|
|
94
|
+
.sdk-chat-wework-control-location--default {
|
|
95
|
+
.sdk-chat-wework-control-location__body{
|
|
96
|
+
line-height: 0;
|
|
97
|
+
}
|
|
98
|
+
.sdk-chat-wework-control-location__head{
|
|
99
|
+
padding: 4px 12px;
|
|
100
|
+
}
|
|
101
|
+
.sdk-chat-wework-control-location__title{
|
|
102
|
+
font-weight: normal;
|
|
103
|
+
margin: 4px 0;
|
|
104
|
+
line-height: 1.7em;
|
|
105
|
+
color: #484848;
|
|
106
|
+
}
|
|
107
|
+
.sdk-chat-wework-control-location__description{
|
|
108
|
+
color: #888;
|
|
109
|
+
line-height: 1.7em;
|
|
110
|
+
margin: 4px 0;
|
|
111
|
+
}
|
|
112
|
+
.sdk-chat-wework-control-location__offline{
|
|
113
|
+
height: 160px;
|
|
114
|
+
display: flex;
|
|
115
|
+
flex-direction: column;
|
|
116
|
+
justify-content: center;
|
|
117
|
+
line-height: 1.7em;
|
|
118
|
+
padding-bottom: 36px;
|
|
119
|
+
box-sizing: border-box;
|
|
120
|
+
position: relative;
|
|
121
|
+
overflow: hidden;
|
|
122
|
+
&:after{
|
|
123
|
+
content: '';
|
|
124
|
+
position: absolute;
|
|
125
|
+
left: 0;
|
|
126
|
+
right: 0;
|
|
127
|
+
top: 0;
|
|
128
|
+
bottom: 0;
|
|
129
|
+
background: url(./offline-bg.png) no-repeat 0 0 #f3f9f9;
|
|
130
|
+
background-size: cover;
|
|
131
|
+
filter: blur(4px)
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
.sdk-chat-wework-control-location__offline-value{
|
|
135
|
+
font-size: 20px;
|
|
136
|
+
}
|
|
137
|
+
.sdk-chat-wework-control-location__offline-value,
|
|
138
|
+
.sdk-chat-wework-control-location__offline-label{
|
|
139
|
+
padding: 6px 12px;
|
|
140
|
+
position: relative;
|
|
141
|
+
z-index: 3;
|
|
142
|
+
}
|
|
143
|
+
.sdk-chat-wework-control-location__offline-tips{
|
|
144
|
+
position: absolute;
|
|
145
|
+
left: 0;
|
|
146
|
+
bottom: 0;
|
|
147
|
+
height: 24px;
|
|
148
|
+
line-height: 24px;
|
|
149
|
+
padding: 6px 12px;
|
|
150
|
+
color: #999;
|
|
151
|
+
z-index: 3;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
.sdk-chat-wework-control-location__body{
|
|
155
|
+
overflow: hidden;
|
|
156
|
+
}
|
|
157
|
+
.sdk-chat-wework-control-location--quote {
|
|
158
|
+
.sdk-chat-wework-control-location__main{
|
|
159
|
+
display: flex;
|
|
160
|
+
flex-direction: row;
|
|
161
|
+
max-width: 360px;
|
|
162
|
+
}
|
|
163
|
+
.sdk-chat-wework-control-location__icon{
|
|
164
|
+
display: inline-block;
|
|
165
|
+
width: 18px;
|
|
166
|
+
height: 18px;
|
|
167
|
+
margin-right: 4px;
|
|
168
|
+
min-width: 18px;
|
|
169
|
+
vertical-align: top;
|
|
170
|
+
margin-top: 2px;
|
|
171
|
+
color: #999;
|
|
172
|
+
svg {
|
|
173
|
+
width: 100%;
|
|
174
|
+
height: 100%;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
.sdk-chat-wework-control-location__title{
|
|
178
|
+
margin-right: 6px;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
</style>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1752136523920" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4702" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M380.48 563.925333C398.901333 508.949333 450.826667 469.333333 512 469.333333s113.098667 39.616 131.52 94.592A709.162667 709.162667 0 0 0 821.333333 505.781333V202.666667a53.333333 53.333333 0 0 0-53.333333-53.333334H256a53.333333 53.333333 0 0 0-53.333333 53.333334v303.114666a709.152 709.152 0 0 0 177.813333 58.144z m268.768 64.010667C639.573333 695.072 581.813333 746.666667 512 746.666667c-69.813333 0-127.573333-51.594667-137.248-118.72A773.109333 773.109333 0 0 1 202.666667 576.117333V821.333333a53.333333 53.333333 0 0 0 53.333333 53.333334h512a53.333333 53.333333 0 0 0 53.333333-53.333334V576.128a773.12 773.12 0 0 1-172.085333 51.808zM256 85.333333h512c64.8 0 117.333333 52.533333 117.333333 117.333334v618.666666c0 64.8-52.533333 117.333333-117.333333 117.333334H256c-64.8 0-117.333333-52.533333-117.333333-117.333334V202.666667c0-64.8 52.533333-117.333333 117.333333-117.333334z m256 597.333334a74.666667 74.666667 0 1 0 0-149.333334 74.666667 74.666667 0 0 0 0 149.333334z" fill="#999" p-id="4703"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M907.938909 859.252364A116.782545 116.782545 0 0 1 791.272727 976.174545H223.441455a116.782545 116.782545 0 0 1-116.666182-116.922181V310.085818h87.738182l625.687272-10.496h87.738182z" fill="#EF4108" /><path d="M646.097455 469.527273a141.707636 141.707636 0 0 1-140.264728 103.866182c-115.293091 0-163.560727-107.496727-163.560727-107.496728a570.181818 570.181818 0 0 1-208.244364-84.084363l-27.252363-15.848728v-205.265454a116.014545 116.014545 0 0 1 116.666182-115.339637h567.854545a116.014545 116.014545 0 0 1 116.666182 115.339637v193.885091l-20.363637 12.846545c-4.491636 2.792727-8.866909 5.585455-13.265454 8.285091-68.538182 43.264-122.740364 77.451636-228.235636 93.812364z" fill="#FF6D0B" /><path d="M501.713455 621.242182a181.527273 181.527273 0 1 1 181.08509-181.527273 181.527273 181.527273 0 0 1-181.08509 181.527273z" fill="#FBE945" /><path d="M603.345455 510.906182v-42.565818H525.963636v-50.944h77.381819V374.923636h-21.224728l11.776-47.522909h-43.659636l-11.636364 47.522909h-61.253818l-13.218909-47.522909h-43.892364l13.218909 47.522909h-25.6v42.472728h75.776v50.944h-75.776v42.565818h75.776v64.093091H525.963636v-64.093091z" fill="#FF5D24" /></svg>
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-wework-control-redpacket" :class="['sdk-wework-control-redpacket--' + type]">
|
|
3
|
+
<template v-if="type === 'default'">
|
|
4
|
+
<div class="sdk-wework-control-redpacket__content">
|
|
5
|
+
<img class="sdk-wework-control-redpacket__icon" width="40px" :src="require('./red-envelope.svg')" alt="红包">
|
|
6
|
+
<div class="sdk-wework-control-redpacket__main">
|
|
7
|
+
<div class="sdk-wework-control-redpacket__title" :title="title">{{title}}</div>
|
|
8
|
+
<div class="sdk-wework-control-redpacket__description">{{description}}</div>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="sdk-chat-wework-control-redpacket__addon">
|
|
12
|
+
<div class="sdk-wework-control-redpacket__type">微红包</div>
|
|
13
|
+
<div class="sdk-wework-control-redpacket__action">
|
|
14
|
+
<!-- <template v-if="receivable">
|
|
15
|
+
<span class="sdk-wework-control-redpacket__action-item" @click="handleReceivableClick">
|
|
16
|
+
<span class="sdk-wework-control-redpacket__action-item-icon" v-if="loading"><ui-loading size="mini"></ui-loading></span>
|
|
17
|
+
<span class="sdk-wework-control-redpacket__action-item-text">点击领取</span>
|
|
18
|
+
</span>
|
|
19
|
+
</template> -->
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</template>
|
|
23
|
+
<template v-else>
|
|
24
|
+
<div class="sdk-wework-control-redpacket__icon"></div>
|
|
25
|
+
<div class="sdk-wework-control-redpacket__title" :title="title">{{title}}</div>
|
|
26
|
+
</template>
|
|
27
|
+
</div>
|
|
28
|
+
</template>
|
|
29
|
+
<script>
|
|
30
|
+
import { parse } from '../../../utils/json'
|
|
31
|
+
|
|
32
|
+
export default {
|
|
33
|
+
name: 'SdkChatControlRedpacket',
|
|
34
|
+
props: {
|
|
35
|
+
id: {
|
|
36
|
+
type: String
|
|
37
|
+
},
|
|
38
|
+
content: {
|
|
39
|
+
type: [Object, String]
|
|
40
|
+
},
|
|
41
|
+
receivable: {
|
|
42
|
+
type: Boolean,
|
|
43
|
+
default: false
|
|
44
|
+
},
|
|
45
|
+
receiveMethod: {
|
|
46
|
+
type: Function
|
|
47
|
+
},
|
|
48
|
+
type: {
|
|
49
|
+
type: String,
|
|
50
|
+
default: 'default',
|
|
51
|
+
validator (value) {
|
|
52
|
+
return ['quote', 'default'].includes(value)
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
data () {
|
|
57
|
+
return {
|
|
58
|
+
loading: false
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
computed: {
|
|
62
|
+
nextContent () {
|
|
63
|
+
return parse(this.content) || {}
|
|
64
|
+
},
|
|
65
|
+
title () {
|
|
66
|
+
return this.nextContent.wish
|
|
67
|
+
},
|
|
68
|
+
description () {
|
|
69
|
+
return ''
|
|
70
|
+
},
|
|
71
|
+
category () {
|
|
72
|
+
return '微红包'
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
methods: {
|
|
76
|
+
handleReceivableClick () {
|
|
77
|
+
const rs = this.receiveMethod({
|
|
78
|
+
content: this.nextContent
|
|
79
|
+
})
|
|
80
|
+
if (rs && rs.finally) {
|
|
81
|
+
this.loading = true
|
|
82
|
+
rs.finally(() => {
|
|
83
|
+
this.loading = false
|
|
84
|
+
})
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
</script>
|
|
90
|
+
<style lang="less">
|
|
91
|
+
.sdk-wework-control-redpacket--default{
|
|
92
|
+
background-color: #f79d46;
|
|
93
|
+
color: #fff;
|
|
94
|
+
border-radius: 4px;
|
|
95
|
+
width: 214px;
|
|
96
|
+
.sdk-wework-control-redpacket__content{
|
|
97
|
+
position: relative;
|
|
98
|
+
display: flex;
|
|
99
|
+
align-items: center;
|
|
100
|
+
padding: 12px;
|
|
101
|
+
box-sizing: content-box;
|
|
102
|
+
border-bottom: 1px solid rgba(255, 255, 255, .2);
|
|
103
|
+
}
|
|
104
|
+
.sdk-wework-control-redpacket__main{
|
|
105
|
+
flex: 1;
|
|
106
|
+
min-width: 0;
|
|
107
|
+
line-height: 1.3em;
|
|
108
|
+
}
|
|
109
|
+
.sdk-wework-control-redpacket__title{
|
|
110
|
+
line-height: 22px;
|
|
111
|
+
overflow: hidden;
|
|
112
|
+
margin-top: -12px;
|
|
113
|
+
white-space: nowrap;
|
|
114
|
+
text-overflow: ellipsis;
|
|
115
|
+
font-weight: bold;
|
|
116
|
+
}
|
|
117
|
+
.sdk-wework-control-redpacket__description{
|
|
118
|
+
font-size: 12px;
|
|
119
|
+
}
|
|
120
|
+
.sdk-chat-wework-control-redpacket__addon{
|
|
121
|
+
display: flex;
|
|
122
|
+
flex-direction: row;
|
|
123
|
+
align-items: center;
|
|
124
|
+
padding: 0 12px;
|
|
125
|
+
justify-content: space-between;
|
|
126
|
+
height: 24px;
|
|
127
|
+
line-height: 24px;
|
|
128
|
+
}
|
|
129
|
+
.sdk-wework-control-redpacket__type{
|
|
130
|
+
opacity: 0.7;
|
|
131
|
+
font-size: 12px;
|
|
132
|
+
}
|
|
133
|
+
.sdk-wework-control-redpacket__action-item{
|
|
134
|
+
font-size: 12px;
|
|
135
|
+
opacity: 0.7;
|
|
136
|
+
cursor: pointer;
|
|
137
|
+
transition: all .25s;
|
|
138
|
+
display: flex;
|
|
139
|
+
flex-direction: row;
|
|
140
|
+
align-items: center;
|
|
141
|
+
&:hover {
|
|
142
|
+
opacity: 1;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
.sdk-wework-control-redpacket__action-item-icon {
|
|
146
|
+
margin-right: 4px;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
.sdk-wework-control-redpacket--quote {
|
|
150
|
+
display: flex;
|
|
151
|
+
flex-direction: row;
|
|
152
|
+
.sdk-wework-control-redpacket__icon {
|
|
153
|
+
display: inline-block;
|
|
154
|
+
width: 18px;
|
|
155
|
+
height: 18px;
|
|
156
|
+
margin-right: 4px;
|
|
157
|
+
min-width: 18px;
|
|
158
|
+
vertical-align: top;
|
|
159
|
+
margin-top: 2px;
|
|
160
|
+
color: #999;
|
|
161
|
+
background: url('./quote-icon.svg') no-repeat 50% 50%;
|
|
162
|
+
background-size: cover;
|
|
163
|
+
}
|
|
164
|
+
.sdk-wework-control-redpacket__title{
|
|
165
|
+
margin-right: 6px;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
</style>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1752135335916" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5424" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M613.475512 1021.090975H410.530306c-192.501807 0-344.539079 0-344.539079-99.843549v-19.973364c0-187.120111 154.57976-339.331924 344.539079-339.331924h202.939388c189.959319 0 344.544897 152.211813 344.544897 339.331924v19.973364c-0.034908 99.843549-159.717097 99.843549-344.539079 99.843549zM410.495398 621.792414c-156.941888 0-284.648076 125.349878-284.648076 279.44674v19.967546c0 39.964183 164.505352 39.964183 284.648076 39.964182h202.945206c99.45374 0 284.653894 0 284.653894-39.964182v-19.967546c0-154.096861-127.712007-279.44674-284.653894-279.44674H410.495398z m91.343378-79.881821c-150.832936 0-273.483239-120.904889-273.483239-269.521147 0-148.610441 122.656121-269.480421 273.483239-269.480421s273.483239 120.86998 273.483239 269.480421c0 148.616259-122.685212 269.521147-273.483239 269.521147zM288.24654 272.389446c0 115.563919 95.817459 209.630145 213.592236 209.630144 117.786414 0 213.598055-94.031317 213.598055-209.630144S619.619372 62.794209 501.838776 62.794209c-117.774778 0-213.592237 94.037136-213.592236 209.595237z" fill="#999" p-id="5425"></path></svg>
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-wework-control-share-card" :class="['sdk-chat-wework-control-share-card--' + type]">
|
|
3
|
+
<template v-if="type === 'default' || type === 'thumb'">
|
|
4
|
+
<div class="sdk-chat-wework-control-share-card__main">
|
|
5
|
+
<div class="sdk-chat-wework-control-share-card__avatar">
|
|
6
|
+
<sdk-avatar :src="avatar" :radius="false" size="medium"></sdk-avatar>
|
|
7
|
+
</div>
|
|
8
|
+
<div class="sdk-chat-wework-control-share-card__fields">
|
|
9
|
+
<div class="sdk-chat-wework-control-share-card__title">{{name}}</div>
|
|
10
|
+
<div class="sdk-chat-wework-control-share-card__summary">{{description}}</div>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="sdk-chat-wework-control-share-card__foot">
|
|
14
|
+
<span class="sdk-chat-wework-control-share-card__category">{{category}}</span>
|
|
15
|
+
</div>
|
|
16
|
+
</template>
|
|
17
|
+
<template v-else-if="type === 'quote'">
|
|
18
|
+
<div class="sdk-chat-wework-control-share-card__icon"></div>
|
|
19
|
+
<div class="sdk-chat-wework-control-share-card__title">{{name}}</div>
|
|
20
|
+
<sdk-avatar :src="avatar" :radius="false" size="medium"></sdk-avatar>
|
|
21
|
+
</template>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
<script>
|
|
25
|
+
import SdkAvatar from '../../../common/avatar'
|
|
26
|
+
import { parse, parseXml } from '../../../utils/json'
|
|
27
|
+
|
|
28
|
+
export default {
|
|
29
|
+
name: 'SdkChatControlShareCard',
|
|
30
|
+
components: {
|
|
31
|
+
SdkAvatar
|
|
32
|
+
},
|
|
33
|
+
props: {
|
|
34
|
+
id: {
|
|
35
|
+
type: String
|
|
36
|
+
},
|
|
37
|
+
content: {
|
|
38
|
+
type: [Object, String]
|
|
39
|
+
},
|
|
40
|
+
type: {
|
|
41
|
+
type: String,
|
|
42
|
+
default: 'default',
|
|
43
|
+
validator (value) {
|
|
44
|
+
return ['quote', 'default', 'thumb'].includes(value)
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
computed: {
|
|
49
|
+
nextContent () {
|
|
50
|
+
let content = parse(this.content)
|
|
51
|
+
if (content && typeof content !== 'object') {
|
|
52
|
+
content = parseXml(content)
|
|
53
|
+
if (content && typeof content === 'object' && content.msg) {
|
|
54
|
+
content = content.msg
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
return content || {}
|
|
58
|
+
},
|
|
59
|
+
description () {
|
|
60
|
+
return this.nextContent.corpName || this.nextContent.alias
|
|
61
|
+
},
|
|
62
|
+
name () {
|
|
63
|
+
return this.nextContent.name
|
|
64
|
+
},
|
|
65
|
+
avatar () {
|
|
66
|
+
return this.nextContent.avatarUrl
|
|
67
|
+
},
|
|
68
|
+
category () {
|
|
69
|
+
return this.nextContent.corpName === '微信' ? '个微名片' : '企业微名片'
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
</script>
|
|
74
|
+
<style lang="less">
|
|
75
|
+
.sdk-chat-wework-control-share-card--default,
|
|
76
|
+
.sdk-chat-wework-control-share-card--thumb{
|
|
77
|
+
width: 248px;
|
|
78
|
+
max-width: 100%;
|
|
79
|
+
line-height: 1.5em;
|
|
80
|
+
.sdk-chat-wework-control-share-card__main{
|
|
81
|
+
display: flex;
|
|
82
|
+
flex-direction: row;
|
|
83
|
+
padding: 10px;
|
|
84
|
+
}
|
|
85
|
+
.sdk-chat-wework-control-share-card__fields{
|
|
86
|
+
flex: 1;
|
|
87
|
+
min-width: 0;
|
|
88
|
+
padding-left: 10px;
|
|
89
|
+
}
|
|
90
|
+
.sdk-chat-wework-control-share-card__title{
|
|
91
|
+
font-size: 14px;
|
|
92
|
+
overflow: hidden;
|
|
93
|
+
text-overflow: ellipsis;
|
|
94
|
+
white-space: nowrap;
|
|
95
|
+
}
|
|
96
|
+
.sdk-chat-wework-control-share-card__summary{
|
|
97
|
+
color: #888;
|
|
98
|
+
font-size: 12px;
|
|
99
|
+
overflow: hidden;
|
|
100
|
+
text-overflow: ellipsis;
|
|
101
|
+
white-space: nowrap;
|
|
102
|
+
margin-top: 6px;
|
|
103
|
+
}
|
|
104
|
+
.sdk-chat-wework-control-share-card__foot{
|
|
105
|
+
border-top: 1px solid #eee;
|
|
106
|
+
height: 24px;
|
|
107
|
+
line-height: 24px;
|
|
108
|
+
padding: 0 10px;
|
|
109
|
+
box-sizing: content-box;
|
|
110
|
+
}
|
|
111
|
+
.sdk-chat-wework-control-share-card__category{
|
|
112
|
+
color: #999;
|
|
113
|
+
font-size: 12px;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
.sdk-chat-wework-control-share-card--thumb{
|
|
117
|
+
border: 1px solid #eee;
|
|
118
|
+
border-radius: 4px;
|
|
119
|
+
background-color: #fff;
|
|
120
|
+
}
|
|
121
|
+
.sdk-chat-wework-control-share-card--quote {
|
|
122
|
+
display: flex;
|
|
123
|
+
flex-direction: row;
|
|
124
|
+
.sdk-chat-wework-control-share-card__icon {
|
|
125
|
+
display: inline-block;
|
|
126
|
+
width: 18px;
|
|
127
|
+
height: 18px;
|
|
128
|
+
margin-right: 2px;
|
|
129
|
+
min-width: 18px;
|
|
130
|
+
vertical-align: top;
|
|
131
|
+
margin-top: 2px;
|
|
132
|
+
color: #999;
|
|
133
|
+
background: url('./quote-icon.svg') no-repeat 50% 50%;
|
|
134
|
+
background-size: 72%;
|
|
135
|
+
}
|
|
136
|
+
.sdk-chat-wework-control-share-card__title{
|
|
137
|
+
margin-right: 6px;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
</style>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg t="1731930969407" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2066" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
|
|
4
|
+
<path d="M0 0h1024v1024H0z" fill="#91adad" p-id="2067"></path>
|
|
5
|
+
<path d="M584.85416126 201.97150659H827.74964523c4.49001789 0 8.18341971 3.62098217 8.18341972 8.1834197V241.87473011c0 4.49001789-3.62098217 8.18341971-8.18341972 8.1834197H584.85416126c-4.49001789 0-8.18341971-3.62098217-8.18341971-8.1834197V210.15492629c0-4.56243754 3.62098217-8.18341971 8.18341971-8.1834197zM576.67074156 384.83110618v-31.79222345c0-4.49001789 3.62098217-8.18341971 8.1834197-8.1834197H827.74964523c4.49001789 0 8.18341971 3.62098217 8.18341972 8.1834197v31.79222345c0 4.49001789-3.62098217 8.18341971-8.18341972 8.18341971H584.85416126c-4.56243754 0-8.18341971-3.69340181-8.18341971-8.18341971zM576.67074156 527.78748226v-31.79222345c0-4.49001789 3.62098217-8.18341971 8.1834197-8.1834197H827.74964523c4.49001789 0 8.18341971 3.62098217 8.18341972 8.1834197v31.79222344c0 4.49001789-3.62098217 8.18341971-8.18341972 8.18341973H584.85416126c-4.56243754 0-8.18341971-3.69340181-8.18341971-8.18341973zM187.55999756 670.74385834v-31.79222346c0-4.49001789 3.62098217-8.18341971 8.1834197-8.1834197H827.74964523c4.49001789 0 8.18341971 3.62098217 8.18341972 8.1834197v31.79222345c0 4.49001789-3.62098217 8.18341971-8.18341972 8.18341972H195.74341725c-4.56243754 0-8.18341971-3.69340181-8.18341969-8.18341972zM187.55999756 813.70023442v-31.79222347c0-4.49001789 3.62098217-8.18341971 8.1834197-8.18341969H827.74964523c4.49001789 0 8.18341971 3.62098217 8.18341972 8.18341969v31.79222347c0 4.49001789-3.62098217 8.18341971-8.18341972 8.18341971H195.74341725c-4.56243754 0-8.18341971-3.62098217-8.18341969-8.18341971zM187.70483684 253.67913198V209.72040844c0-4.49001789 3.62098217-8.18341971 8.18341971-8.18341971h307.78348446c4.49001789 0 8.18341971 3.62098217 8.1834197 8.18341971v44.24840212c0 4.49001789-3.62098217 8.18341971-8.18341969 8.1834197l-307.78348448-0.21725892c-4.56243754-0.07241965-8.18341971-3.69340181-8.1834197-8.25583935z" fill="#ffffff" p-id="9519"></path><path d="M317.33599854 260.7038374h64.81558084v309.59397555c0 8.18341971-6.6626072 14.8460269-14.8460269 14.84602689h-35.19594669c-8.18341971 0-14.8460269-6.6626072-14.84602691-14.8460269V260.7038374z" fill="#ffffff" p-id="9520"></path>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="sdk-chat-wework-control-text"
|
|
4
|
+
:class="['sdk-chat-wework-control-text--' + type]"
|
|
5
|
+
>
|
|
6
|
+
<div class="sdk-chat-wework-control-text__main">
|
|
7
|
+
<template v-if="hasScroll">
|
|
8
|
+
<ui-popover
|
|
9
|
+
:value="showPopover"
|
|
10
|
+
@input="handleShowPopoverChange"
|
|
11
|
+
>
|
|
12
|
+
<template slot="reference">
|
|
13
|
+
<div class="sdk-chat-wework-control-text__content"
|
|
14
|
+
v-html="html"
|
|
15
|
+
ref="popoverContent"
|
|
16
|
+
></div>
|
|
17
|
+
</template>
|
|
18
|
+
<div class="sdk-chat-wework-control-text__popover" v-html="html" :style="{'width': popoverWidth}"></div>
|
|
19
|
+
</ui-popover>
|
|
20
|
+
</template>
|
|
21
|
+
<template v-else>
|
|
22
|
+
<div class="sdk-chat-wework-control-text__content"
|
|
23
|
+
v-html="html"
|
|
24
|
+
ref="content"
|
|
25
|
+
></div>
|
|
26
|
+
</template>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
</template>
|
|
30
|
+
<script>
|
|
31
|
+
import { Popover as UiPopover } from '@aochuang/common/components'
|
|
32
|
+
import { html2Escape } from '../../../utils/string'
|
|
33
|
+
|
|
34
|
+
export default {
|
|
35
|
+
name: 'SdkChatControlText',
|
|
36
|
+
components: {
|
|
37
|
+
UiPopover
|
|
38
|
+
},
|
|
39
|
+
props: {
|
|
40
|
+
id: {
|
|
41
|
+
type: String
|
|
42
|
+
},
|
|
43
|
+
content: {
|
|
44
|
+
type: String
|
|
45
|
+
},
|
|
46
|
+
type: {
|
|
47
|
+
type: String,
|
|
48
|
+
default: 'default',
|
|
49
|
+
validator (value) {
|
|
50
|
+
return ['quote', 'default', 'thumb'].includes(value)
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
formatter: {
|
|
54
|
+
type: Function
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
data () {
|
|
58
|
+
return {
|
|
59
|
+
hasScroll: false,
|
|
60
|
+
showPopover: false,
|
|
61
|
+
popoverWidth: null
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
computed: {
|
|
65
|
+
nextContent () {
|
|
66
|
+
return this.content
|
|
67
|
+
},
|
|
68
|
+
text () {
|
|
69
|
+
return this.nextContent
|
|
70
|
+
},
|
|
71
|
+
html () {
|
|
72
|
+
let content = this.nextContent
|
|
73
|
+
if (this.formatter) {
|
|
74
|
+
content = this.formatter({
|
|
75
|
+
content: this.nextContent
|
|
76
|
+
})
|
|
77
|
+
} else {
|
|
78
|
+
content = html2Escape(content)
|
|
79
|
+
}
|
|
80
|
+
if (!content) {
|
|
81
|
+
return ''
|
|
82
|
+
}
|
|
83
|
+
content = content.replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig, item => {
|
|
84
|
+
return `<a href="${item}" target='_blank'>${item}</a>`
|
|
85
|
+
})
|
|
86
|
+
return content.trim()
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
mounted () {
|
|
90
|
+
if (this.$refs.content) {
|
|
91
|
+
this.hasScroll = this.$refs.content.scrollHeight > this.$refs.content.clientHeight
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
methods: {
|
|
95
|
+
handleShowPopoverChange (visible) {
|
|
96
|
+
if (this.$refs.popoverContent && visible) {
|
|
97
|
+
this.popoverWidth = this.$refs.popoverContent.offsetWidth + 'px'
|
|
98
|
+
}
|
|
99
|
+
this.$nextTick(() => {
|
|
100
|
+
this.showPopover = visible
|
|
101
|
+
})
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
</script>
|
|
106
|
+
<style lang="less">
|
|
107
|
+
.sdk-chat-wework-control-text--default {
|
|
108
|
+
.sdk-chat-wework-control-text__main{
|
|
109
|
+
padding: 10px;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
.sdk-chat-wework-control-text--quote {
|
|
113
|
+
.sdk-chat-wework-control-text__content{
|
|
114
|
+
display: -webkit-box;
|
|
115
|
+
-webkit-box-orient: vertical;
|
|
116
|
+
-webkit-line-clamp: 2; /* 限制显示3行 */
|
|
117
|
+
overflow: hidden;
|
|
118
|
+
max-width: 420px;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
.sdk-chat-wework-control-text--thumb {
|
|
122
|
+
background-color: #fff;
|
|
123
|
+
border: 1px solid #eee;
|
|
124
|
+
border-radius: 3px;
|
|
125
|
+
padding: 6px 10px;
|
|
126
|
+
.sdk-chat-wework-control-text__content{
|
|
127
|
+
display: -webkit-box;
|
|
128
|
+
-webkit-box-orient: vertical;
|
|
129
|
+
-webkit-line-clamp: 3; /* 限制显示3行 */
|
|
130
|
+
overflow: hidden;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
.sdk-chat-wework-control-text__main{
|
|
134
|
+
white-space: pre-wrap;
|
|
135
|
+
line-height: 1.5em;
|
|
136
|
+
word-break: break-all;
|
|
137
|
+
img {
|
|
138
|
+
vertical-align: top;
|
|
139
|
+
}
|
|
140
|
+
a {
|
|
141
|
+
color: #4387ff;
|
|
142
|
+
&:hover {
|
|
143
|
+
color: #4387ff;
|
|
144
|
+
text-decoration: underline;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
.sdk-chat-wework-control-text__popover{
|
|
149
|
+
white-space: pre-wrap;
|
|
150
|
+
line-height: 1.5em;
|
|
151
|
+
word-break: break-all;
|
|
152
|
+
padding: 10px;
|
|
153
|
+
img {
|
|
154
|
+
vertical-align: top;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
</style>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-wework-control-unkonw">未知消息类型</div>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
export default {
|
|
6
|
+
name: 'SdkChatControlUnkonw',
|
|
7
|
+
props: {
|
|
8
|
+
id: {
|
|
9
|
+
type: String
|
|
10
|
+
},
|
|
11
|
+
content: {
|
|
12
|
+
type: [String, Object]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
</script>
|
|
17
|
+
<style lang="less">
|
|
18
|
+
.sdk-chat-wework-control-unkonw{
|
|
19
|
+
padding: 10px;
|
|
20
|
+
}
|
|
21
|
+
</style>
|