@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,464 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="sdk-wechat-chat-control-voice"
|
|
4
|
+
:class="[{'is-play': isPlaying}, 'is-dir-' + dir]"
|
|
5
|
+
>
|
|
6
|
+
<div class="sdk-wechat-chat-control-voice__main">
|
|
7
|
+
<div class="sdk-wechat-chat-control-voice__main-inner">
|
|
8
|
+
<template v-if="transformVoiceToTextEnable">
|
|
9
|
+
<span v-if="transformStatus === -1" class="sdk-wechat-chat-control-voice__totext" @click="handleTransformClick" title="语音转文字">
|
|
10
|
+
<ui-button :disabled="transforming" :plain="true"><ui-icon :name="transformIcon" :size="18"></ui-icon></ui-button>
|
|
11
|
+
</span>
|
|
12
|
+
<span v-else-if="transformStatus === 1" class="sdk-wechat-chat-control-voice__refresh" @click="handleRefreshClick" title="刷新">
|
|
13
|
+
<ui-button :disabled="refreshing" :plain="true"><ui-icon name="refresh-line" :size="18"></ui-icon></ui-button>
|
|
14
|
+
</span>
|
|
15
|
+
<slot name="toolbar"></slot>
|
|
16
|
+
</template>
|
|
17
|
+
<div class="sdk-wechat-chat-control-voice__player">
|
|
18
|
+
<ac-voice-player
|
|
19
|
+
v-if="voiceSrc"
|
|
20
|
+
ref="player"
|
|
21
|
+
:id="nextId"
|
|
22
|
+
:url="voiceSrc"
|
|
23
|
+
:enable-convert-to-wav="enableConvertToWav"
|
|
24
|
+
:update-wav-method="updateWavMethod"
|
|
25
|
+
:seconds="voiceDuration"
|
|
26
|
+
:allow-download="allowDownload"
|
|
27
|
+
></ac-voice-player>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
<div class="sdk-wechat-chat-control-voice__result" v-if="transformStatus !== -1">
|
|
32
|
+
<template v-if="transformStatus === 1">
|
|
33
|
+
<div class="sdk-wechat-chat-control-voice__result-status">
|
|
34
|
+
<ui-icon name="loading"></ui-icon>转换中
|
|
35
|
+
</div>
|
|
36
|
+
</template>
|
|
37
|
+
<template v-if="transformStatus === 0">
|
|
38
|
+
<div class="sdk-wechat-chat-control-voice__result-text" v-if="previewTransformContent" v-html="previewTransformContent"></div>
|
|
39
|
+
<div class="sdk-wechat-chat-control-voice__result-status">
|
|
40
|
+
<ui-icon name="checkbox-circle-fill"></ui-icon>转换完成
|
|
41
|
+
</div>
|
|
42
|
+
</template>
|
|
43
|
+
<template v-else-if="transformStatus === 2">
|
|
44
|
+
<div class="sdk-wechat-chat-control-voice__result-text" v-if="transformContent" v-html="transformContent"></div>
|
|
45
|
+
<div class="sdk-wechat-chat-control-voice__result-status">
|
|
46
|
+
<ui-icon name="close-circle-fill"></ui-icon>转换失败
|
|
47
|
+
</div>
|
|
48
|
+
</template>
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
</template>
|
|
52
|
+
<script>
|
|
53
|
+
import { parse } from '../../../utils/json'
|
|
54
|
+
import { unique } from '../../../utils/string'
|
|
55
|
+
import AcVoicePlayer from '@aochuang/common/common/voice-player'
|
|
56
|
+
|
|
57
|
+
const ConvertStatusEnum = {
|
|
58
|
+
NORMAL: -1, // 没有转换
|
|
59
|
+
ERROR: 2, // 转换失败
|
|
60
|
+
CONVERTING: 1, // 转换中
|
|
61
|
+
COMPLETE: 0 // 转换成功
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export default {
|
|
65
|
+
name: 'SdkWechatChatControlVoice',
|
|
66
|
+
inject: ['AcVoice'],
|
|
67
|
+
components: {
|
|
68
|
+
AcVoicePlayer
|
|
69
|
+
},
|
|
70
|
+
props: {
|
|
71
|
+
id: {
|
|
72
|
+
type: String
|
|
73
|
+
},
|
|
74
|
+
dir: {
|
|
75
|
+
type: String,
|
|
76
|
+
default: 'left'
|
|
77
|
+
},
|
|
78
|
+
content: {
|
|
79
|
+
type: [String, Object]
|
|
80
|
+
},
|
|
81
|
+
/**
|
|
82
|
+
* 支持两种方式,第一种纯文本,第二种数组,如
|
|
83
|
+
* [{
|
|
84
|
+
* end: 0,
|
|
85
|
+
* spk: 0,
|
|
86
|
+
* start: 0,
|
|
87
|
+
* text: '一段话'
|
|
88
|
+
* }]
|
|
89
|
+
*/
|
|
90
|
+
convertContent: {
|
|
91
|
+
type: [String, Array]
|
|
92
|
+
},
|
|
93
|
+
convertStatus: {
|
|
94
|
+
type: Number
|
|
95
|
+
},
|
|
96
|
+
formatter: {
|
|
97
|
+
type: Function
|
|
98
|
+
},
|
|
99
|
+
allowDownload: {
|
|
100
|
+
type: Boolean,
|
|
101
|
+
default: true
|
|
102
|
+
},
|
|
103
|
+
transformVoiceToTextEnable: {
|
|
104
|
+
type: Boolean,
|
|
105
|
+
default: false
|
|
106
|
+
},
|
|
107
|
+
transformVoiceToTextMethod: {
|
|
108
|
+
type: Function
|
|
109
|
+
},
|
|
110
|
+
getVoiceToTextResultMethod: {
|
|
111
|
+
type: Function
|
|
112
|
+
},
|
|
113
|
+
enableConvertToWav: {
|
|
114
|
+
type: Boolean,
|
|
115
|
+
default: true
|
|
116
|
+
},
|
|
117
|
+
updateWavMethod: {
|
|
118
|
+
type: Function
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
data () {
|
|
122
|
+
return {
|
|
123
|
+
transformStatus: typeof this.convertStatus === 'number' ? this.convertStatus : ConvertStatusEnum.NORMAL,
|
|
124
|
+
playRate: 1,
|
|
125
|
+
transforming: false,
|
|
126
|
+
transformContent: this.convertContent,
|
|
127
|
+
refreshing: false
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
computed: {
|
|
131
|
+
nextContent () {
|
|
132
|
+
return parse(this.content) || {}
|
|
133
|
+
},
|
|
134
|
+
voiceSrc () {
|
|
135
|
+
let url = this.nextContent.url || this.nextContent.resUrl
|
|
136
|
+
return url
|
|
137
|
+
},
|
|
138
|
+
nextId () {
|
|
139
|
+
return this.id || unique()
|
|
140
|
+
},
|
|
141
|
+
voiceDuration () {
|
|
142
|
+
return this.nextContent.durationMs ? this.nextContent.durationMs / 1000 : null
|
|
143
|
+
},
|
|
144
|
+
isPlaying () {
|
|
145
|
+
return this.AcVoice.isPlaying(this.id)
|
|
146
|
+
},
|
|
147
|
+
transformIcon () {
|
|
148
|
+
return this.transforming ? 'loading' : 'voice-text-line'
|
|
149
|
+
},
|
|
150
|
+
innerTransformContent () {
|
|
151
|
+
if (this.transformStatus === 0 && this.formatter) {
|
|
152
|
+
const content = this.formatter({
|
|
153
|
+
content: this.transformContent
|
|
154
|
+
})
|
|
155
|
+
if (!content) {
|
|
156
|
+
return ''
|
|
157
|
+
}
|
|
158
|
+
return content
|
|
159
|
+
} else {
|
|
160
|
+
return this.transformContent
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
previewTransformContent () {
|
|
164
|
+
if (Array.isArray(this.transformContent)) {
|
|
165
|
+
return this.transformContent.map(v => v.text || v.text_seg).join('\n')
|
|
166
|
+
} else {
|
|
167
|
+
return this.innerTransformContent
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
methods: {
|
|
172
|
+
handleTransformClick () {
|
|
173
|
+
if (this.transformVoiceToTextMethod) {
|
|
174
|
+
this.transforming = true
|
|
175
|
+
this.transformStatus = ConvertStatusEnum.CONVERTING
|
|
176
|
+
return this.transformVoiceToTextMethod().then((rs) => {
|
|
177
|
+
this.transforming = false
|
|
178
|
+
this.loopGetVoiceToTextResult()
|
|
179
|
+
}, () => {
|
|
180
|
+
this.transforming = false
|
|
181
|
+
this.transformStatus = ConvertStatusEnum.ERROR
|
|
182
|
+
})
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
handleRefreshClick () {
|
|
186
|
+
this.refreshing = true
|
|
187
|
+
return this.getVoiceToTextResult().then((rs) => {
|
|
188
|
+
this.refreshing = false
|
|
189
|
+
}, () => {
|
|
190
|
+
this.refreshing = false
|
|
191
|
+
})
|
|
192
|
+
},
|
|
193
|
+
updateTransformContent (result) {
|
|
194
|
+
if (!result) {
|
|
195
|
+
return
|
|
196
|
+
}
|
|
197
|
+
if (result.code === 0) {
|
|
198
|
+
this.transformStatus = ConvertStatusEnum.COMPLETE
|
|
199
|
+
if (result.sentences) {
|
|
200
|
+
this.transformContent = (result.sentences || []).map(v => v.text || v.text_seg).join('\n')
|
|
201
|
+
} else {
|
|
202
|
+
this.transformContent = result.text
|
|
203
|
+
}
|
|
204
|
+
} else if (result.code === 1) {
|
|
205
|
+
this.transformStatus = ConvertStatusEnum.CONVERTING
|
|
206
|
+
this.transformContent = '转换中'
|
|
207
|
+
} else if (result.code === 2) {
|
|
208
|
+
this.transformStatus = ConvertStatusEnum.ERROR
|
|
209
|
+
this.transformContent = result.errMsg
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
getVoiceToTextResult () {
|
|
213
|
+
return new Promise((resolve, reject) => {
|
|
214
|
+
if (!this.getVoiceToTextResultMethod) {
|
|
215
|
+
return reject()
|
|
216
|
+
}
|
|
217
|
+
return this.getVoiceToTextResultMethod().then((rs) => {
|
|
218
|
+
if (typeof rs === 'string') {
|
|
219
|
+
rs = parse(rs)
|
|
220
|
+
}
|
|
221
|
+
if (rs) {
|
|
222
|
+
this.updateTransformContent(rs)
|
|
223
|
+
}
|
|
224
|
+
resolve(rs)
|
|
225
|
+
}, reject)
|
|
226
|
+
})
|
|
227
|
+
},
|
|
228
|
+
loopGetVoiceToTextResult () {
|
|
229
|
+
clearTimeout(this._timer)
|
|
230
|
+
if (this.transformStatus !== ConvertStatusEnum.CONVERTING) {
|
|
231
|
+
return
|
|
232
|
+
}
|
|
233
|
+
this._timer = setTimeout(() => {
|
|
234
|
+
this.getVoiceToTextResult().then(() => {
|
|
235
|
+
this.loopGetVoiceToTextResult()
|
|
236
|
+
})
|
|
237
|
+
}, 1000 * 10)
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
beforeDestroy () {
|
|
241
|
+
clearTimeout(this._timer)
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
</script>
|
|
245
|
+
<style lang="less">
|
|
246
|
+
.sdk-wechat-chat-control-voice{
|
|
247
|
+
&.is-play{
|
|
248
|
+
.sdk-wechat-chat-control-voice-icon__main{
|
|
249
|
+
-webkit-animation: 1s sdk-wechat-chat-control-voice-icon-animate1 infinite;
|
|
250
|
+
animation: 1s sdk-wechat-chat-control-voice-icon-animate1 infinite;
|
|
251
|
+
&:after{
|
|
252
|
+
-webkit-animation: 1s sdk-wechat-chat-control-voice-icon-animate2 infinite;
|
|
253
|
+
animation: 1s sdk-wechat-chat-control-voice-icon-animate2 infinite;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
&.is-percentage-active{
|
|
257
|
+
.sdk-wechat-chat-control-voice__percentage{
|
|
258
|
+
display: block;
|
|
259
|
+
}
|
|
260
|
+
&.is-dir-left{
|
|
261
|
+
.ac-wechat-record-panel-chat-box__arrow-main{
|
|
262
|
+
background-color: #F0F8FC!important;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
&.is-dir-left{
|
|
268
|
+
text-align: left;
|
|
269
|
+
.sdk-wechat-chat-control-voice__icon{
|
|
270
|
+
transform: rotate(135deg);
|
|
271
|
+
float: left;
|
|
272
|
+
margin-right: 4px;
|
|
273
|
+
}
|
|
274
|
+
.sdk-wechat-chat-control-voice__main-inner{
|
|
275
|
+
flex-direction: row-reverse;
|
|
276
|
+
}
|
|
277
|
+
.sdk-wechat-chat-control-voice__tools{
|
|
278
|
+
right: 3px;
|
|
279
|
+
}
|
|
280
|
+
.sdk-wechat-chat-control-voice__percentage{
|
|
281
|
+
background-color: #F0F8FC;
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
&.is-dir-right{
|
|
285
|
+
text-align: right;
|
|
286
|
+
.sdk-wechat-chat-control-voice__tools{
|
|
287
|
+
left: 3px;
|
|
288
|
+
}
|
|
289
|
+
.sdk-wechat-chat-control-voice__percentage{
|
|
290
|
+
background-color: rgba(0,0,0,.1);
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
.sdk-wechat-chat-control-voice__result{
|
|
295
|
+
border-radius: 3px;
|
|
296
|
+
max-width: 282px;
|
|
297
|
+
margin-top: 6px;
|
|
298
|
+
background-color: rgba(0, 0, 0, 0.06);
|
|
299
|
+
}
|
|
300
|
+
.sdk-wechat-chat-control-voice__result-text{
|
|
301
|
+
padding: 10px 12px 0;
|
|
302
|
+
text-align: left;
|
|
303
|
+
max-height: 360px;
|
|
304
|
+
overflow: auto;
|
|
305
|
+
white-space: pre-wrap;
|
|
306
|
+
}
|
|
307
|
+
.sdk-wechat-chat-control-voice__result-status{
|
|
308
|
+
padding: 6px 12px;
|
|
309
|
+
color: #888;
|
|
310
|
+
font-size: 12px;
|
|
311
|
+
display: flex;
|
|
312
|
+
flex-direction: row;
|
|
313
|
+
align-items: center;
|
|
314
|
+
.ui-icon{
|
|
315
|
+
margin-right: 4px;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
.sdk-wechat-chat-control-voice__main{
|
|
319
|
+
display: inline-block;
|
|
320
|
+
vertical-align: top;
|
|
321
|
+
}
|
|
322
|
+
.sdk-wechat-chat-control-voice__main-inner{
|
|
323
|
+
display: flex;
|
|
324
|
+
flex-direction: row;
|
|
325
|
+
align-items: center;
|
|
326
|
+
}
|
|
327
|
+
.sdk-wechat-chat-control-voice__totext{
|
|
328
|
+
margin-left: 6px;
|
|
329
|
+
margin-right: 6px;
|
|
330
|
+
cursor: pointer;
|
|
331
|
+
}
|
|
332
|
+
.sdk-wechat-chat-control-voice__refresh{
|
|
333
|
+
margin-left: 6px;
|
|
334
|
+
margin-right: 6px;
|
|
335
|
+
cursor: pointer;
|
|
336
|
+
}
|
|
337
|
+
.sdk-wechat-chat-control-voice__box{
|
|
338
|
+
cursor: pointer;
|
|
339
|
+
padding: 8px 12px;
|
|
340
|
+
line-height: 24px;
|
|
341
|
+
}
|
|
342
|
+
.sdk-wechat-chat-control-voice__icon{
|
|
343
|
+
display: inline-block;
|
|
344
|
+
width: 12px;
|
|
345
|
+
height: 12px;
|
|
346
|
+
vertical-align: top;
|
|
347
|
+
overflow: hidden;
|
|
348
|
+
transform: rotate(-45deg);
|
|
349
|
+
margin-top: 6px;
|
|
350
|
+
position: relative;
|
|
351
|
+
z-index: 3;
|
|
352
|
+
}
|
|
353
|
+
.sdk-wechat-chat-control-voice__time{
|
|
354
|
+
display: inline-block;
|
|
355
|
+
vertical-align: top;
|
|
356
|
+
position: relative;
|
|
357
|
+
z-index: 3;
|
|
358
|
+
}
|
|
359
|
+
.sdk-wechat-chat-control-voice__percentage{
|
|
360
|
+
position: absolute;
|
|
361
|
+
z-index: 1;
|
|
362
|
+
left: 0;
|
|
363
|
+
top: 0;
|
|
364
|
+
bottom: 0;
|
|
365
|
+
display: none;
|
|
366
|
+
transition: width .1s;
|
|
367
|
+
}
|
|
368
|
+
.sdk-wechat-chat-control-voice-icon__main{
|
|
369
|
+
display: inline-block;
|
|
370
|
+
width: 20px;
|
|
371
|
+
height: 20px;
|
|
372
|
+
border: 2px solid #404040;
|
|
373
|
+
border-radius: 50%;
|
|
374
|
+
position: relative;
|
|
375
|
+
&:after{
|
|
376
|
+
position: absolute;
|
|
377
|
+
left: 50%;
|
|
378
|
+
top: 50%;
|
|
379
|
+
transform: translate(-50%, -50%);
|
|
380
|
+
content: '';
|
|
381
|
+
display: inline-block;
|
|
382
|
+
width: 12px;
|
|
383
|
+
height: 12px;
|
|
384
|
+
border: 2px solid #404040;
|
|
385
|
+
border-radius: 50%;
|
|
386
|
+
}
|
|
387
|
+
&:before{
|
|
388
|
+
position: absolute;
|
|
389
|
+
left: 50%;
|
|
390
|
+
top: 50%;
|
|
391
|
+
transform: translate(-50%, -50%);
|
|
392
|
+
content: '';
|
|
393
|
+
display: inline-block;
|
|
394
|
+
width: 8px;
|
|
395
|
+
height: 8px;
|
|
396
|
+
background-color: #404040;
|
|
397
|
+
border-radius: 50%;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
.sdk-wechat-chat-control-voice__tools{
|
|
401
|
+
position: absolute;
|
|
402
|
+
top: 8px;
|
|
403
|
+
bottom: 0;
|
|
404
|
+
z-index: 6;
|
|
405
|
+
line-height: 1;
|
|
406
|
+
}
|
|
407
|
+
.sdk-wechat-chat-control-voice__menu{
|
|
408
|
+
list-style: none;
|
|
409
|
+
margin: 0;
|
|
410
|
+
padding: 6px 0;
|
|
411
|
+
}
|
|
412
|
+
.sdk-wechat-chat-control-voice__menu-item{
|
|
413
|
+
height: 30px;
|
|
414
|
+
line-height: 30px;
|
|
415
|
+
padding: 0 24px 0 12px;
|
|
416
|
+
cursor: pointer;
|
|
417
|
+
transition: all .3s;
|
|
418
|
+
position: relative;
|
|
419
|
+
&.is-active{
|
|
420
|
+
background-color: #F0F8FC;
|
|
421
|
+
color: #00A0EB;
|
|
422
|
+
&:after{
|
|
423
|
+
position: absolute;
|
|
424
|
+
right: 12px;
|
|
425
|
+
top: 50%;
|
|
426
|
+
transform: translateY(-50%) rotate(-45deg);
|
|
427
|
+
content: '';
|
|
428
|
+
display: inline-block;
|
|
429
|
+
width: 6px;
|
|
430
|
+
height: 4px;
|
|
431
|
+
border: 1px solid #00A0EB;
|
|
432
|
+
border-top: 0;
|
|
433
|
+
border-right: 0;
|
|
434
|
+
margin-top: -1px;
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
&:hover{
|
|
438
|
+
background-color: rgba(0,0,0,.06);
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
@-webkit-keyframes sdk-wechat-chat-control-voice-icon-animate1 {
|
|
442
|
+
0% {
|
|
443
|
+
border-color: transparent;
|
|
444
|
+
}
|
|
445
|
+
50% {
|
|
446
|
+
border-color: transparent;
|
|
447
|
+
}
|
|
448
|
+
100% {
|
|
449
|
+
border-color: #404040;
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
@-webkit-keyframes sdk-wechat-chat-control-voice-icon-animate2 {
|
|
454
|
+
0% {
|
|
455
|
+
border-color: transparent;
|
|
456
|
+
}
|
|
457
|
+
50% {
|
|
458
|
+
border-color: #404040;
|
|
459
|
+
}
|
|
460
|
+
100% {
|
|
461
|
+
border-color: #404040;
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
</style>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
name: 'SdkWecahtChatControlConfigItem',
|
|
4
|
+
functional: true,
|
|
5
|
+
inject: {
|
|
6
|
+
SdkWechatChatControlConfig: {
|
|
7
|
+
default: null
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
props: {
|
|
11
|
+
/**
|
|
12
|
+
* 消息类型
|
|
13
|
+
*/
|
|
14
|
+
msgType: {
|
|
15
|
+
type: [Number, String]
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
render (h, c) {
|
|
19
|
+
return c.scopedSlots.default({
|
|
20
|
+
configData: c.injections.SdkWechatChatControlConfig ? c.injections.SdkWechatChatControlConfig.getControlConfig(c.props.msgType) : null
|
|
21
|
+
})
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
</script>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
name: 'SdkWecahtChatControlConfigMsg',
|
|
4
|
+
functional: true,
|
|
5
|
+
inject: ['SdkWechatChatControlConfig'],
|
|
6
|
+
props: {
|
|
7
|
+
/**
|
|
8
|
+
* 标准的客服端消息数据
|
|
9
|
+
*/
|
|
10
|
+
msgData: {
|
|
11
|
+
type: Object,
|
|
12
|
+
required: true
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
render (h, c) {
|
|
16
|
+
return c.scopedSlots.default({
|
|
17
|
+
configData: c.injections.SdkWechatChatControlConfig.getMessageConfig(c.props.msgData)
|
|
18
|
+
})
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
</script>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
name: 'SdkWechatChatControlConfig',
|
|
4
|
+
provide () {
|
|
5
|
+
return {
|
|
6
|
+
SdkWechatChatControlConfig: this
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
inject: {
|
|
10
|
+
// 可以继承上级的
|
|
11
|
+
SdkWechatChatControlConfig: {
|
|
12
|
+
default: null
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
props: {
|
|
16
|
+
/**
|
|
17
|
+
* 这个是组件级别的配置,wechatChatPanel是消息级别的配置,后面是消息级别配置覆盖组件级别的配置
|
|
18
|
+
* {
|
|
19
|
+
* 1: {
|
|
20
|
+
* formatter () {
|
|
21
|
+
* xxx
|
|
22
|
+
* }
|
|
23
|
+
* }
|
|
24
|
+
* }
|
|
25
|
+
*/
|
|
26
|
+
controlConfig: {
|
|
27
|
+
type: Object
|
|
28
|
+
},
|
|
29
|
+
/**
|
|
30
|
+
* 消息级别配置,消息级别配置会覆盖控件级别配置
|
|
31
|
+
* 主要是项目里面有几种实用场景,第一种聊天记录,第二种风控,第三种消息预览
|
|
32
|
+
*/
|
|
33
|
+
messageConfig: {
|
|
34
|
+
type: Function
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
render () {
|
|
38
|
+
return this.$slots.default
|
|
39
|
+
},
|
|
40
|
+
methods: {
|
|
41
|
+
getControlConfig (msgType) {
|
|
42
|
+
if (!this.controlConfig) {
|
|
43
|
+
return
|
|
44
|
+
}
|
|
45
|
+
return this.controlConfig[msgType]
|
|
46
|
+
},
|
|
47
|
+
getMessageConfig (msgData) {
|
|
48
|
+
if (!this.messageConfig) {
|
|
49
|
+
return
|
|
50
|
+
}
|
|
51
|
+
return this.messageConfig({
|
|
52
|
+
item: msgData
|
|
53
|
+
})
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
</script>
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-wechat-panel-chat-status">
|
|
3
|
+
<!-- sendStatus:0成功,1发送中,2失败,3超时 -->
|
|
4
|
+
<template v-if="data.sendStatus === 1">
|
|
5
|
+
<ui-loading size="mini"></ui-loading>
|
|
6
|
+
</template>
|
|
7
|
+
<template v-else-if="data.sendStatus === 2">
|
|
8
|
+
<bi-tooltip :text="data.resultMsg || '发送失败'">
|
|
9
|
+
<span class="sdk-wechat-panel-chat-status__error">
|
|
10
|
+
<svg t="1752112836990" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="25812" width="200" height="200"><path d="M512 938.666667C276.352 938.666667 85.333333 747.648 85.333333 512S276.352 85.333333 512 85.333333s426.666667 191.018667 426.666667 426.666667-191.018667 426.666667-426.666667 426.666667z m0-486.997334L391.338667 330.965333 330.965333 391.338667 451.669333 512l-120.704 120.661333 60.373334 60.373334L512 572.330667l120.661333 120.704 60.373334-60.373334L572.330667 512l120.704-120.661333-60.373334-60.373334L512 451.669333z" fill="currentColor" p-id="25813"></path></svg>
|
|
11
|
+
</span>
|
|
12
|
+
</bi-tooltip>
|
|
13
|
+
</template>
|
|
14
|
+
<template v-else-if="data.sendStatus === 3">
|
|
15
|
+
<bi-tooltip :text="data.resultMsg || '发送超时'">
|
|
16
|
+
<span class="sdk-wechat-panel-chat-status__error">
|
|
17
|
+
<svg t="1752112888507" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="25980" width="200" height="200"><path d="M512 938.666667C276.352 938.666667 85.333333 747.648 85.333333 512S276.352 85.333333 512 85.333333s426.666667 191.018667 426.666667 426.666667-191.018667 426.666667-426.666667 426.666667z m42.666667-426.666667V298.666667h-85.333334v298.666666h256v-85.333333h-170.666666z" fill="currentColor" p-id="25981"></path></svg>
|
|
18
|
+
</span>
|
|
19
|
+
</bi-tooltip>
|
|
20
|
+
</template>
|
|
21
|
+
<template v-if="data.recalled">
|
|
22
|
+
<bi-tooltip :text="'消息已撤回'">
|
|
23
|
+
<span class="sdk-wechat-panel-chat-status__error" style="opacity: .6;">
|
|
24
|
+
<svg t="1752113091390" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="30696" width="200" height="200"><path d="M512 0c282.752 0 512 229.248 512 512s-229.248 512-512 512S0 794.752 0 512 229.248 0 512 0z m-50.261333 255.317333c-7.765333-39.338667-39.893333-15.36-39.893334-15.36l-213.76 192c-47.616 34.944-2.730667 60.458667-2.730666 60.458667l211.541333 190.933333c42.410667 33.066667 45.866667-17.749333 45.866667-17.749333v-86.442667c215.125333-70.144 303.36 208.341333 303.36 208.341334 7.936 15.957333 13.824 0 13.824 0C862.933333 368.682667 461.952 348.586667 461.952 348.586667z" fill="currentColor" p-id="30697"></path></svg>
|
|
25
|
+
</span>
|
|
26
|
+
</bi-tooltip>
|
|
27
|
+
</template>
|
|
28
|
+
</div>
|
|
29
|
+
</template>
|
|
30
|
+
<script>
|
|
31
|
+
import { Tooltip as BiTooltip } from '@aochuang/common/common'
|
|
32
|
+
import { Loading as UiLoading, Icon as UiIcon } from '@aochuang/common/components'
|
|
33
|
+
|
|
34
|
+
export default {
|
|
35
|
+
name: 'SdkChatPanelChatStatus',
|
|
36
|
+
components: {
|
|
37
|
+
BiTooltip,
|
|
38
|
+
UiIcon,
|
|
39
|
+
UiLoading
|
|
40
|
+
},
|
|
41
|
+
props: {
|
|
42
|
+
data: {
|
|
43
|
+
type: Object,
|
|
44
|
+
required: true
|
|
45
|
+
},
|
|
46
|
+
updateChatBoxProp: {
|
|
47
|
+
type: Function
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
</script>
|
|
52
|
+
<style lang="less">
|
|
53
|
+
.sdk-wechat-panel-chat-status__error{
|
|
54
|
+
display: flex;
|
|
55
|
+
flex-direction: row;
|
|
56
|
+
align-items: center;
|
|
57
|
+
font-size: 12px;
|
|
58
|
+
color: #c00;
|
|
59
|
+
width: 16px;
|
|
60
|
+
height: 16px;
|
|
61
|
+
svg {
|
|
62
|
+
width: 100%;
|
|
63
|
+
height: 100%;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
.sdk-wechat-panel-chat-status{
|
|
67
|
+
margin: 0 6px;
|
|
68
|
+
}
|
|
69
|
+
</style>
|