@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,12 @@
|
|
|
1
|
+
import ChatEditor from './chat-editor.vue'
|
|
2
|
+
import ChatEditorButton from './chat-editor-button/chat-editor-button.vue'
|
|
3
|
+
import ChatEditorToolbar from './chat-editor-toolbar/chat-editor-toolbar.vue'
|
|
4
|
+
import ChatEditorToolbarItem from './chat-editor-toolbar/chat-editor-toolbar-item.vue'
|
|
5
|
+
|
|
6
|
+
export {
|
|
7
|
+
ChatEditor,
|
|
8
|
+
ChatEditorButton,
|
|
9
|
+
ChatEditorToolbar,
|
|
10
|
+
ChatEditorToolbarItem
|
|
11
|
+
}
|
|
12
|
+
export default ChatEditor
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 找到字符串中离光标最近的字符串片段
|
|
3
|
+
* 智能检测场景:
|
|
4
|
+
* 1. 如果光标前最近的非空白字符是 @,则提取 @ 之后的字符(@ 成员场景)
|
|
5
|
+
* 2. 否则,提取最近的非空白字符串(普通输入场景)
|
|
6
|
+
*
|
|
7
|
+
* @param {string} inputStr - 输入的原始字符串
|
|
8
|
+
* @param {number} cursorPos - 光标位置(从0开始的索引,需在[0, inputStr.length]范围内)
|
|
9
|
+
* @returns {Object} 包含最近字符串的信息:
|
|
10
|
+
* - nearest: 离光标最近的字符串片段(无则为空)
|
|
11
|
+
* - start: 该字符串在原字符串中的起始索引
|
|
12
|
+
* - end: 该字符串在原字符串中的结束索引(不包含)
|
|
13
|
+
* - isAtContext: 是否在 @ 上下文中(用于外部判断)
|
|
14
|
+
*/
|
|
15
|
+
export function getNearestString (inputStr, cursorPos) {
|
|
16
|
+
// 边界处理:光标位置超出有效范围时修正
|
|
17
|
+
const safeCursorPos = Math.max(0, Math.min(cursorPos, inputStr.length));
|
|
18
|
+
|
|
19
|
+
// 特殊情况:字符串为空
|
|
20
|
+
if (inputStr.length === 0) {
|
|
21
|
+
return { nearest: '', start: 0, end: 0, isAtContext: false };
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// 1. 智能检测:从光标位置往前查找,判断是否在 @ 上下文中
|
|
25
|
+
let isAtContext = false;
|
|
26
|
+
let atPosition = -1;
|
|
27
|
+
|
|
28
|
+
for (let i = safeCursorPos - 1; i >= 0; i--) {
|
|
29
|
+
const char = inputStr[i];
|
|
30
|
+
if (char === '@') {
|
|
31
|
+
// 找到 @,说明在 @ 上下文中
|
|
32
|
+
isAtContext = true;
|
|
33
|
+
atPosition = i;
|
|
34
|
+
break;
|
|
35
|
+
}
|
|
36
|
+
if (/\s/.test(char)) {
|
|
37
|
+
// 遇到空白字符,停止查找(说明不在 @ 上下文中)
|
|
38
|
+
break;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// 2. 根据上下文选择拆分模式
|
|
43
|
+
let splitRegex, isSeparator;
|
|
44
|
+
|
|
45
|
+
if (isAtContext) {
|
|
46
|
+
// @ 成员场景:按 @ 字符拆分
|
|
47
|
+
splitRegex = /(@)/;
|
|
48
|
+
isSeparator = (part) => part === '@';
|
|
49
|
+
} else {
|
|
50
|
+
// 普通输入场景:按空白字符拆分
|
|
51
|
+
splitRegex = /(\s+)/;
|
|
52
|
+
isSeparator = (part) => /\s+/.test(part);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// 拆分字符串(保留分隔符,用于定位)
|
|
56
|
+
const parts = inputStr.split(splitRegex);
|
|
57
|
+
|
|
58
|
+
// 2. 计算每个片段的起止位置
|
|
59
|
+
const segments = [];
|
|
60
|
+
let currentPos = 0;
|
|
61
|
+
for (const part of parts) {
|
|
62
|
+
if (part === '') continue; // 跳过空字符串
|
|
63
|
+
|
|
64
|
+
const start = currentPos;
|
|
65
|
+
const end = currentPos + part.length;
|
|
66
|
+
segments.push({
|
|
67
|
+
text: part,
|
|
68
|
+
start,
|
|
69
|
+
end,
|
|
70
|
+
isSeparator: isSeparator(part) // 标记是否为分隔符片段
|
|
71
|
+
});
|
|
72
|
+
currentPos = end;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// 3. 找到光标所在的片段或最近的片段
|
|
76
|
+
let cursorSegment = null;
|
|
77
|
+
let cursorSegmentIndex = -1;
|
|
78
|
+
|
|
79
|
+
for (let i = 0; i < segments.length; i++) {
|
|
80
|
+
const seg = segments[i];
|
|
81
|
+
// 光标在片段内部或末尾
|
|
82
|
+
if (safeCursorPos >= seg.start && safeCursorPos <= seg.end) {
|
|
83
|
+
cursorSegment = seg;
|
|
84
|
+
cursorSegmentIndex = i;
|
|
85
|
+
break;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// 如果没有找到片段(光标在片段之间),找最近的片段
|
|
90
|
+
if (!cursorSegment && segments.length > 0) {
|
|
91
|
+
for (let i = 0; i < segments.length; i++) {
|
|
92
|
+
const seg = segments[i];
|
|
93
|
+
if (safeCursorPos < seg.start) {
|
|
94
|
+
// 光标在这个片段之前,选择这个片段或前一个片段
|
|
95
|
+
if (i > 0) {
|
|
96
|
+
const prevSeg = segments[i - 1];
|
|
97
|
+
const distToPrev = safeCursorPos - prevSeg.end;
|
|
98
|
+
const distToNext = seg.start - safeCursorPos;
|
|
99
|
+
if (distToPrev <= distToNext) {
|
|
100
|
+
cursorSegment = prevSeg;
|
|
101
|
+
cursorSegmentIndex = i - 1;
|
|
102
|
+
} else {
|
|
103
|
+
cursorSegment = seg;
|
|
104
|
+
cursorSegmentIndex = i;
|
|
105
|
+
}
|
|
106
|
+
} else {
|
|
107
|
+
cursorSegment = seg;
|
|
108
|
+
cursorSegmentIndex = i;
|
|
109
|
+
}
|
|
110
|
+
break;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
// 如果光标在所有片段之后
|
|
114
|
+
if (!cursorSegment) {
|
|
115
|
+
cursorSegment = segments[segments.length - 1];
|
|
116
|
+
cursorSegmentIndex = segments.length - 1;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
// 4. 确定离光标最近的字符串片段
|
|
121
|
+
let nearest = '';
|
|
122
|
+
let start = 0;
|
|
123
|
+
let end = 0;
|
|
124
|
+
|
|
125
|
+
if (cursorSegment) {
|
|
126
|
+
if (!cursorSegment.isSeparator) {
|
|
127
|
+
// 光标在非分隔符字符串中 → 直接返回该字符串
|
|
128
|
+
nearest = cursorSegment.text;
|
|
129
|
+
start = cursorSegment.start;
|
|
130
|
+
end = cursorSegment.end;
|
|
131
|
+
} else {
|
|
132
|
+
// 光标在分隔符区域
|
|
133
|
+
// 如果是 at 上下文且分隔符是 @,直接返回 @
|
|
134
|
+
if (isAtContext && cursorSegment.text === '@') {
|
|
135
|
+
nearest = '@';
|
|
136
|
+
start = cursorSegment.start;
|
|
137
|
+
end = cursorSegment.end;
|
|
138
|
+
} else {
|
|
139
|
+
// 其他情况:比较左右两侧最近的非分隔符字符串
|
|
140
|
+
const segIndex = cursorSegmentIndex;
|
|
141
|
+
|
|
142
|
+
// 左侧最近的非分隔符字符串(从光标片段向左查找)
|
|
143
|
+
let leftNearest = null;
|
|
144
|
+
for (let i = segIndex - 1; i >= 0; i--) {
|
|
145
|
+
if (!segments[i].isSeparator) {
|
|
146
|
+
leftNearest = segments[i];
|
|
147
|
+
break;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// 右侧最近的非分隔符字符串(从光标片段向右查找)
|
|
152
|
+
let rightNearest = null;
|
|
153
|
+
for (let i = segIndex + 1; i < segments.length; i++) {
|
|
154
|
+
if (!segments[i].isSeparator) {
|
|
155
|
+
rightNearest = segments[i];
|
|
156
|
+
break;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
// 计算距离并选择最近的
|
|
161
|
+
if (leftNearest && rightNearest) {
|
|
162
|
+
const leftDist = safeCursorPos - leftNearest.end; // 光标到左侧字符串结束的距离
|
|
163
|
+
const rightDist = rightNearest.start - safeCursorPos; // 光标到右侧字符串开始的距离
|
|
164
|
+
if (leftDist <= rightDist) {
|
|
165
|
+
nearest = leftNearest.text;
|
|
166
|
+
start = leftNearest.start;
|
|
167
|
+
end = leftNearest.end;
|
|
168
|
+
} else {
|
|
169
|
+
nearest = rightNearest.text;
|
|
170
|
+
start = rightNearest.start;
|
|
171
|
+
end = rightNearest.end;
|
|
172
|
+
}
|
|
173
|
+
} else if (leftNearest) {
|
|
174
|
+
// 只有左侧有非分隔符字符串
|
|
175
|
+
nearest = leftNearest.text;
|
|
176
|
+
start = leftNearest.start;
|
|
177
|
+
end = leftNearest.end;
|
|
178
|
+
} else if (rightNearest) {
|
|
179
|
+
// 只有右侧有非分隔符字符串
|
|
180
|
+
nearest = rightNearest.text;
|
|
181
|
+
start = rightNearest.start;
|
|
182
|
+
end = rightNearest.end;
|
|
183
|
+
}
|
|
184
|
+
// 若两侧都没有,则返回空(全是分隔符的情况)
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
return { nearest, start, end, isAtContext };
|
|
189
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-friend-profile">
|
|
3
|
+
<template v-if="loading">
|
|
4
|
+
<span class="sdk-chat-friend-profile__loading">数据加载中...</span>
|
|
5
|
+
</template>
|
|
6
|
+
<template v-else-if="friendData">
|
|
7
|
+
<div class="sdk-chat-friend-profile__row">
|
|
8
|
+
<div class="sdk-chat-friend-profile__col">
|
|
9
|
+
<span class="sdk-chat-friend-profile__name">
|
|
10
|
+
<slot name="name" :data="friendData"></slot>
|
|
11
|
+
</span>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="sdk-chat-friend-profile__col" v-if="$slots['head-left']">
|
|
14
|
+
<slot name="head-left"></slot>
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
</template>
|
|
18
|
+
<template v-else>
|
|
19
|
+
<div class="sdk-chat-friend-profile__exception">未找到好友数据</div>
|
|
20
|
+
</template>
|
|
21
|
+
</div>
|
|
22
|
+
</template>
|
|
23
|
+
<script>
|
|
24
|
+
export default {
|
|
25
|
+
name: 'SdkChatFriendProfile',
|
|
26
|
+
props: {
|
|
27
|
+
id: {
|
|
28
|
+
type: String,
|
|
29
|
+
required: true
|
|
30
|
+
},
|
|
31
|
+
queryMethod: {
|
|
32
|
+
type: Function,
|
|
33
|
+
required: true
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
data () {
|
|
37
|
+
return {
|
|
38
|
+
loading: false,
|
|
39
|
+
friendData: null
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
watch: {
|
|
43
|
+
id () {
|
|
44
|
+
this.refreshData()
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
created () {
|
|
48
|
+
this.refreshData()
|
|
49
|
+
},
|
|
50
|
+
methods: {
|
|
51
|
+
refreshData () {
|
|
52
|
+
this.loading = true
|
|
53
|
+
this.queryMethod().then(rs => {
|
|
54
|
+
this.friendData = rs
|
|
55
|
+
}).finally(() => {
|
|
56
|
+
this.loading = false
|
|
57
|
+
})
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
</script>
|
|
62
|
+
<style>
|
|
63
|
+
.sdk-chat-friend-profile{
|
|
64
|
+
line-height: 1.5em;
|
|
65
|
+
}
|
|
66
|
+
.sdk-chat-friend-profile__loading{
|
|
67
|
+
min-height: 32px;
|
|
68
|
+
display: flex;
|
|
69
|
+
flex-direction: row;
|
|
70
|
+
align-items: center;
|
|
71
|
+
}
|
|
72
|
+
.sdk-chat-friend-profile__row{
|
|
73
|
+
display: flex;
|
|
74
|
+
flex-direction: row;
|
|
75
|
+
align-items: center;
|
|
76
|
+
max-width: 100%;
|
|
77
|
+
min-height: 32px;
|
|
78
|
+
}
|
|
79
|
+
.sdk-chat-friend-profile__row:not(:last-child) {
|
|
80
|
+
margin-bottom: 3px;
|
|
81
|
+
}
|
|
82
|
+
.sdk-chat-friend-profile__col{
|
|
83
|
+
display: flex;
|
|
84
|
+
flex-direction: row;
|
|
85
|
+
align-items: center;
|
|
86
|
+
min-width: 0;
|
|
87
|
+
}
|
|
88
|
+
.sdk-chat-friend-profile__col:last-child {
|
|
89
|
+
min-width: 0;
|
|
90
|
+
}
|
|
91
|
+
.sdk-chat-friend-profile__col:not(:first-child){
|
|
92
|
+
margin-left: 12px;
|
|
93
|
+
}
|
|
94
|
+
.sdk-chat-friend-profile__quota{
|
|
95
|
+
display: flex;
|
|
96
|
+
flex-direction: row;
|
|
97
|
+
align-items: center;
|
|
98
|
+
min-width: 0;
|
|
99
|
+
font-size: 12px;
|
|
100
|
+
}
|
|
101
|
+
.sdk-chat-friend-profile__quota-label{
|
|
102
|
+
color: #666;
|
|
103
|
+
white-space: nowrap;
|
|
104
|
+
}
|
|
105
|
+
.sdk-chat-friend-profile__quota-target {
|
|
106
|
+
min-width: 0;
|
|
107
|
+
overflow: hidden;
|
|
108
|
+
text-overflow: ellipsis;
|
|
109
|
+
white-space: nowrap;
|
|
110
|
+
}
|
|
111
|
+
.sdk-chat-friend-profile__name{
|
|
112
|
+
font-weight: bold;
|
|
113
|
+
min-width: 0;
|
|
114
|
+
}
|
|
115
|
+
.sdk-chat-friend-profile__exception{
|
|
116
|
+
color: #999;
|
|
117
|
+
}
|
|
118
|
+
</style>
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-layout">
|
|
3
|
+
<template v-if="$slots.top">
|
|
4
|
+
<div class="sdk-chat-layout__top">
|
|
5
|
+
<slot name="top"></slot>
|
|
6
|
+
</div>
|
|
7
|
+
</template>
|
|
8
|
+
<div class="sdk-chat-layout__head">
|
|
9
|
+
<div class="sdk-chat-layout__head-left">
|
|
10
|
+
<slot name="head-left"></slot>
|
|
11
|
+
</div>
|
|
12
|
+
<div class="sdk-chat-layout__head-right">
|
|
13
|
+
<slot name="head-right"></slot>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="sdk-chat-layout__body">
|
|
17
|
+
<bi-resizable
|
|
18
|
+
direction="vertical"
|
|
19
|
+
:initialSize="260"
|
|
20
|
+
:minSize="260"
|
|
21
|
+
:maxSize="480"
|
|
22
|
+
>
|
|
23
|
+
<template v-if="$slots.foot">
|
|
24
|
+
<template slot="panel">
|
|
25
|
+
<slot name="foot"></slot>
|
|
26
|
+
</template>
|
|
27
|
+
</template>
|
|
28
|
+
<template slot="content">
|
|
29
|
+
<slot></slot>
|
|
30
|
+
</template>
|
|
31
|
+
</bi-resizable>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
</template>
|
|
35
|
+
<script>
|
|
36
|
+
import BiResizable from '@aochuang/common/common/resizable'
|
|
37
|
+
|
|
38
|
+
export default {
|
|
39
|
+
name: 'SdkChatLayout',
|
|
40
|
+
components: {
|
|
41
|
+
BiResizable
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
</script>
|
|
45
|
+
<style>
|
|
46
|
+
.sdk-chat-layout{
|
|
47
|
+
height: 100%;
|
|
48
|
+
display: flex;
|
|
49
|
+
flex-direction: column;
|
|
50
|
+
}
|
|
51
|
+
.sdk-chat-layout__head{
|
|
52
|
+
border-bottom: 1px solid #eee;
|
|
53
|
+
padding: 8px 12px;
|
|
54
|
+
display: flex;
|
|
55
|
+
flex-direction: row;
|
|
56
|
+
justify-content: space-between;
|
|
57
|
+
align-items: center;
|
|
58
|
+
}
|
|
59
|
+
.sdk-chat-layout__head-left{
|
|
60
|
+
min-width: 0;
|
|
61
|
+
}
|
|
62
|
+
.sdk-chat-layout__head-right{
|
|
63
|
+
margin-left: 24px;
|
|
64
|
+
}
|
|
65
|
+
.sdk-chat-layout__body{
|
|
66
|
+
flex: 1;
|
|
67
|
+
min-height: 0;
|
|
68
|
+
position: relative;
|
|
69
|
+
z-index: 10;
|
|
70
|
+
}
|
|
71
|
+
</style>
|