@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,257 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-wechat-control-quote-message" :class="['sdk-wechat-control-quote-message--' + type]" v-if="quoteMessageInfo">
|
|
3
|
+
<template v-if="type === 'default'">
|
|
4
|
+
<div class="sdk-wechat-control-quote-message__content" v-html="contentHtml"></div>
|
|
5
|
+
<template v-if="!setChatBoxFootVnode">
|
|
6
|
+
<component :is="quoteComponent"></component>
|
|
7
|
+
</template>
|
|
8
|
+
</template>
|
|
9
|
+
<template v-else-if="type === 'quote'">
|
|
10
|
+
<div class="sdk-wechat-control-quote-message__content" v-html="contentHtml"></div>
|
|
11
|
+
</template>
|
|
12
|
+
</div>
|
|
13
|
+
</template>
|
|
14
|
+
<script>
|
|
15
|
+
import { parse } from '../../../utils/json'
|
|
16
|
+
import { chatControls } from '../index'
|
|
17
|
+
import WechatChatControlConfigMsg from '../wechat-chat-control-config-msg.vue'
|
|
18
|
+
import { html2Escape } from '../../../utils/string'
|
|
19
|
+
|
|
20
|
+
export default {
|
|
21
|
+
name: 'SdkWechatControlQuoteMessage',
|
|
22
|
+
props: {
|
|
23
|
+
type: {
|
|
24
|
+
type: String,
|
|
25
|
+
default: 'default',
|
|
26
|
+
validator (value) {
|
|
27
|
+
return ['quote', 'default'].includes(value)
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
id: {
|
|
31
|
+
type: String
|
|
32
|
+
},
|
|
33
|
+
wechatAccountId: {
|
|
34
|
+
type: String
|
|
35
|
+
},
|
|
36
|
+
wechatRoomId: {
|
|
37
|
+
type: String
|
|
38
|
+
},
|
|
39
|
+
wechatFriendId: {
|
|
40
|
+
type: String
|
|
41
|
+
},
|
|
42
|
+
content: {
|
|
43
|
+
type: [Object, String]
|
|
44
|
+
},
|
|
45
|
+
// config: {
|
|
46
|
+
// type: Function
|
|
47
|
+
// },
|
|
48
|
+
getQuoteFriendMessage: {
|
|
49
|
+
type: Function
|
|
50
|
+
},
|
|
51
|
+
getQuoteRoomMessage: {
|
|
52
|
+
type: Function
|
|
53
|
+
},
|
|
54
|
+
setChatBoxFootVnode: {
|
|
55
|
+
type: Function
|
|
56
|
+
},
|
|
57
|
+
formatter: {
|
|
58
|
+
type: Function
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
data () {
|
|
62
|
+
return {
|
|
63
|
+
loading: false,
|
|
64
|
+
quoteMessageData: null,
|
|
65
|
+
errorMsg: null
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
computed: {
|
|
69
|
+
quoteMessageInfo () {
|
|
70
|
+
let content = this.content
|
|
71
|
+
if (typeof this.content === 'string') {
|
|
72
|
+
content = content.replace(/^[\w-_@]+:{/, '{')
|
|
73
|
+
}
|
|
74
|
+
return parse(content)
|
|
75
|
+
},
|
|
76
|
+
quoteComponent () {
|
|
77
|
+
return {
|
|
78
|
+
render: (h) => {
|
|
79
|
+
if (this.loading) {
|
|
80
|
+
return h('div', {
|
|
81
|
+
class: 'sdk-wechat-control-quote-message__loading'
|
|
82
|
+
}, [
|
|
83
|
+
h('ui-loading', {
|
|
84
|
+
props: {
|
|
85
|
+
size: 'mini'
|
|
86
|
+
}
|
|
87
|
+
}, ['引用内容正在加载中...'])
|
|
88
|
+
])
|
|
89
|
+
} else {
|
|
90
|
+
if (!this.quoteMessageData) {
|
|
91
|
+
return null
|
|
92
|
+
}
|
|
93
|
+
let quoteContent = (this.quoteMessageData || {}).content
|
|
94
|
+
// const quoteConfig = this.config ? this.config({
|
|
95
|
+
// item: this.quoteMessageData
|
|
96
|
+
// }) : {}
|
|
97
|
+
if (this.errorMsg) {
|
|
98
|
+
return h('div', {
|
|
99
|
+
class: 'sdk-wechat-control-quote-message__exception'
|
|
100
|
+
}, [this.errorMsg])
|
|
101
|
+
} else if (this.quoteMessageInfo) {
|
|
102
|
+
return h('div', {
|
|
103
|
+
class: 'sdk-wechat-control-quote-message__main'
|
|
104
|
+
}, [
|
|
105
|
+
h('div', {
|
|
106
|
+
class: 'sdk-wechat-control-quote-message__user'
|
|
107
|
+
}, [this.quoteMessageInfo.quoteSendName + ':']),
|
|
108
|
+
h('div', {
|
|
109
|
+
class: 'sdk-wechat-control-quote-message__msg'
|
|
110
|
+
}, [
|
|
111
|
+
h(WechatChatControlConfigMsg, {
|
|
112
|
+
props: {
|
|
113
|
+
msgData: this.quoteMessageData
|
|
114
|
+
},
|
|
115
|
+
scopedSlots: {
|
|
116
|
+
default: ({ configData }) => {
|
|
117
|
+
return chatControls[this.quoteMessageData.msgType] ? h(chatControls[this.quoteMessageData.msgType], {
|
|
118
|
+
props: Object.assign({}, configData, {
|
|
119
|
+
id: this.quoteMessageData.id,
|
|
120
|
+
content: quoteContent,
|
|
121
|
+
type: 'quote'
|
|
122
|
+
})
|
|
123
|
+
}) : null
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
})
|
|
127
|
+
]),
|
|
128
|
+
this.$scopedSlots['quote-append'] ? h('div', {
|
|
129
|
+
class: 'sdk-wechat-control-quote-message__append'
|
|
130
|
+
}, [
|
|
131
|
+
this.$scopedSlots['quote-append']({
|
|
132
|
+
quoteMessageData: this.quoteMessageData
|
|
133
|
+
})
|
|
134
|
+
]) : null
|
|
135
|
+
])
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
contentHtml () {
|
|
142
|
+
let content = this.quoteMessageInfo.content
|
|
143
|
+
if (this.formatter) {
|
|
144
|
+
content = this.formatter({
|
|
145
|
+
content: content
|
|
146
|
+
})
|
|
147
|
+
} else {
|
|
148
|
+
content = html2Escape(content)
|
|
149
|
+
}
|
|
150
|
+
if (!content) {
|
|
151
|
+
return ''
|
|
152
|
+
}
|
|
153
|
+
return content
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
created () {
|
|
157
|
+
const { quoteSendType } = (this.quoteMessageInfo || {})
|
|
158
|
+
if (this.type === 'default') {
|
|
159
|
+
// 0是政企版的一个问题,没有消息类型是0的,因为后端比较忙,先把0当作文本类型兼容一下
|
|
160
|
+
if (quoteSendType !== 1) {
|
|
161
|
+
if (this.wechatRoomId) {
|
|
162
|
+
this.loading = true
|
|
163
|
+
this.getQuoteRoomMessage({
|
|
164
|
+
content: this.quoteMessageInfo
|
|
165
|
+
}).then(({ data }) => {
|
|
166
|
+
if (!data) {
|
|
167
|
+
this.errorMsg = '未找到引用消息内容,请在手机中查看'
|
|
168
|
+
} else {
|
|
169
|
+
this.quoteMessageData = data
|
|
170
|
+
}
|
|
171
|
+
}).finally(() => {
|
|
172
|
+
this.loading = false
|
|
173
|
+
})
|
|
174
|
+
} else if (this.wechatFriendId) {
|
|
175
|
+
this.loading = true
|
|
176
|
+
this.getQuoteFriendMessage({
|
|
177
|
+
content: this.quoteMessageInfo
|
|
178
|
+
}).then(({ data }) => {
|
|
179
|
+
if (!data) {
|
|
180
|
+
this.errorMsg = '未找到引用消息内容,请在手机中查看'
|
|
181
|
+
} else {
|
|
182
|
+
this.quoteMessageData = data
|
|
183
|
+
}
|
|
184
|
+
}).finally(() => {
|
|
185
|
+
this.loading = false
|
|
186
|
+
})
|
|
187
|
+
}
|
|
188
|
+
} else {
|
|
189
|
+
this.quoteMessageData = {
|
|
190
|
+
id: this.id + '_quote',
|
|
191
|
+
content: this.quoteMessageInfo.quoteSendContent,
|
|
192
|
+
// 政企版quoteSendType是0,先转为1当作为本类型处理
|
|
193
|
+
msgType: this.quoteMessageInfo.quoteSendType,
|
|
194
|
+
wechatTime: this.quoteMessageInfo.wechatTime,
|
|
195
|
+
msgSvrId: this.quoteMessageInfo.msgSvrId
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
if (this.setChatBoxFootVnode) {
|
|
199
|
+
this.setChatBoxFootVnode(this.quoteComponent)
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
</script>
|
|
205
|
+
<style lang="less">
|
|
206
|
+
.sdk-wechat-control-quote-message{
|
|
207
|
+
flex: 1;
|
|
208
|
+
min-width: 0;
|
|
209
|
+
}
|
|
210
|
+
.sdk-wechat-control-quote-message__user{
|
|
211
|
+
color: #999;
|
|
212
|
+
}
|
|
213
|
+
.sdk-wechat-control-quote-message__content{
|
|
214
|
+
white-space: pre-wrap;
|
|
215
|
+
word-break: break-all;
|
|
216
|
+
line-height: 1.5em;
|
|
217
|
+
img {
|
|
218
|
+
vertical-align: top;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
.sdk-wechat-control-quote-message__main{
|
|
222
|
+
background-color: rgba(0,0,0,.06);
|
|
223
|
+
border-radius: 3px;
|
|
224
|
+
padding: 8px;
|
|
225
|
+
margin-top: 6px;
|
|
226
|
+
display: flex;
|
|
227
|
+
flex-direction: row;
|
|
228
|
+
max-width: 100%;
|
|
229
|
+
line-height: 1.5em;
|
|
230
|
+
}
|
|
231
|
+
.sdk-wechat-control-quote-message__loading,
|
|
232
|
+
.sdk-wechat-control-quote-message__exception {
|
|
233
|
+
background-color: rgba(0,0,0,.06);
|
|
234
|
+
border-radius: 3px;
|
|
235
|
+
padding: 8px;
|
|
236
|
+
margin-top: 6px;
|
|
237
|
+
display: flex;
|
|
238
|
+
flex-direction: row;
|
|
239
|
+
}
|
|
240
|
+
.sdk-wechat-control-quote-message__text{
|
|
241
|
+
text-align: left;
|
|
242
|
+
img {
|
|
243
|
+
vertical-align: top;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
.sdk-wechat-control-quote-message__user{
|
|
247
|
+
white-space: nowrap;
|
|
248
|
+
}
|
|
249
|
+
.sdk-wechat-control-quote-message__append{
|
|
250
|
+
margin-left: 6px;
|
|
251
|
+
}
|
|
252
|
+
.sdk-wechat-control-quote-message--default{
|
|
253
|
+
.sdk-wechat-control-quote-message__content{
|
|
254
|
+
padding: 8px 12px;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
</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="1710318696089" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4306" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M512 938.666667c-53.333333 0-384-257.258667-384-469.333334S299.925333 85.333333 512 85.333333s384 171.925333 384 384-330.666667 469.333333-384 469.333334z m0-352c64.8 0 117.333333-52.533333 117.333333-117.333334s-52.533333-117.333333-117.333333-117.333333-117.333333 52.533333-117.333333 117.333333 52.533333 117.333333 117.333333 117.333334z" fill="#000000" p-id="4307"></path></svg>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-wechat-chat-panel-control-real-time-position" :class="['sdk-wechat-chat-panel-control-real-time-position--' + type]">
|
|
3
|
+
<div class="sdk-wechat-chat-panel-control-real-time-position__text">{{ nextContent }}</div>
|
|
4
|
+
<div class="sdk-wechat-chat-panel-control-real-time-position__icon"></div>
|
|
5
|
+
</div>
|
|
6
|
+
</template>
|
|
7
|
+
<script>
|
|
8
|
+
import { parseXml } from '../../../utils/json'
|
|
9
|
+
|
|
10
|
+
export default {
|
|
11
|
+
name: 'SdkChatControlRealTimePosition',
|
|
12
|
+
props: {
|
|
13
|
+
id: {
|
|
14
|
+
type: String
|
|
15
|
+
},
|
|
16
|
+
content: {
|
|
17
|
+
type: String
|
|
18
|
+
},
|
|
19
|
+
type: {
|
|
20
|
+
type: String,
|
|
21
|
+
default: 'default',
|
|
22
|
+
validator (value) {
|
|
23
|
+
return ['quote', 'default'].includes(value)
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
computed: {
|
|
28
|
+
nextContent () {
|
|
29
|
+
let text = '位置共享'
|
|
30
|
+
const content = parseXml(this.content) || {}
|
|
31
|
+
if (content.msg && content.msg.appmsg && content.msg.appmsg.title) {
|
|
32
|
+
text = content.msg.appmsg.title
|
|
33
|
+
}
|
|
34
|
+
return text
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
</script>
|
|
39
|
+
<style lang="less">
|
|
40
|
+
.sdk-wechat-chat-panel-control-real-time-position--default {
|
|
41
|
+
padding: 12px;
|
|
42
|
+
}
|
|
43
|
+
.sdk-wechat-chat-panel-control-real-time-position{
|
|
44
|
+
display: flex;
|
|
45
|
+
flex-direction: row;
|
|
46
|
+
align-items: center;
|
|
47
|
+
}
|
|
48
|
+
.sdk-wechat-chat-panel-control-real-time-position__icon{
|
|
49
|
+
width: 18px;
|
|
50
|
+
height: 18px;
|
|
51
|
+
margin-left: 4px;
|
|
52
|
+
background: url('./icon.svg') no-repeat 50% 50%;
|
|
53
|
+
background-size: cover;
|
|
54
|
+
opacity: .4;
|
|
55
|
+
margin-top: 1px;
|
|
56
|
+
}
|
|
57
|
+
</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="1752136523920" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4702" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M380.48 563.925333C398.901333 508.949333 450.826667 469.333333 512 469.333333s113.098667 39.616 131.52 94.592A709.162667 709.162667 0 0 0 821.333333 505.781333V202.666667a53.333333 53.333333 0 0 0-53.333333-53.333334H256a53.333333 53.333333 0 0 0-53.333333 53.333334v303.114666a709.152 709.152 0 0 0 177.813333 58.144z m268.768 64.010667C639.573333 695.072 581.813333 746.666667 512 746.666667c-69.813333 0-127.573333-51.594667-137.248-118.72A773.109333 773.109333 0 0 1 202.666667 576.117333V821.333333a53.333333 53.333333 0 0 0 53.333333 53.333334h512a53.333333 53.333333 0 0 0 53.333333-53.333334V576.128a773.12 773.12 0 0 1-172.085333 51.808zM256 85.333333h512c64.8 0 117.333333 52.533333 117.333333 117.333334v618.666666c0 64.8-52.533333 117.333333-117.333333 117.333334H256c-64.8 0-117.333333-52.533333-117.333333-117.333334V202.666667c0-64.8 52.533333-117.333333 117.333333-117.333334z m256 597.333334a74.666667 74.666667 0 1 0 0-149.333334 74.666667 74.666667 0 0 0 0 149.333334z" fill="#999" p-id="4703"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M907.938909 859.252364A116.782545 116.782545 0 0 1 791.272727 976.174545H223.441455a116.782545 116.782545 0 0 1-116.666182-116.922181V310.085818h87.738182l625.687272-10.496h87.738182z" fill="#EF4108" /><path d="M646.097455 469.527273a141.707636 141.707636 0 0 1-140.264728 103.866182c-115.293091 0-163.560727-107.496727-163.560727-107.496728a570.181818 570.181818 0 0 1-208.244364-84.084363l-27.252363-15.848728v-205.265454a116.014545 116.014545 0 0 1 116.666182-115.339637h567.854545a116.014545 116.014545 0 0 1 116.666182 115.339637v193.885091l-20.363637 12.846545c-4.491636 2.792727-8.866909 5.585455-13.265454 8.285091-68.538182 43.264-122.740364 77.451636-228.235636 93.812364z" fill="#FF6D0B" /><path d="M501.713455 621.242182a181.527273 181.527273 0 1 1 181.08509-181.527273 181.527273 181.527273 0 0 1-181.08509 181.527273z" fill="#FBE945" /><path d="M603.345455 510.906182v-42.565818H525.963636v-50.944h77.381819V374.923636h-21.224728l11.776-47.522909h-43.659636l-11.636364 47.522909h-61.253818l-13.218909-47.522909h-43.892364l13.218909 47.522909h-25.6v42.472728h75.776v50.944h-75.776v42.565818h75.776v64.093091H525.963636v-64.093091z" fill="#FF5D24" /></svg>
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-wechart-control-redpacket" :class="['sdk-wechart-control-redpacket--' + type]">
|
|
3
|
+
<template v-if="type === 'default'">
|
|
4
|
+
<div class="sdk-wechart-control-redpacket__content">
|
|
5
|
+
<img class="sdk-wechart-control-redpacket__icon" width="40px" :src="require('./red-envelope.svg')" alt="红包">
|
|
6
|
+
<div class="sdk-wechart-control-redpacket__main">
|
|
7
|
+
<div class="sdk-wechart-control-redpacket__title" :title="title">{{title}}</div>
|
|
8
|
+
<div class="sdk-wechart-control-redpacket__description">{{description}}</div>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="sdk-chat-control-redpacket__addon">
|
|
12
|
+
<div class="sdk-wechart-control-redpacket__type">微红包</div>
|
|
13
|
+
<div class="sdk-wechart-control-redpacket__action">
|
|
14
|
+
<template v-if="receivable">
|
|
15
|
+
<span class="sdk-wechart-control-redpacket__action-item" @click="handleReceivableClick">
|
|
16
|
+
<span class="sdk-wechart-control-redpacket__action-item-icon" v-if="loading"><ui-loading size="mini"></ui-loading></span>
|
|
17
|
+
<span class="sdk-wechart-control-redpacket__action-item-text">点击领取</span>
|
|
18
|
+
</span>
|
|
19
|
+
</template>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</template>
|
|
23
|
+
<template v-else>
|
|
24
|
+
<div class="sdk-wechart-control-redpacket__icon"></div>
|
|
25
|
+
<div class="sdk-wechart-control-redpacket__title" :title="title">{{title}}</div>
|
|
26
|
+
</template>
|
|
27
|
+
</div>
|
|
28
|
+
</template>
|
|
29
|
+
<script>
|
|
30
|
+
import { parse } from '../../../utils/json'
|
|
31
|
+
|
|
32
|
+
export default {
|
|
33
|
+
name: 'SdkChatControlRedpacket',
|
|
34
|
+
props: {
|
|
35
|
+
id: {
|
|
36
|
+
type: String
|
|
37
|
+
},
|
|
38
|
+
content: {
|
|
39
|
+
type: [Object, String]
|
|
40
|
+
},
|
|
41
|
+
receivable: {
|
|
42
|
+
type: Boolean,
|
|
43
|
+
default: false
|
|
44
|
+
},
|
|
45
|
+
receiveMethod: {
|
|
46
|
+
type: Function
|
|
47
|
+
},
|
|
48
|
+
type: {
|
|
49
|
+
type: String,
|
|
50
|
+
default: 'default',
|
|
51
|
+
validator (value) {
|
|
52
|
+
return ['quote', 'default'].includes(value)
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
data () {
|
|
57
|
+
return {
|
|
58
|
+
loading: false
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
computed: {
|
|
62
|
+
nextContent () {
|
|
63
|
+
return parse(this.content) || {}
|
|
64
|
+
},
|
|
65
|
+
title () {
|
|
66
|
+
return this.nextContent.sendertitle
|
|
67
|
+
},
|
|
68
|
+
description () {
|
|
69
|
+
return ''
|
|
70
|
+
},
|
|
71
|
+
category () {
|
|
72
|
+
return '微红包'
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
methods: {
|
|
76
|
+
handleReceivableClick () {
|
|
77
|
+
const rs = this.receiveMethod({
|
|
78
|
+
content: this.nextContent
|
|
79
|
+
})
|
|
80
|
+
if (rs && rs.finally) {
|
|
81
|
+
this.loading = true
|
|
82
|
+
rs.finally(() => {
|
|
83
|
+
this.loading = false
|
|
84
|
+
})
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
</script>
|
|
90
|
+
<style lang="less">
|
|
91
|
+
.sdk-wechart-control-redpacket--default{
|
|
92
|
+
background-color: #f79d46;
|
|
93
|
+
color: #fff;
|
|
94
|
+
border-radius: 4px;
|
|
95
|
+
width: 214px;
|
|
96
|
+
.sdk-wechart-control-redpacket__content{
|
|
97
|
+
position: relative;
|
|
98
|
+
display: flex;
|
|
99
|
+
align-items: center;
|
|
100
|
+
padding: 12px;
|
|
101
|
+
box-sizing: content-box;
|
|
102
|
+
border-bottom: 1px solid rgba(255, 255, 255, .2);
|
|
103
|
+
}
|
|
104
|
+
.sdk-wechart-control-redpacket__main{
|
|
105
|
+
flex: 1;
|
|
106
|
+
min-width: 0;
|
|
107
|
+
line-height: 1.3em;
|
|
108
|
+
}
|
|
109
|
+
.sdk-wechart-control-redpacket__title{
|
|
110
|
+
line-height: 22px;
|
|
111
|
+
overflow: hidden;
|
|
112
|
+
margin-top: -12px;
|
|
113
|
+
white-space: nowrap;
|
|
114
|
+
text-overflow: ellipsis;
|
|
115
|
+
font-weight: bold;
|
|
116
|
+
}
|
|
117
|
+
.sdk-wechart-control-redpacket__description{
|
|
118
|
+
font-size: 12px;
|
|
119
|
+
}
|
|
120
|
+
.sdk-chat-control-redpacket__addon{
|
|
121
|
+
display: flex;
|
|
122
|
+
flex-direction: row;
|
|
123
|
+
align-items: center;
|
|
124
|
+
padding: 0 12px;
|
|
125
|
+
justify-content: space-between;
|
|
126
|
+
height: 24px;
|
|
127
|
+
line-height: 24px;
|
|
128
|
+
}
|
|
129
|
+
.sdk-wechart-control-redpacket__type{
|
|
130
|
+
opacity: 0.7;
|
|
131
|
+
font-size: 12px;
|
|
132
|
+
}
|
|
133
|
+
.sdk-wechart-control-redpacket__action-item{
|
|
134
|
+
font-size: 12px;
|
|
135
|
+
opacity: 0.7;
|
|
136
|
+
cursor: pointer;
|
|
137
|
+
transition: all .25s;
|
|
138
|
+
display: flex;
|
|
139
|
+
flex-direction: row;
|
|
140
|
+
align-items: center;
|
|
141
|
+
&:hover {
|
|
142
|
+
opacity: 1;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
.sdk-wechart-control-redpacket__action-item-icon {
|
|
146
|
+
margin-right: 4px;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
.sdk-wechart-control-redpacket--quote {
|
|
150
|
+
display: flex;
|
|
151
|
+
flex-direction: row;
|
|
152
|
+
.sdk-wechart-control-redpacket__icon {
|
|
153
|
+
display: inline-block;
|
|
154
|
+
width: 18px;
|
|
155
|
+
height: 18px;
|
|
156
|
+
margin-right: 4px;
|
|
157
|
+
min-width: 18px;
|
|
158
|
+
vertical-align: top;
|
|
159
|
+
margin-top: 2px;
|
|
160
|
+
color: #999;
|
|
161
|
+
background: url('./quote-icon.svg') no-repeat 50% 50%;
|
|
162
|
+
background-size: cover;
|
|
163
|
+
}
|
|
164
|
+
.sdk-wechart-control-redpacket__title{
|
|
165
|
+
margin-right: 6px;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
</style>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-control-revoke-me-message">
|
|
3
|
+
{{ showText }}
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
<script>
|
|
7
|
+
import { parse } from '../../../utils/json'
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
name: 'SdkWechatChatControlRevokeMeMessage',
|
|
11
|
+
props: {
|
|
12
|
+
id: {
|
|
13
|
+
type: String
|
|
14
|
+
},
|
|
15
|
+
content: {
|
|
16
|
+
type: String
|
|
17
|
+
},
|
|
18
|
+
formatter: {
|
|
19
|
+
type: Function
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
computed: {
|
|
23
|
+
nextContent () {
|
|
24
|
+
return parse(this.content)
|
|
25
|
+
},
|
|
26
|
+
showText () {
|
|
27
|
+
return (this.nextContent || {}).msg || ''
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
</script>
|
|
32
|
+
<style lang="less">
|
|
33
|
+
.sdk-chat-control-revoke-me-message{
|
|
34
|
+
text-align: center;
|
|
35
|
+
color: #999;
|
|
36
|
+
font-size: 12px;
|
|
37
|
+
width: 100%;
|
|
38
|
+
padding: 12px;
|
|
39
|
+
}
|
|
40
|
+
</style>
|
|
41
|
+
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-control-revoke-other-message">
|
|
3
|
+
{{ showText }}
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
<script>
|
|
7
|
+
import { parse } from '../../../utils/json'
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
name: 'SdkWechatChatControlRevokeOtherMessage',
|
|
11
|
+
props: {
|
|
12
|
+
id: {
|
|
13
|
+
type: String
|
|
14
|
+
},
|
|
15
|
+
content: {
|
|
16
|
+
type: String
|
|
17
|
+
},
|
|
18
|
+
formatter: {
|
|
19
|
+
type: Function
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
computed: {
|
|
23
|
+
nextContent () {
|
|
24
|
+
return parse(this.content)
|
|
25
|
+
},
|
|
26
|
+
showText () {
|
|
27
|
+
return (this.nextContent || {}).msg || ''
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
</script>
|
|
32
|
+
<style lang="less">
|
|
33
|
+
.sdk-chat-control-revoke-other-message{
|
|
34
|
+
text-align: center;
|
|
35
|
+
color: #999;
|
|
36
|
+
font-size: 12px;
|
|
37
|
+
width: 100%;
|
|
38
|
+
padding: 12px;
|
|
39
|
+
}
|
|
40
|
+
</style>
|
|
41
|
+
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-control-revoke-you-message">
|
|
3
|
+
{{ showText }}
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
<script>
|
|
7
|
+
import { parse } from '../../../utils/json'
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
name: 'SdkWechatChatControlRevokeYouMessage',
|
|
11
|
+
props: {
|
|
12
|
+
id: {
|
|
13
|
+
type: String
|
|
14
|
+
},
|
|
15
|
+
content: {
|
|
16
|
+
type: String
|
|
17
|
+
},
|
|
18
|
+
formatter: {
|
|
19
|
+
type: Function
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
computed: {
|
|
23
|
+
nextContent () {
|
|
24
|
+
return parse(this.content)
|
|
25
|
+
},
|
|
26
|
+
showText () {
|
|
27
|
+
return (this.nextContent || {}).msg || ''
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
</script>
|
|
32
|
+
<style lang="less">
|
|
33
|
+
.sdk-chat-control-revoke-you-message{
|
|
34
|
+
text-align: center;
|
|
35
|
+
color: #999;
|
|
36
|
+
font-size: 12px;
|
|
37
|
+
width: 100%;
|
|
38
|
+
padding: 12px;
|
|
39
|
+
}
|
|
40
|
+
</style>
|
|
41
|
+
|
|
@@ -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="1670299071263" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="60143" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M896 700.586667v150.869333a42.666667 42.666667 0 0 1-39.68 42.581333c-18.645333 1.28-33.877333 1.962667-45.653333 1.962667-377.045333 0-682.666667-305.621333-682.666667-682.666667 0-11.776 0.64-27.008 1.962667-45.653333A42.666667 42.666667 0 0 1 172.544 128H323.413333a21.333333 21.333333 0 0 1 21.248 19.2c0.981333 9.813333 1.877333 17.621333 2.730667 23.552A593.109333 593.109333 0 0 0 398.933333 341.461333c4.053333 8.533333 1.408 18.730667-6.272 24.192l-92.074666 65.792a556.672 556.672 0 0 0 292.010666 292.010667l65.706667-91.904a19.712 19.712 0 0 1 24.448-6.357333 593.109333 593.109333 0 0 0 170.666667 51.413333c5.930667 0.853333 13.738667 1.792 23.466666 2.730667a21.333333 21.333333 0 0 1 19.157334 21.248z" p-id="60144"></path></svg>
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-control-room-calling">
|
|
3
|
+
{{ content }}
|
|
4
|
+
<template v-if="content != '语音通话已经结束' && isShow">
|
|
5
|
+
<component :is="addonEditControl"></component>
|
|
6
|
+
</template>
|
|
7
|
+
</div>
|
|
8
|
+
</template>
|
|
9
|
+
<script>
|
|
10
|
+
|
|
11
|
+
export default {
|
|
12
|
+
name: 'SdkChatControlRoomCalling',
|
|
13
|
+
props: {
|
|
14
|
+
id: {
|
|
15
|
+
type: String
|
|
16
|
+
},
|
|
17
|
+
content: {
|
|
18
|
+
type: String
|
|
19
|
+
},
|
|
20
|
+
isShow: {
|
|
21
|
+
type: Boolean,
|
|
22
|
+
default: false
|
|
23
|
+
},
|
|
24
|
+
renderEditControlMethod: {
|
|
25
|
+
type: Function
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
computed: {
|
|
29
|
+
addonEditControl () {
|
|
30
|
+
const control = this.renderEditControlMethod({
|
|
31
|
+
position: 'voice-addon',
|
|
32
|
+
content: this.content
|
|
33
|
+
})
|
|
34
|
+
return control
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
</script>
|
|
39
|
+
<style lang="less">
|
|
40
|
+
.sdk-chat-control-room-calling{
|
|
41
|
+
text-align: center;
|
|
42
|
+
color: #999;
|
|
43
|
+
font-size: 12px;
|
|
44
|
+
width: 100%;
|
|
45
|
+
padding: 12px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.sdk-chat-control-room-calling__view-btn {
|
|
49
|
+
color: #4387ff;
|
|
50
|
+
cursor: pointer;
|
|
51
|
+
}
|
|
52
|
+
</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="1670298983364" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="26050" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M725.333333 392.533333l222.421334-155.733333a21.333333 21.333333 0 0 1 33.578666 17.493333v515.413334a21.333333 21.333333 0 0 1-33.578666 17.493333L725.333333 631.466667V810.666667a42.666667 42.666667 0 0 1-42.666666 42.666666H85.333333a42.666667 42.666667 0 0 1-42.666666-42.666666V213.333333a42.666667 42.666667 0 0 1 42.666666-42.666666h597.333334a42.666667 42.666667 0 0 1 42.666666 42.666666v179.2zM213.333333 341.333333v85.333334h85.333334V341.333333H213.333333z" p-id="26051"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1752135335916" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5424" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M613.475512 1021.090975H410.530306c-192.501807 0-344.539079 0-344.539079-99.843549v-19.973364c0-187.120111 154.57976-339.331924 344.539079-339.331924h202.939388c189.959319 0 344.544897 152.211813 344.544897 339.331924v19.973364c-0.034908 99.843549-159.717097 99.843549-344.539079 99.843549zM410.495398 621.792414c-156.941888 0-284.648076 125.349878-284.648076 279.44674v19.967546c0 39.964183 164.505352 39.964183 284.648076 39.964182h202.945206c99.45374 0 284.653894 0 284.653894-39.964182v-19.967546c0-154.096861-127.712007-279.44674-284.653894-279.44674H410.495398z m91.343378-79.881821c-150.832936 0-273.483239-120.904889-273.483239-269.521147 0-148.610441 122.656121-269.480421 273.483239-269.480421s273.483239 120.86998 273.483239 269.480421c0 148.616259-122.685212 269.521147-273.483239 269.521147zM288.24654 272.389446c0 115.563919 95.817459 209.630145 213.592236 209.630144 117.786414 0 213.598055-94.031317 213.598055-209.630144S619.619372 62.794209 501.838776 62.794209c-117.774778 0-213.592237 94.037136-213.592236 209.595237z" fill="#999" p-id="5425"></path></svg>
|