@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,103 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import { parse, parseXml } from '../../../utils/json'
|
|
3
|
+
import UrlMerge from './url-merge'
|
|
4
|
+
import UrlMiniprogram from './url-miniprogram'
|
|
5
|
+
import UrlFile from './url-file'
|
|
6
|
+
import UrlLink from './url-link'
|
|
7
|
+
|
|
8
|
+
export default {
|
|
9
|
+
name: 'SdkChatPanelControlsUrl',
|
|
10
|
+
functional: true,
|
|
11
|
+
props: {
|
|
12
|
+
id: {
|
|
13
|
+
type: String
|
|
14
|
+
},
|
|
15
|
+
content: {
|
|
16
|
+
type: [Object, String]
|
|
17
|
+
},
|
|
18
|
+
updateChatBoxProp: {
|
|
19
|
+
type: Function
|
|
20
|
+
},
|
|
21
|
+
allowDownload: {
|
|
22
|
+
type: [Boolean, Function],
|
|
23
|
+
default: false
|
|
24
|
+
},
|
|
25
|
+
downloadMethod: {
|
|
26
|
+
type: Function
|
|
27
|
+
},
|
|
28
|
+
cancelDownloadMethod: {
|
|
29
|
+
type: Function
|
|
30
|
+
},
|
|
31
|
+
beforeLoadMergeMethod: {
|
|
32
|
+
type: Function
|
|
33
|
+
},
|
|
34
|
+
type: {
|
|
35
|
+
type: String,
|
|
36
|
+
default: 'default',
|
|
37
|
+
validator (value) {
|
|
38
|
+
return ['quote', 'default', 'thumb'].includes(value)
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
render (h, c) {
|
|
43
|
+
const { props } = c
|
|
44
|
+
let content = props.content
|
|
45
|
+
if (!content) {
|
|
46
|
+
return null
|
|
47
|
+
}
|
|
48
|
+
content = parse(content)
|
|
49
|
+
if (content.type === 'merged') {
|
|
50
|
+
return h(UrlMerge, {
|
|
51
|
+
props: {
|
|
52
|
+
id: props.id,
|
|
53
|
+
type: props.type,
|
|
54
|
+
content: content.content,
|
|
55
|
+
beforeLoad: props.beforeLoadMergeMethod
|
|
56
|
+
}
|
|
57
|
+
})
|
|
58
|
+
} else if (content.type === 2) {
|
|
59
|
+
return h(UrlMiniprogram, {
|
|
60
|
+
props: {
|
|
61
|
+
id: props.id,
|
|
62
|
+
type: props.type,
|
|
63
|
+
content
|
|
64
|
+
},
|
|
65
|
+
key: c.data.key
|
|
66
|
+
})
|
|
67
|
+
} else if (content.type === 'file') {
|
|
68
|
+
return h(UrlFile, {
|
|
69
|
+
props: {
|
|
70
|
+
id: props.id,
|
|
71
|
+
type: props.type,
|
|
72
|
+
content,
|
|
73
|
+
allowDownload: props.allowDownload,
|
|
74
|
+
downloadMethod: props.downloadMethod,
|
|
75
|
+
cancelDownloadMethod: props.cancelDownloadMethod,
|
|
76
|
+
updateChatBoxProp: c.props.updateChatBoxProp
|
|
77
|
+
},
|
|
78
|
+
key: c.data.key
|
|
79
|
+
})
|
|
80
|
+
} else {
|
|
81
|
+
if (typeof content === 'string') {
|
|
82
|
+
const xmlData = parseXml(content)
|
|
83
|
+
if (xmlData) {
|
|
84
|
+
content = {
|
|
85
|
+
title: xmlData.msg && xmlData.msg.appmsg && xmlData.msg.appmsg.title,
|
|
86
|
+
desc: xmlData.msg && xmlData.msg.appmsg && xmlData.msg.appmsg.des,
|
|
87
|
+
url: xmlData.msg && xmlData.msg.appmsg && xmlData.msg.appmsg.url
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
return h(UrlLink, {
|
|
92
|
+
props: {
|
|
93
|
+
id: props.id,
|
|
94
|
+
content,
|
|
95
|
+
type: props.type,
|
|
96
|
+
updateChatBoxProp: props.updateChatBoxProp
|
|
97
|
+
},
|
|
98
|
+
key: c.data.key
|
|
99
|
+
})
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
</script>
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
export const MESSAGE_TYPE = {
|
|
2
|
+
TEXT: 0,
|
|
3
|
+
IMAGE: 14,
|
|
4
|
+
VOICE: 16,
|
|
5
|
+
VIDEO: 23,
|
|
6
|
+
CUSTOM_EXPRESSION: 29,
|
|
7
|
+
CUSTOM_EXPRESSION_W: 104,
|
|
8
|
+
// MUSIC: 1040187441,
|
|
9
|
+
// ROOM_CALLING: 64,
|
|
10
|
+
SHARE_CARD: 41,
|
|
11
|
+
// COMPANY_CARD: 41,
|
|
12
|
+
// VIDEO: 43,
|
|
13
|
+
// CUSTOM_EXPRESSION: 47,
|
|
14
|
+
LOCATION: 6,
|
|
15
|
+
URL: 78,
|
|
16
|
+
URLNew: 13,
|
|
17
|
+
CALLING: 40,
|
|
18
|
+
// REAL_TIME_POSITION: -1879048186,
|
|
19
|
+
RED_ENVELOPES: 26,
|
|
20
|
+
// ACCOUNT_TRANSFER: 419430449,
|
|
21
|
+
// SYSTEM: 10000,
|
|
22
|
+
// SYSTEM_BATCH_MESSAGE: 10002,
|
|
23
|
+
// REVOKE_ME_MESSAGE: 268445458,
|
|
24
|
+
// REVOKE_YOU_MESSAGE: 285222674,
|
|
25
|
+
// REVOKE_OTHER_MESSAGE: 268445456,
|
|
26
|
+
JX_SYS_TEXT: 1000,
|
|
27
|
+
// MEMBER_CHANGE: 570425393,
|
|
28
|
+
// SYSTEM_MONEY: -10001,
|
|
29
|
+
// TIME_DIVIDER: -12346789,
|
|
30
|
+
// TEXT_WITH_AT: 90001,
|
|
31
|
+
// QUOTE_MESSAGE: 822083633,
|
|
32
|
+
CHANNEL_VIDEO: 141,
|
|
33
|
+
// CHANNEL_VIDEO_CARD: 771751985, // 视频号名片
|
|
34
|
+
CHANNEL_VIDEO_LIVE: 146 // 视频号直播
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function html2Escape (sHtml) {
|
|
38
|
+
return (sHtml || '').replace(/[<>]/g, (c) => {
|
|
39
|
+
return {
|
|
40
|
+
'<': '<',
|
|
41
|
+
'>': '>'
|
|
42
|
+
}[c]
|
|
43
|
+
})
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function formatSystemMessage (content) {
|
|
47
|
+
if (!content) {
|
|
48
|
+
return
|
|
49
|
+
}
|
|
50
|
+
// 微被异常关闭 <a href=\"weixin://voip/callagain/?username=wxid_ofo60wv6hxeg22&isvideocall=false\">重新拨打</a>
|
|
51
|
+
content = content.replace(/<a .*?>(.*)?<\/a>/, '$1')
|
|
52
|
+
// 你有一笔待接收的<_wc_custom_link_ href=\"weixin://wxpay/transfer/remindrcvmsg?fromusername=wxid_czvz4ar05mzj12&transferid=1000050001202403131427288081709&transfer_msg_type=1\">转账</_wc_custom_link_>
|
|
53
|
+
content = content.replace(/<_wc_custom_link_ .*?>(.*)?<\/_wc_custom_link_>/, '$1')
|
|
54
|
+
// <img src=\"SystemMessages_HongbaoIcon.png\"/> 你领取了黄哒哒的<_wc_custom_link_ color=\"#FD9931\" href=\"weixin://weixinhongbao/opendetail?sendid=1000039901202403067108164737017&sign=aeb7599b2ba534837903a501e7c0f3aaa3449225842552e5d19221a43b1be006d012bcbf25660c6700d3ff1488703edf16e033ec6fb8a35a484ff79b3d4d71bf90c7dd7561af1335314c9ef451b8d36c&ver=6\">红包</_wc_custom_link_>
|
|
55
|
+
content = content.replace(/<img .*?\/>/, '')
|
|
56
|
+
return content
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
function toJson (data) {
|
|
60
|
+
try {
|
|
61
|
+
return JSON.parse(data)
|
|
62
|
+
} catch (e) {
|
|
63
|
+
console.log(e)
|
|
64
|
+
}
|
|
65
|
+
return data
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* 格式化为短消息
|
|
70
|
+
*/
|
|
71
|
+
export function formatShortMessage (msgType, msgContent) {
|
|
72
|
+
let shortMessage = msgContent
|
|
73
|
+
switch (msgType) {
|
|
74
|
+
case MESSAGE_TYPE.TEXT:
|
|
75
|
+
shortMessage = msgContent
|
|
76
|
+
break
|
|
77
|
+
case MESSAGE_TYPE.TEXT_WITH_AT:
|
|
78
|
+
let {atId, content, text} = toJson(msgContent) || {}
|
|
79
|
+
shortMessage = text
|
|
80
|
+
break
|
|
81
|
+
case MESSAGE_TYPE.IMAGE:
|
|
82
|
+
shortMessage = '[图片消息]'
|
|
83
|
+
break
|
|
84
|
+
case MESSAGE_TYPE.VIDEO:
|
|
85
|
+
shortMessage = '[视频消息]'
|
|
86
|
+
break
|
|
87
|
+
case MESSAGE_TYPE.CUSTOM_EXPRESSION:
|
|
88
|
+
shortMessage = '[自定义表情消息]'
|
|
89
|
+
break
|
|
90
|
+
case MESSAGE_TYPE.VOICE:
|
|
91
|
+
shortMessage = '[语音消息]'
|
|
92
|
+
break
|
|
93
|
+
case MESSAGE_TYPE.MUSIC:
|
|
94
|
+
shortMessage = '[音乐消息]'
|
|
95
|
+
break
|
|
96
|
+
case MESSAGE_TYPE.JX_SYS_TEXT:
|
|
97
|
+
case MESSAGE_TYPE.MEMBER_CHANGE:
|
|
98
|
+
case MESSAGE_TYPE.SYSTEM_MONEY:
|
|
99
|
+
shortMessage = '[系统消息]'
|
|
100
|
+
break
|
|
101
|
+
case MESSAGE_TYPE.SYSTEM:
|
|
102
|
+
shortMessage = formatSystemMessage(msgContent)
|
|
103
|
+
break
|
|
104
|
+
case MESSAGE_TYPE.URL:
|
|
105
|
+
case MESSAGE_TYPE.URLNew:
|
|
106
|
+
const jsonObj = toJson(msgContent)
|
|
107
|
+
if (typeof jsonObj === 'object') {
|
|
108
|
+
if(jsonObj.type === 'file') {
|
|
109
|
+
shortMessage = '[文件消息]'
|
|
110
|
+
} else if(jsonObj.type === 'link') {
|
|
111
|
+
shortMessage = '[链接消息]'
|
|
112
|
+
} else if(jsonObj.type === 'miniprogram') {
|
|
113
|
+
shortMessage = '[小程序消息]'
|
|
114
|
+
} else if (jsonObj.type === 'music') {
|
|
115
|
+
shortMessage = '[音乐消息]'
|
|
116
|
+
} else if (jsonObj.type === 'merged') {
|
|
117
|
+
shortMessage = '[合并消息]'
|
|
118
|
+
} else {
|
|
119
|
+
shortMessage = '[链接消息]'
|
|
120
|
+
}
|
|
121
|
+
} else {
|
|
122
|
+
shortMessage = '[链接消息]'
|
|
123
|
+
}
|
|
124
|
+
break
|
|
125
|
+
case MESSAGE_TYPE.RED_ENVELOPES:
|
|
126
|
+
shortMessage = '[红包消息]'
|
|
127
|
+
break
|
|
128
|
+
case MESSAGE_TYPE.ACCOUNT_TRANSFER:
|
|
129
|
+
shortMessage = '[转账消息]'
|
|
130
|
+
break
|
|
131
|
+
case MESSAGE_TYPE.COMPANY_CARD:
|
|
132
|
+
case MESSAGE_TYPE.SHARE_CARD:
|
|
133
|
+
shortMessage = '[名片消息]'
|
|
134
|
+
break
|
|
135
|
+
case MESSAGE_TYPE.LOCATION:
|
|
136
|
+
shortMessage = '[位置消息]'
|
|
137
|
+
break
|
|
138
|
+
case MESSAGE_TYPE.QUOTE_MESSAGE:
|
|
139
|
+
let nextContent = null
|
|
140
|
+
if (typeof msgContent === 'string') {
|
|
141
|
+
nextContent = msgContent.replace(/^[\w-_@]+:{/, '{')
|
|
142
|
+
nextContent = toJson(nextContent)
|
|
143
|
+
}
|
|
144
|
+
if (!nextContent) {
|
|
145
|
+
shortMessage = '[引用消息]'
|
|
146
|
+
} else {
|
|
147
|
+
shortMessage = nextContent.content
|
|
148
|
+
}
|
|
149
|
+
break
|
|
150
|
+
case MESSAGE_TYPE.CHANNEL_VIDEO:
|
|
151
|
+
shortMessage = '[视频号消息]'
|
|
152
|
+
break
|
|
153
|
+
case MESSAGE_TYPE.CHANNEL_VIDEO_CARD:
|
|
154
|
+
shortMessage = '[视频号名片]'
|
|
155
|
+
break
|
|
156
|
+
case MESSAGE_TYPE.CHANNEL_VIDEO_LIVE:
|
|
157
|
+
shortMessage = '[视频号直播]'
|
|
158
|
+
break
|
|
159
|
+
case MESSAGE_TYPE.ROOM_CALLING:
|
|
160
|
+
case MESSAGE_TYPE.CALLING:
|
|
161
|
+
shortMessage = '[语音通话消息]'
|
|
162
|
+
break
|
|
163
|
+
case MESSAGE_TYPE.REVOKE_ME_MESSAGE:
|
|
164
|
+
case MESSAGE_TYPE.REVOKE_OTHER_MESSAGE:
|
|
165
|
+
shortMessage = '[撤回消息]'
|
|
166
|
+
break
|
|
167
|
+
default:
|
|
168
|
+
if (msgContent) {
|
|
169
|
+
shortMessage = '[未知消息]'
|
|
170
|
+
}
|
|
171
|
+
break
|
|
172
|
+
}
|
|
173
|
+
return html2Escape(shortMessage)
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* {
|
|
178
|
+
"conversationId": "c46acbc06c7d2c98fc1c2cc7a8a166d51b86b978",
|
|
179
|
+
"lastMsgContent": "<div>afwefwefwe</div>",
|
|
180
|
+
"lastMsgId": "6b8fb723bd3c2587e4cbe1c7dbf432273ae17937",
|
|
181
|
+
"lastMsgTime": 1752805509000,
|
|
182
|
+
"lastMsgType": 1,
|
|
183
|
+
"lastUpdateTime": 1752808689038,
|
|
184
|
+
"mute": false,
|
|
185
|
+
"stickyOnTop": false,
|
|
186
|
+
"targetId": "fa11efc7f771f73bd483d41e54084494e11b5d8b",
|
|
187
|
+
"type": 0,
|
|
188
|
+
"unreadMsgCount": 0,
|
|
189
|
+
"wechatAccountId": "e8aade993e66748cbb845d127ea8e2e067465de7"
|
|
190
|
+
}
|
|
191
|
+
*/
|
|
192
|
+
export function formatShortSessionMessage (session, contextFn) {
|
|
193
|
+
if (!session.lastMsgType) {
|
|
194
|
+
return
|
|
195
|
+
}
|
|
196
|
+
if (session.lastMsgType === MESSAGE_TYPE.TEXT_WITH_AT) {
|
|
197
|
+
const content = toJson(session.lastMsgContent)
|
|
198
|
+
if (!contextFn) {
|
|
199
|
+
throw new Error('缺少上下文函数')
|
|
200
|
+
}
|
|
201
|
+
if (content && content.atWechatIdsHash && content.atWechatIdsHash.length) {
|
|
202
|
+
const contextRs = contextFn()
|
|
203
|
+
if (contextRs && contextRs.then) {
|
|
204
|
+
return contextRs.then(rs => {
|
|
205
|
+
if (!rs.wechatAccount) {
|
|
206
|
+
return formatShortMessage(session.lastMsgType, session.lastMsgContent)
|
|
207
|
+
}
|
|
208
|
+
// 有未读消息才需要高亮红色提示
|
|
209
|
+
if (content.atWechatIdsHash.includes(rs.wechatAccount.wechatIdHash) && rs.session && rs.session.unreadMsgCount > 0) {
|
|
210
|
+
return `<span style="color: #e2544b;">[有人@我]</span>${html2Escape(content.text)}`
|
|
211
|
+
} else {
|
|
212
|
+
return formatShortMessage(session.lastMsgType, session.lastMsgContent)
|
|
213
|
+
}
|
|
214
|
+
})
|
|
215
|
+
} else {
|
|
216
|
+
return formatShortMessage(session.lastMsgType, session.lastMsgContent)
|
|
217
|
+
}
|
|
218
|
+
} else {
|
|
219
|
+
return formatShortMessage(session.lastMsgType, session.lastMsgContent)
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
return formatShortMessage(session.lastMsgType, session.lastMsgContent)
|
|
223
|
+
}
|
|
@@ -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="1731930511288" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1740" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M0 0h1024v1024H0z" fill="#6690FF" p-id="1741"></path><path d="M802.9696 692.736c15.9744 0 28.928-12.5184 28.928-27.904 0-0.5632 0.1024-0.7936 0.1024-1.1008V395.5968c0-0.3072-0.0768-0.5376-0.0768-1.1008 0-15.4112-12.9792-27.904-28.928-27.904-4.9152 0-9.472 1.1776-13.4656 3.2256h-0.1792l-88.2944 45.9776v-68.352c0-38.7584-32.512-70.1184-72.704-70.1184H264.704c-40.192 0-72.7296 31.36-72.7296 70.0928v350.464C192 736.6656 224.512 768 264.704 768h363.648c40.192 0 72.704-31.36 72.704-70.0928v-54.4512l88.8064 46.208c3.9936 1.792 8.3968 3.072 13.1072 3.072z" fill="#FFFFFF" p-id="1742"></path></svg>
|
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-wework-control-video" :key="url">
|
|
3
|
+
<div class="sdk-chat-wework-control-video__main" :style="{height: innerHeight + 'px', width: innerWidth + 'px'}">
|
|
4
|
+
<template v-if="!url && allowDownload && type === 'default'">
|
|
5
|
+
<div class="sdk-chat-wework-control-video__download" :class="{'is-downloading': downloading}" @click="handleDownloadClick">
|
|
6
|
+
<template v-if="downloading">
|
|
7
|
+
<div class="sdk-chat-wework-control-video__download-icon">
|
|
8
|
+
<ui-loading size="mini"></ui-loading>
|
|
9
|
+
</div>
|
|
10
|
+
<div class="sdk-chat-wework-control-video__download-text">下载中...</div>
|
|
11
|
+
</template>
|
|
12
|
+
<template v-else>
|
|
13
|
+
<div class="sdk-chat-wework-control-video__download-icon">
|
|
14
|
+
<ui-icon name="download-line"></ui-icon>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="sdk-chat-wework-control-video__download-text">下载</div>
|
|
17
|
+
</template>
|
|
18
|
+
</div>
|
|
19
|
+
<template v-if="innerCover">
|
|
20
|
+
<ui-video
|
|
21
|
+
:height="innerHeight"
|
|
22
|
+
:width="innerWidth"
|
|
23
|
+
:poster="innerCover"
|
|
24
|
+
:preload="innerCover ? 'none' : 'metadata'"
|
|
25
|
+
class="sdk-chat-wework-control-video__player"
|
|
26
|
+
></ui-video>
|
|
27
|
+
</template>
|
|
28
|
+
</template>
|
|
29
|
+
<template v-else>
|
|
30
|
+
<template v-if="allowDefrost">
|
|
31
|
+
<template v-if="defrostMsg">
|
|
32
|
+
<div class="sdk-chat-wework-control-video__defrost">
|
|
33
|
+
<div class="sdk-chat-wework-control-video__defrost-icon">
|
|
34
|
+
<ui-icon name="information-line" :size="20"></ui-icon>
|
|
35
|
+
</div>
|
|
36
|
+
<div class="sdk-chat-wework-control-video__defrost-text">
|
|
37
|
+
{{ defrostMsg }}
|
|
38
|
+
</div>
|
|
39
|
+
<div class="sdk-chat-wework-control-video__error-action">
|
|
40
|
+
<ui-button type="primary" size="mini" :click="handleRefreshClick">重新请求</ui-button>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
</template>
|
|
44
|
+
<template v-else-if="errorMsg">
|
|
45
|
+
<div class="sdk-chat-wework-control-video__error">
|
|
46
|
+
<div class="sdk-chat-wework-control-video__error-icon">
|
|
47
|
+
<ui-icon name="information-line" :size="20"></ui-icon>
|
|
48
|
+
</div>
|
|
49
|
+
<div class="sdk-chat-wework-control-video__error-text">
|
|
50
|
+
{{ errorMsg }}
|
|
51
|
+
</div>
|
|
52
|
+
<div class="sdk-chat-wework-control-video__error-action">
|
|
53
|
+
<ui-button type="primary" size="mini" :click="handleUnlockClick">尝试解档</ui-button>
|
|
54
|
+
</div>
|
|
55
|
+
</div>
|
|
56
|
+
</template>
|
|
57
|
+
<template v-else>
|
|
58
|
+
<ui-video
|
|
59
|
+
:src="url"
|
|
60
|
+
:height="innerHeight"
|
|
61
|
+
:width="innerWidth"
|
|
62
|
+
:poster="innerCover"
|
|
63
|
+
:preload="innerCover ? 'none' : 'metadata'"
|
|
64
|
+
@error="handleError"
|
|
65
|
+
class="sdk-chat-wework-control-video__player"
|
|
66
|
+
></ui-video>
|
|
67
|
+
</template>
|
|
68
|
+
</template>
|
|
69
|
+
<template v-else>
|
|
70
|
+
<ui-video
|
|
71
|
+
:src="url"
|
|
72
|
+
:height="innerHeight"
|
|
73
|
+
:width="innerWidth"
|
|
74
|
+
:poster="innerCover"
|
|
75
|
+
:preload="innerCover ? 'none' : 'metadata'"
|
|
76
|
+
@error="handleError"
|
|
77
|
+
class="sdk-chat-wework-control-video__player"
|
|
78
|
+
></ui-video>
|
|
79
|
+
</template>
|
|
80
|
+
</template>
|
|
81
|
+
</div>
|
|
82
|
+
</div>
|
|
83
|
+
</template>
|
|
84
|
+
<script>
|
|
85
|
+
import { Video as UiVideo, Button as UiButton, Icon as UiIcon, Loading as UiLoading } from '@aochuang/common/components'
|
|
86
|
+
import { parse } from '../../../utils/json'
|
|
87
|
+
import { formatOssPath } from '@aochuang/common/utils/oss'
|
|
88
|
+
|
|
89
|
+
export default {
|
|
90
|
+
name: 'SdkChatControlVideo',
|
|
91
|
+
components: {
|
|
92
|
+
UiIcon,
|
|
93
|
+
UiVideo,
|
|
94
|
+
UiButton,
|
|
95
|
+
UiLoading
|
|
96
|
+
},
|
|
97
|
+
props: {
|
|
98
|
+
id: {
|
|
99
|
+
type: String
|
|
100
|
+
},
|
|
101
|
+
content: {
|
|
102
|
+
type: [String, Object]
|
|
103
|
+
},
|
|
104
|
+
size: {
|
|
105
|
+
type: Number
|
|
106
|
+
},
|
|
107
|
+
width: {
|
|
108
|
+
type: String
|
|
109
|
+
},
|
|
110
|
+
height: {
|
|
111
|
+
type: String
|
|
112
|
+
},
|
|
113
|
+
duration: {
|
|
114
|
+
type: Number
|
|
115
|
+
},
|
|
116
|
+
allowDownload: {
|
|
117
|
+
type: Boolean
|
|
118
|
+
},
|
|
119
|
+
downloadMethod: {
|
|
120
|
+
type: Function
|
|
121
|
+
},
|
|
122
|
+
cancelDownloadMethod: {
|
|
123
|
+
type: Function
|
|
124
|
+
},
|
|
125
|
+
type: {
|
|
126
|
+
type: String,
|
|
127
|
+
default: 'default',
|
|
128
|
+
validator (value) {
|
|
129
|
+
return ['quote', 'default', 'thumb'].includes(value)
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
defrostMethod: {
|
|
133
|
+
type: Function
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
data () {
|
|
137
|
+
return {
|
|
138
|
+
downloading: false,
|
|
139
|
+
errorMsg: null,
|
|
140
|
+
defrostMsg: null,
|
|
141
|
+
nextContent: {}
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
computed: {
|
|
145
|
+
url () {
|
|
146
|
+
let url = null
|
|
147
|
+
if (typeof this.nextContent === 'string') {
|
|
148
|
+
url = this.nextContent
|
|
149
|
+
} else if (this.nextContent && typeof this.nextContent === 'object') {
|
|
150
|
+
if (this.nextContent.url) {
|
|
151
|
+
url = this.nextContent.url
|
|
152
|
+
} else {
|
|
153
|
+
url = this.nextContent.tencentUrl
|
|
154
|
+
// 如果tencentUrl不是一个有效的地址,就设置为null,后面好识别需要下载
|
|
155
|
+
if (!/^(http:\/\/|https:\/\/)/i.test(this.nextContent.tencentUrl)) {
|
|
156
|
+
url = null
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
return url
|
|
161
|
+
},
|
|
162
|
+
cover () {
|
|
163
|
+
if (!this.nextContent) {
|
|
164
|
+
return
|
|
165
|
+
}
|
|
166
|
+
return this.nextContent.previewImage
|
|
167
|
+
},
|
|
168
|
+
innerCover () {
|
|
169
|
+
return formatOssPath(this.cover)
|
|
170
|
+
},
|
|
171
|
+
innerWidth () {
|
|
172
|
+
if (this.type === 'quote') {
|
|
173
|
+
return '60'
|
|
174
|
+
} else if (this.type === 'thumb') {
|
|
175
|
+
return '150'
|
|
176
|
+
} else {
|
|
177
|
+
return this.width || '280'
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
innerHeight () {
|
|
181
|
+
if (this.type === 'quote') {
|
|
182
|
+
return '60'
|
|
183
|
+
} else if (this.type === 'thumb') {
|
|
184
|
+
return '84'
|
|
185
|
+
} else {
|
|
186
|
+
return this.height || '200'
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
allowDefrost () {
|
|
190
|
+
return !!this.defrostMethod
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
created () {
|
|
194
|
+
this.nextContent = parse(this.content) || {}
|
|
195
|
+
},
|
|
196
|
+
methods: {
|
|
197
|
+
handleDownloadClick () {
|
|
198
|
+
const rs = this.downloadMethod({
|
|
199
|
+
content: this.nextContent,
|
|
200
|
+
updateContentProp: (prop, value) => {
|
|
201
|
+
if (!['url'].includes(prop)) {
|
|
202
|
+
throw new Error('不支持的更新属性' + prop)
|
|
203
|
+
}
|
|
204
|
+
this.$set(this.nextContent, prop, value)
|
|
205
|
+
}
|
|
206
|
+
})
|
|
207
|
+
if (rs && rs.finally) {
|
|
208
|
+
this.downloading = true
|
|
209
|
+
rs.finally(() => {
|
|
210
|
+
this.downloading = false
|
|
211
|
+
})
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
handleError () {
|
|
215
|
+
if (!this.defrostMethod) {
|
|
216
|
+
return
|
|
217
|
+
}
|
|
218
|
+
this.errorMsg = '加载失败,可能资源被归档~'
|
|
219
|
+
},
|
|
220
|
+
handleUnlockClick () {
|
|
221
|
+
if (!this.defrostMethod) {
|
|
222
|
+
return
|
|
223
|
+
}
|
|
224
|
+
return this.defrostMethod({
|
|
225
|
+
content: this.content
|
|
226
|
+
}).then((res) => {
|
|
227
|
+
this.defrostMsg = res || '解冻已执行,请耐心等待~'
|
|
228
|
+
})
|
|
229
|
+
},
|
|
230
|
+
handleRefreshClick () {
|
|
231
|
+
this.errorMsg = null
|
|
232
|
+
this.defrostMsg = null
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
beforeDestroy () {
|
|
236
|
+
this.cancelDownloadMethod && this.cancelDownloadMethod()
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
</script>
|
|
240
|
+
<style lang="less">
|
|
241
|
+
.sdk-chat-wework-control-video {
|
|
242
|
+
position: relative;
|
|
243
|
+
}
|
|
244
|
+
.sdk-chat-wework-control-video__main{
|
|
245
|
+
position: relative;
|
|
246
|
+
border: 1px solid #ebebeb;
|
|
247
|
+
border-radius: 3px;
|
|
248
|
+
overflow: hidden;
|
|
249
|
+
display: inline-block;
|
|
250
|
+
vertical-align: top;
|
|
251
|
+
}
|
|
252
|
+
.sdk-chat-wework-control-video__player{
|
|
253
|
+
max-width: 300px;
|
|
254
|
+
max-height: 350px;
|
|
255
|
+
vertical-align: top;
|
|
256
|
+
}
|
|
257
|
+
.sdk-chat-wework-control-video__download{
|
|
258
|
+
position: absolute;
|
|
259
|
+
left: 0;
|
|
260
|
+
top: 0;
|
|
261
|
+
right: 0;
|
|
262
|
+
bottom: 0;
|
|
263
|
+
z-index: 3;
|
|
264
|
+
display: flex;
|
|
265
|
+
flex-direction: column;
|
|
266
|
+
align-items: center;
|
|
267
|
+
justify-content: center;
|
|
268
|
+
background-color: rgba(0,0,0,.5);
|
|
269
|
+
color: #ccc;
|
|
270
|
+
font-size: 12px;
|
|
271
|
+
line-height: 1em;
|
|
272
|
+
transition: all .25s;
|
|
273
|
+
&:not(.is-downloading) {
|
|
274
|
+
cursor: pointer;
|
|
275
|
+
&:hover {
|
|
276
|
+
color: #fff;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
.sdk-chat-wework-control-video__download-icon{
|
|
281
|
+
margin-bottom: 6px;
|
|
282
|
+
}
|
|
283
|
+
.sdk-chat-wework-control-video__defrost,
|
|
284
|
+
.sdk-chat-wework-control-video__error{
|
|
285
|
+
position: absolute;
|
|
286
|
+
left: 0;
|
|
287
|
+
top: 0;
|
|
288
|
+
right: 0;
|
|
289
|
+
bottom: 0;
|
|
290
|
+
z-index: 10;
|
|
291
|
+
background-color: #f2f2f2;
|
|
292
|
+
display: flex;
|
|
293
|
+
flex-direction: column;
|
|
294
|
+
align-items: center;
|
|
295
|
+
justify-content: center;
|
|
296
|
+
font-size: 12px;
|
|
297
|
+
padding: 12px;
|
|
298
|
+
color: #999;
|
|
299
|
+
line-height: 1.7em;
|
|
300
|
+
}
|
|
301
|
+
.sdk-chat-wework-control-video__error-action{
|
|
302
|
+
margin-top: 6px;
|
|
303
|
+
}
|
|
304
|
+
</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="1731930580090" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1903" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M0 0h1024v1024H0z" fill="#6690FF" p-id="1904"></path><path d="M512 853.3248c-188.5184 0-341.3248-152.832-341.3248-341.3248 0-188.5184 152.832-341.3248 341.3248-341.3248 188.5184 0 341.3248 152.832 341.3248 341.3248 0 188.5184-152.832 341.3248-341.3248 341.3248z m-16-338.4832c0-21.3248-32-21.3248-32 0v130.8416c0 21.3504 32 21.3504 32 0v-130.816zM410.6752 384c0-21.3248-32-21.3248-32 0v261.6832c0 21.3504 32 21.3504 32 0V384z m170.6496 53.3248c0-21.3248-32-21.3248-32 0v208.384c0 21.3248 32 21.3248 32 0v-208.384z m85.3504 21.3504c0-21.3504-32-21.3504-32 0v187.008c0 21.3504 32 21.3504 32 0v-187.008z" fill="#FFFFFF" p-id="1905"></path></svg>
|