@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,350 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-panel-box" :class="[dir ? 'is-dir-' + dir : '', {'is-blank': blank, 'is-recalled': recalled}]">
|
|
3
|
+
<div class="sdk-chat-panel-box__avatar" @contextmenu="handleUserAvatarContextmenu" @click="handleUserAvatarClick">
|
|
4
|
+
<template v-if="userData && userData.avatar">
|
|
5
|
+
<sdk-user-avatar :src="userData.avatar"></sdk-user-avatar>
|
|
6
|
+
</template>
|
|
7
|
+
</div>
|
|
8
|
+
<div class="sdk-chat-panel-box__main">
|
|
9
|
+
<div class="sdk-chat-panel-box__head">
|
|
10
|
+
<span class="sdk-chat-panel-box__name">
|
|
11
|
+
{{ userData ? userData.name : '' }}
|
|
12
|
+
</span>
|
|
13
|
+
</div>
|
|
14
|
+
<div class="sdk-chat-panel-box__body" @contextmenu="handleBodyContextMenu">
|
|
15
|
+
<component
|
|
16
|
+
class="sdk-chat-panel-box__msg"
|
|
17
|
+
:is="inner_href ? 'a' : 'div'"
|
|
18
|
+
:href="inner_href"
|
|
19
|
+
v-bind="inner_href ? {'target': '_blank'} : {}"
|
|
20
|
+
>
|
|
21
|
+
<b class="sdk-chat-panel-box__msg-arrow" v-if="dir && !blank">
|
|
22
|
+
<b class="sdk-chat-panel-box__msg-arrow-main" :style="arrowStyle"></b>
|
|
23
|
+
</b>
|
|
24
|
+
<div class="sdk-chat-panel-box__msg-main" :style="style">
|
|
25
|
+
<slot :update-prop="handleUpdateProp" :set-foot-vnode="handleSetFootVnode" :update-style="handleUpdateStyle"></slot>
|
|
26
|
+
</div>
|
|
27
|
+
</component>
|
|
28
|
+
<div class="sdk-chat-panel-box__append">
|
|
29
|
+
<slot name="append" :update-prop="handleUpdateProp"></slot>
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
<div class="sdk-chat-panel-box__foot">
|
|
33
|
+
<component :is="inner_foot_vnode"></component>
|
|
34
|
+
<slot name="foot"></slot>
|
|
35
|
+
<span class="sdk-chat-panel-box__date">
|
|
36
|
+
{{ sendTime }}
|
|
37
|
+
</span>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
</template>
|
|
42
|
+
<script>
|
|
43
|
+
import SdkUserAvatar from '../../common/user-avatar'
|
|
44
|
+
import { formatDate } from '../../utils/date'
|
|
45
|
+
|
|
46
|
+
export default {
|
|
47
|
+
name: 'SdkChatPanelBox',
|
|
48
|
+
components: {
|
|
49
|
+
SdkUserAvatar
|
|
50
|
+
},
|
|
51
|
+
inject: {
|
|
52
|
+
SdkChatPanelChat: {
|
|
53
|
+
from: 'SdkChatPanelChat',
|
|
54
|
+
default: null
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
provide () {
|
|
58
|
+
return {
|
|
59
|
+
SdkChatPanelBox: this
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
props: {
|
|
63
|
+
dir: {
|
|
64
|
+
type: String,
|
|
65
|
+
validator (value) {
|
|
66
|
+
return ['left', 'right'].indexOf(value) >= 0
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
href: {
|
|
70
|
+
type: String
|
|
71
|
+
},
|
|
72
|
+
target: {
|
|
73
|
+
type: String,
|
|
74
|
+
default: '_blank'
|
|
75
|
+
},
|
|
76
|
+
data: {
|
|
77
|
+
type: Object
|
|
78
|
+
},
|
|
79
|
+
bgColor: {
|
|
80
|
+
type: String
|
|
81
|
+
},
|
|
82
|
+
brColor: {
|
|
83
|
+
type: String
|
|
84
|
+
},
|
|
85
|
+
width: {
|
|
86
|
+
type: String
|
|
87
|
+
},
|
|
88
|
+
maxWidth: {
|
|
89
|
+
type: String
|
|
90
|
+
},
|
|
91
|
+
blank: {
|
|
92
|
+
type: Boolean,
|
|
93
|
+
default: false
|
|
94
|
+
},
|
|
95
|
+
fetchUserMethod: {
|
|
96
|
+
type: Function
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
data () {
|
|
100
|
+
return {
|
|
101
|
+
/**
|
|
102
|
+
* {
|
|
103
|
+
* name: xxx,
|
|
104
|
+
* avatar: null
|
|
105
|
+
* }
|
|
106
|
+
*/
|
|
107
|
+
userData: null,
|
|
108
|
+
inner_href: this.href,
|
|
109
|
+
inner_foot_vnode: null,
|
|
110
|
+
inner_bg_color: this.bgColor,
|
|
111
|
+
inner_br_color: this.brColor
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
computed: {
|
|
115
|
+
recalled () {
|
|
116
|
+
return this.data.recalled
|
|
117
|
+
},
|
|
118
|
+
msgTimeField () {
|
|
119
|
+
return this.SdkChatPanelChat.msgTimeField
|
|
120
|
+
},
|
|
121
|
+
sendTime () {
|
|
122
|
+
return formatDate(this.data[this.msgTimeField], 'YYYY-mm-dd HH:MM')
|
|
123
|
+
},
|
|
124
|
+
innerBgColor () {
|
|
125
|
+
let bgColor
|
|
126
|
+
if (this.inner_bg_color) {
|
|
127
|
+
bgColor = this.inner_bg_color
|
|
128
|
+
} else {
|
|
129
|
+
if (this.dir === 'right') {
|
|
130
|
+
bgColor = '#c9e3fc'
|
|
131
|
+
} else {
|
|
132
|
+
bgColor = '#e5e5e6'
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
return bgColor
|
|
136
|
+
},
|
|
137
|
+
innerBrColor () {
|
|
138
|
+
let brColor
|
|
139
|
+
if (this.inner_br_color) {
|
|
140
|
+
brColor = this.inner_br_color
|
|
141
|
+
} else {
|
|
142
|
+
if (this.innerBgColor === '#e5e5e6') {
|
|
143
|
+
brColor = '#ebebeb'
|
|
144
|
+
} else {
|
|
145
|
+
brColor = this.innerBgColor
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
return brColor
|
|
149
|
+
},
|
|
150
|
+
style () {
|
|
151
|
+
if (this.blank) {
|
|
152
|
+
return
|
|
153
|
+
}
|
|
154
|
+
return {
|
|
155
|
+
'width': this.width,
|
|
156
|
+
'max-width': this.maxWidth,
|
|
157
|
+
'background-color': this.innerBgColor,
|
|
158
|
+
'border-color': this.innerBrColor
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
arrowStyle () {
|
|
162
|
+
if (this.blank) {
|
|
163
|
+
return
|
|
164
|
+
}
|
|
165
|
+
return {
|
|
166
|
+
'background-color': this.innerBgColor,
|
|
167
|
+
'border-color': this.innerBrColor
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
watch: {
|
|
172
|
+
data () {
|
|
173
|
+
this.refreshUserData()
|
|
174
|
+
},
|
|
175
|
+
brColor () {
|
|
176
|
+
this.inner_br_color = this.brColor
|
|
177
|
+
},
|
|
178
|
+
bgColor () {
|
|
179
|
+
this.inner_bg_color = this.bgColor
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
created () {
|
|
183
|
+
this.refreshUserData()
|
|
184
|
+
},
|
|
185
|
+
methods: {
|
|
186
|
+
refreshUserData () {
|
|
187
|
+
if (!this.fetchUserMethod) {
|
|
188
|
+
return
|
|
189
|
+
}
|
|
190
|
+
this.loading = true
|
|
191
|
+
this.fetchUserMethod({
|
|
192
|
+
data: this.data
|
|
193
|
+
}).then(rs => {
|
|
194
|
+
this.userData = rs
|
|
195
|
+
}).finally(() => {
|
|
196
|
+
this.loading = false
|
|
197
|
+
})
|
|
198
|
+
},
|
|
199
|
+
handleUserAvatarContextmenu (evt) {
|
|
200
|
+
this.$emit('user-avatar-contextmenu', evt)
|
|
201
|
+
},
|
|
202
|
+
handleUserAvatarClick (evt) {
|
|
203
|
+
this.$emit('user-avatar-click', evt)
|
|
204
|
+
},
|
|
205
|
+
handleUpdateProp (name, value) {
|
|
206
|
+
if (!['href'].includes(name)) {
|
|
207
|
+
throw new Error('不支持的更新属性名称' + name)
|
|
208
|
+
}
|
|
209
|
+
this.$set(this, 'inner_' + name, value)
|
|
210
|
+
},
|
|
211
|
+
/**
|
|
212
|
+
* {
|
|
213
|
+
* brColor: null,
|
|
214
|
+
* bgColor: null
|
|
215
|
+
* }
|
|
216
|
+
*/
|
|
217
|
+
handleUpdateStyle (style) {
|
|
218
|
+
if (!style) {
|
|
219
|
+
return
|
|
220
|
+
}
|
|
221
|
+
if (style.bgColor) {
|
|
222
|
+
this.inner_bg_color = style.bgColor
|
|
223
|
+
}
|
|
224
|
+
if (style.brColor) {
|
|
225
|
+
this.inner_br_color = style.bgColor
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
handleSetFootVnode (vnode) {
|
|
229
|
+
this.inner_foot_vnode = vnode
|
|
230
|
+
},
|
|
231
|
+
handleBodyContextMenu (evt) {
|
|
232
|
+
this.SdkChatPanelChat && this.SdkChatPanelChat.triggerMessageContentContextMenu(evt)
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
</script>
|
|
237
|
+
<style lang="less">
|
|
238
|
+
.sdk-chat-panel-box{
|
|
239
|
+
display: flex;
|
|
240
|
+
flex: 1;
|
|
241
|
+
min-width: 0;
|
|
242
|
+
&.is-dir-left {
|
|
243
|
+
flex-direction: row;
|
|
244
|
+
.sdk-chat-panel-box__avatar{
|
|
245
|
+
margin-right: 12px;
|
|
246
|
+
}
|
|
247
|
+
.sdk-chat-panel-box__msg-arrow{
|
|
248
|
+
position: absolute;
|
|
249
|
+
left: -6px;
|
|
250
|
+
}
|
|
251
|
+
.sdk-chat-panel-box__msg-arrow-main{
|
|
252
|
+
left: 2px;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
&.is-dir-right {
|
|
256
|
+
flex-direction: row-reverse;
|
|
257
|
+
.sdk-chat-panel-box__avatar{
|
|
258
|
+
margin-left: 12px;
|
|
259
|
+
}
|
|
260
|
+
.sdk-chat-panel-box__msg-arrow{
|
|
261
|
+
position: absolute;
|
|
262
|
+
right: -6px;
|
|
263
|
+
}
|
|
264
|
+
.sdk-chat-panel-box__body{
|
|
265
|
+
flex-direction: row-reverse;
|
|
266
|
+
}
|
|
267
|
+
.sdk-chat-panel-box__main{
|
|
268
|
+
display: flex;
|
|
269
|
+
flex-direction: column;
|
|
270
|
+
align-items: flex-end;
|
|
271
|
+
}
|
|
272
|
+
.sdk-chat-panel-box__msg-arrow-main{
|
|
273
|
+
right: 2px;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
&.is-recalled{
|
|
277
|
+
.sdk-chat-panel-box__msg{
|
|
278
|
+
opacity: .6;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
.sdk-chat-panel-box__avatar{
|
|
283
|
+
margin-top: 24px;
|
|
284
|
+
width: 32px;
|
|
285
|
+
height: 32px;
|
|
286
|
+
background: #eee;
|
|
287
|
+
border-radius: 3px;
|
|
288
|
+
}
|
|
289
|
+
.sdk-chat-panel-box__head{
|
|
290
|
+
line-height: 24px;
|
|
291
|
+
min-height: 24px;
|
|
292
|
+
}
|
|
293
|
+
.sdk-chat-panel-box__name{
|
|
294
|
+
font-size: 12px;
|
|
295
|
+
color: #888;
|
|
296
|
+
}
|
|
297
|
+
.sdk-chat-panel-box__body{
|
|
298
|
+
display: flex;
|
|
299
|
+
flex-direction: row;
|
|
300
|
+
align-items: center;
|
|
301
|
+
}
|
|
302
|
+
.sdk-chat-panel-box__foot{
|
|
303
|
+
line-height: 24px;
|
|
304
|
+
}
|
|
305
|
+
.sdk-chat-panel-box__date{
|
|
306
|
+
font-size: 12px;
|
|
307
|
+
color: #888;
|
|
308
|
+
}
|
|
309
|
+
.sdk-chat-panel-box__msg{
|
|
310
|
+
position: relative;
|
|
311
|
+
text-decoration: none;
|
|
312
|
+
}
|
|
313
|
+
.sdk-chat-panel-box__msg-main{
|
|
314
|
+
border-width: 1px;
|
|
315
|
+
border-style: solid;
|
|
316
|
+
border-radius: 4px;
|
|
317
|
+
border-color: transparent;
|
|
318
|
+
transition: all .25s;
|
|
319
|
+
}
|
|
320
|
+
a.sdk-chat-panel-box__msg{
|
|
321
|
+
&:hover{
|
|
322
|
+
.sdk-chat-panel-box__msg-main {
|
|
323
|
+
background-color: #f9fafe!important;
|
|
324
|
+
border-color: #1aa2e8!important;
|
|
325
|
+
}
|
|
326
|
+
.sdk-chat-panel-box__msg-arrow-main{
|
|
327
|
+
background-color: #f9fafe!important;
|
|
328
|
+
border-color: #1aa2e8!important;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
.sdk-chat-panel-box__msg-arrow{
|
|
333
|
+
position: absolute;
|
|
334
|
+
top: 10px;
|
|
335
|
+
z-index: 3;
|
|
336
|
+
width: 7px;
|
|
337
|
+
height: 20px;
|
|
338
|
+
overflow: hidden;
|
|
339
|
+
}
|
|
340
|
+
.sdk-chat-panel-box__msg-arrow-main{
|
|
341
|
+
display: inline-block;
|
|
342
|
+
width: 10px;
|
|
343
|
+
height: 10px;
|
|
344
|
+
transform: rotate(45deg);
|
|
345
|
+
border: 1px solid transparent;
|
|
346
|
+
position: absolute;
|
|
347
|
+
top: 3px;
|
|
348
|
+
transition: all .3s;
|
|
349
|
+
}
|
|
350
|
+
</style>
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-panel-chat" :class="className" :data-msg-type="item.msgType">
|
|
3
|
+
<ui-button type="link" v-if="!isInnerMsg && showContextBtn && dir === 'right'" class="sdk-chat-panel-chat__context" @click="handleViewContextClick">查看上下文</ui-button>
|
|
4
|
+
<div class="sdk-chat-panel-chat__main">
|
|
5
|
+
<slot name="chat" :item="item" :dir="dir">
|
|
6
|
+
<component
|
|
7
|
+
:is="control"
|
|
8
|
+
:data="item"
|
|
9
|
+
:dir="dir"
|
|
10
|
+
:fetch-user-method="fetchUserMethod"
|
|
11
|
+
>
|
|
12
|
+
<template slot="append" slot-scope="scope">
|
|
13
|
+
<slot name="chat-append" :item="item"></slot>
|
|
14
|
+
</template>
|
|
15
|
+
<template slot="foot" slot-scope="scope">
|
|
16
|
+
<slot name="chat-foot" :item="item"></slot>
|
|
17
|
+
</template>
|
|
18
|
+
</component>
|
|
19
|
+
</slot>
|
|
20
|
+
</div>
|
|
21
|
+
<ui-button type="link" v-if="!isInnerMsg && showContextBtn && dir === 'left'" class="sdk-chat-panel-chat__context" @click="handleViewContextClick">查看上下文</ui-button>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
<script>
|
|
25
|
+
import ChatPanelInnerMsg from './chat-panel-inner-msg'
|
|
26
|
+
import ChatPanelBox from './chat-panel-box'
|
|
27
|
+
|
|
28
|
+
export default {
|
|
29
|
+
name: 'SdkChatPanelChat',
|
|
30
|
+
components: {
|
|
31
|
+
ChatPanelBox
|
|
32
|
+
},
|
|
33
|
+
provide () {
|
|
34
|
+
return {
|
|
35
|
+
SdkChatPanelChat: this
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
props: {
|
|
39
|
+
dir: {
|
|
40
|
+
type: String,
|
|
41
|
+
required: true,
|
|
42
|
+
validator (value) {
|
|
43
|
+
return ['left', 'right'].indexOf(value) >= 0
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
id: {
|
|
47
|
+
type: [Number, String]
|
|
48
|
+
},
|
|
49
|
+
item: {
|
|
50
|
+
type: Object
|
|
51
|
+
},
|
|
52
|
+
msgTimeField: {
|
|
53
|
+
type: String,
|
|
54
|
+
requried: true
|
|
55
|
+
},
|
|
56
|
+
renderControl: {
|
|
57
|
+
type: Function
|
|
58
|
+
},
|
|
59
|
+
fetchUserMethod: {
|
|
60
|
+
type: Function
|
|
61
|
+
},
|
|
62
|
+
showContextBtn: {
|
|
63
|
+
type: Boolean,
|
|
64
|
+
default: false
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
computed: {
|
|
68
|
+
className () {
|
|
69
|
+
const cls = []
|
|
70
|
+
if (this.dir) {
|
|
71
|
+
cls.push('is-' + this.dir)
|
|
72
|
+
}
|
|
73
|
+
return cls
|
|
74
|
+
},
|
|
75
|
+
isInnerMsg () {
|
|
76
|
+
return this.item.msgType === '_EMPTY_'
|
|
77
|
+
},
|
|
78
|
+
control () {
|
|
79
|
+
if (this.item && this.item.msgType === '_EMPTY_') {
|
|
80
|
+
return ChatPanelInnerMsg
|
|
81
|
+
}
|
|
82
|
+
if (this.renderControl) {
|
|
83
|
+
const rs = this.renderControl({
|
|
84
|
+
item: this.item
|
|
85
|
+
})
|
|
86
|
+
if (rs) {
|
|
87
|
+
return rs
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
return null
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
methods: {
|
|
94
|
+
handleViewContextClick () {
|
|
95
|
+
this.$emit('view-context')
|
|
96
|
+
},
|
|
97
|
+
handleContentClick () {
|
|
98
|
+
this.$emit('content-click')
|
|
99
|
+
},
|
|
100
|
+
triggerMessageContentContextMenu (evt) {
|
|
101
|
+
this.$emit('contextmenu', evt)
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
</script>
|
|
106
|
+
<style lang="less">
|
|
107
|
+
.sdk-chat-panel-chat{
|
|
108
|
+
padding: 3px 12px;
|
|
109
|
+
transition: background-color .25s;
|
|
110
|
+
display: flex;
|
|
111
|
+
flex-direction: row;
|
|
112
|
+
align-items: center;
|
|
113
|
+
.sdk-chat-panel-chat__main{
|
|
114
|
+
flex: 1;
|
|
115
|
+
min-width: 0;
|
|
116
|
+
}
|
|
117
|
+
&:hover {
|
|
118
|
+
background-color: rgba(0,0,0,.04);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
</style>
|