@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,329 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="sdk-chat-editor-suggestions"
|
|
4
|
+
v-if="isShow"
|
|
5
|
+
>
|
|
6
|
+
<div class="sdk-chat-editor-suggestions__head">
|
|
7
|
+
<div class="sdk-chat-editor-suggestions__head-left">
|
|
8
|
+
<template v-if="loading">
|
|
9
|
+
<span class="sdk-chat-editor-suggestions__loading">
|
|
10
|
+
<ui-loading size="mini"></ui-loading>
|
|
11
|
+
</span>
|
|
12
|
+
</template>
|
|
13
|
+
<span class="sdk-chat-editor-suggestions__keyword">
|
|
14
|
+
根据“{{ keyword }}”匹配话术
|
|
15
|
+
</span>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="sdk-chat-editor-suggestions__head-right">
|
|
18
|
+
<span
|
|
19
|
+
class="sdk-chat-editor-suggestions__close"
|
|
20
|
+
title="关闭"
|
|
21
|
+
@click="handleCloseClick"
|
|
22
|
+
></span>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
<div class="sdk-chat-editor-suggestions__body" ref="body">
|
|
26
|
+
<template v-if="data && data.length">
|
|
27
|
+
<div class="sdk-chat-editor-suggestions__list">
|
|
28
|
+
<div
|
|
29
|
+
class="sdk-chat-editor-suggestions__item"
|
|
30
|
+
:class="{'is-focus': focusId === item.id}"
|
|
31
|
+
v-for="(item, index) in data"
|
|
32
|
+
:key="index"
|
|
33
|
+
:ref="`item-${item.id}`"
|
|
34
|
+
@mouseenter="handleItemMouseEnter(item)"
|
|
35
|
+
@click="handleItemClick(item)"
|
|
36
|
+
>
|
|
37
|
+
<slot name="item" :data="item"></slot>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</template>
|
|
41
|
+
</div>
|
|
42
|
+
<div class="sdk-chat-editor-suggestions__foot">
|
|
43
|
+
<ui-icon name="information-line"></ui-icon> 提示:
|
|
44
|
+
<span class="sdk-chat-editor-suggestions__key">shift+↑</span>上移、
|
|
45
|
+
<span class="sdk-chat-editor-suggestions__key">shift+↓</span>下移、
|
|
46
|
+
<span class="sdk-chat-editor-suggestions__key">shift+回车</span>确定
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
</template>
|
|
50
|
+
<script>
|
|
51
|
+
import { Loading as UiLoading } from '@aochuang/common/components'
|
|
52
|
+
|
|
53
|
+
export default {
|
|
54
|
+
name: 'SdkChatEditorSuggestions',
|
|
55
|
+
components: {
|
|
56
|
+
UiLoading
|
|
57
|
+
},
|
|
58
|
+
props: {
|
|
59
|
+
data: {
|
|
60
|
+
type: Array
|
|
61
|
+
},
|
|
62
|
+
keyword: {
|
|
63
|
+
type: String
|
|
64
|
+
},
|
|
65
|
+
loading: {
|
|
66
|
+
type: Boolean,
|
|
67
|
+
default: false
|
|
68
|
+
},
|
|
69
|
+
confirmMethod: {
|
|
70
|
+
type: Function
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
data () {
|
|
74
|
+
return {
|
|
75
|
+
closed: false,
|
|
76
|
+
focusId: null
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
computed: {
|
|
80
|
+
isShow () {
|
|
81
|
+
return this.data && this.data.length && !this.closed
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
watch: {
|
|
85
|
+
keyword () {
|
|
86
|
+
this.closed = false
|
|
87
|
+
},
|
|
88
|
+
data () {
|
|
89
|
+
this.closed = false
|
|
90
|
+
this.checkAutoFocus()
|
|
91
|
+
},
|
|
92
|
+
isShow () {
|
|
93
|
+
if (!this.isShow) {
|
|
94
|
+
this.$emit('closed')
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
created () {
|
|
99
|
+
this.checkAutoFocus()
|
|
100
|
+
},
|
|
101
|
+
mounted () {
|
|
102
|
+
window.document.addEventListener('keydown', this.handleDocumentKeyDown)
|
|
103
|
+
},
|
|
104
|
+
methods: {
|
|
105
|
+
handleCloseClick () {
|
|
106
|
+
this.closed = true
|
|
107
|
+
},
|
|
108
|
+
handleItemMouseEnter (item) {
|
|
109
|
+
this.focusId = item.id
|
|
110
|
+
},
|
|
111
|
+
handleItemClick (item) {
|
|
112
|
+
if (this.confirmMethod) {
|
|
113
|
+
this.confirmMethod({
|
|
114
|
+
item
|
|
115
|
+
})
|
|
116
|
+
}
|
|
117
|
+
this.closed = true
|
|
118
|
+
},
|
|
119
|
+
handleDocumentKeyDown (evt) {
|
|
120
|
+
if (!this.isShow) {
|
|
121
|
+
return
|
|
122
|
+
}
|
|
123
|
+
if (!evt.shiftKey) {
|
|
124
|
+
return
|
|
125
|
+
}
|
|
126
|
+
if (!this.data || !this.data.length) {
|
|
127
|
+
return
|
|
128
|
+
}
|
|
129
|
+
let index = -1
|
|
130
|
+
if (this.focusId) {
|
|
131
|
+
this.data.some((v, i) => {
|
|
132
|
+
if (v.id === this.focusId) {
|
|
133
|
+
index = i
|
|
134
|
+
return true
|
|
135
|
+
}
|
|
136
|
+
})
|
|
137
|
+
}
|
|
138
|
+
// 回车确定
|
|
139
|
+
if (evt.keyCode === 13) {
|
|
140
|
+
if (index >= 0) {
|
|
141
|
+
evt.preventDefault()
|
|
142
|
+
if (this.confirmMethod) {
|
|
143
|
+
this.confirmMethod({
|
|
144
|
+
item: this.data[index]
|
|
145
|
+
})
|
|
146
|
+
}
|
|
147
|
+
this.closed = true
|
|
148
|
+
}
|
|
149
|
+
return
|
|
150
|
+
}
|
|
151
|
+
if (!this.focusId) {
|
|
152
|
+
this.focusId = this.data[0].id
|
|
153
|
+
this.scrollTo(this.focusId)
|
|
154
|
+
return
|
|
155
|
+
}
|
|
156
|
+
if (index < 0) {
|
|
157
|
+
this.focusId = this.data[0].id
|
|
158
|
+
return
|
|
159
|
+
}
|
|
160
|
+
// 向下
|
|
161
|
+
if (evt.keyCode === 40) {
|
|
162
|
+
evt.preventDefault()
|
|
163
|
+
const nextIndex = index + 1 > this.data.length - 1 ? 0 : index + 1
|
|
164
|
+
this.focusId = this.data[nextIndex].id
|
|
165
|
+
this.scrollTo(this.focusId)
|
|
166
|
+
return
|
|
167
|
+
}
|
|
168
|
+
// 向上
|
|
169
|
+
if (evt.keyCode === 38) {
|
|
170
|
+
evt.preventDefault()
|
|
171
|
+
const nextIndex = index - 1 < 0 ? this.data.length - 1 : index - 1
|
|
172
|
+
this.focusId = this.data[nextIndex].id
|
|
173
|
+
this.scrollTo(this.focusId)
|
|
174
|
+
return
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
checkAutoFocus () {
|
|
178
|
+
if (!this.data || !this.data.length) {
|
|
179
|
+
this.focusId = null
|
|
180
|
+
} else {
|
|
181
|
+
this.focusId = this.data[0].id
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
scrollTo (itemId) {
|
|
185
|
+
if (!itemId) {
|
|
186
|
+
return
|
|
187
|
+
}
|
|
188
|
+
const $body = this.$refs.body
|
|
189
|
+
if (!$body) {
|
|
190
|
+
return
|
|
191
|
+
}
|
|
192
|
+
const $item = this.$refs[`item-${itemId}`] ? this.$refs[`item-${itemId}`][0] : null
|
|
193
|
+
if (!$item) {
|
|
194
|
+
return
|
|
195
|
+
}
|
|
196
|
+
const scrollTop = $body.scrollTop
|
|
197
|
+
const scrollBottom = scrollTop + $body.clientHeight
|
|
198
|
+
const itemOffsetTop = $item.offsetTop
|
|
199
|
+
if (itemOffsetTop < scrollTop) {
|
|
200
|
+
$body.scrollTop = itemOffsetTop
|
|
201
|
+
} else if (itemOffsetTop > scrollBottom) {
|
|
202
|
+
$body.scrollTop = itemOffsetTop - $item.clientHeight
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
close () {
|
|
206
|
+
this.closed = true
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
beforeDestroy () {
|
|
210
|
+
window.document.removeEventListener('keydown', this.handleDocumentKeyDown)
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
</script>
|
|
214
|
+
<style>
|
|
215
|
+
.sdk-chat-editor-suggestions{
|
|
216
|
+
background-color: #fff;
|
|
217
|
+
border: 1px solid #eee;
|
|
218
|
+
border-radius: 4px;
|
|
219
|
+
box-shadow: 0 3px 6px rgba(0,0,0,0.05);
|
|
220
|
+
max-height: 100%;
|
|
221
|
+
pointer-events: initial;
|
|
222
|
+
position: absolute;
|
|
223
|
+
left: 0;
|
|
224
|
+
bottom: 0;
|
|
225
|
+
max-width: 540px;
|
|
226
|
+
min-width: 320px;
|
|
227
|
+
display: flex;
|
|
228
|
+
flex-direction: column;
|
|
229
|
+
}
|
|
230
|
+
.sdk-chat-editor-suggestions__head{
|
|
231
|
+
line-height: 24px;
|
|
232
|
+
padding: 4px 12px;
|
|
233
|
+
border-bottom: 1px solid #eee;
|
|
234
|
+
display: flex;
|
|
235
|
+
flex-direction: row;
|
|
236
|
+
justify-content: space-between;
|
|
237
|
+
align-items: center;
|
|
238
|
+
}
|
|
239
|
+
.sdk-chat-editor-suggestions__head-left,
|
|
240
|
+
.sdk-chat-editor-suggestions__head-right {
|
|
241
|
+
display: flex;
|
|
242
|
+
flex-direction: row;
|
|
243
|
+
align-items: center;
|
|
244
|
+
}
|
|
245
|
+
.sdk-chat-editor-suggestions__close{
|
|
246
|
+
display: inline-block;
|
|
247
|
+
width: 18px;
|
|
248
|
+
height: 18px;
|
|
249
|
+
position: relative;
|
|
250
|
+
transform: rotate(45deg);
|
|
251
|
+
border-radius: 50%;
|
|
252
|
+
cursor: pointer;
|
|
253
|
+
transition: all .25s;
|
|
254
|
+
margin-right: -4px;
|
|
255
|
+
}
|
|
256
|
+
.sdk-chat-editor-suggestions__close:hover {
|
|
257
|
+
background-color: #eee;
|
|
258
|
+
}
|
|
259
|
+
.sdk-chat-editor-suggestions__close:after,
|
|
260
|
+
.sdk-chat-editor-suggestions__close:before {
|
|
261
|
+
content: '';
|
|
262
|
+
position: absolute;
|
|
263
|
+
background-color: #999;
|
|
264
|
+
left: 50%;
|
|
265
|
+
top: 50%;
|
|
266
|
+
transform: translate(-50%, -50%);
|
|
267
|
+
}
|
|
268
|
+
.sdk-chat-editor-suggestions__close:before{
|
|
269
|
+
width: 10px;
|
|
270
|
+
height: 1px;
|
|
271
|
+
}
|
|
272
|
+
.sdk-chat-editor-suggestions__close:after{
|
|
273
|
+
height: 10px;
|
|
274
|
+
width: 1px;
|
|
275
|
+
}
|
|
276
|
+
.sdk-chat-editor-suggestions__loading {
|
|
277
|
+
margin-right: 4px;
|
|
278
|
+
}
|
|
279
|
+
.sdk-chat-editor-suggestions__body {
|
|
280
|
+
flex: 1;
|
|
281
|
+
min-height: 0;
|
|
282
|
+
overflow: auto;
|
|
283
|
+
position: relative;
|
|
284
|
+
}
|
|
285
|
+
.sdk-chat-editor-suggestions__foot{
|
|
286
|
+
color: #999;
|
|
287
|
+
line-height: 24px;
|
|
288
|
+
padding: 4px 12px;
|
|
289
|
+
font-size: 12px;
|
|
290
|
+
border-top: 1px solid #eee;
|
|
291
|
+
display: flex;
|
|
292
|
+
flex-direction: row;
|
|
293
|
+
align-items: center;
|
|
294
|
+
}
|
|
295
|
+
.sdk-chat-editor-suggestions__foot .ui-icon {
|
|
296
|
+
vertical-align: top;
|
|
297
|
+
margin-right: 4px;
|
|
298
|
+
position: relative;
|
|
299
|
+
top: -1px;
|
|
300
|
+
}
|
|
301
|
+
.sdk-chat-editor-suggestions__key{
|
|
302
|
+
display: inline-block;
|
|
303
|
+
line-height: 18px;
|
|
304
|
+
padding: 0 3px;
|
|
305
|
+
border: 1px solid #eee;
|
|
306
|
+
background-color: #f9f9f9;
|
|
307
|
+
border-radius: 3px;
|
|
308
|
+
}
|
|
309
|
+
.sdk-chat-editor-suggestions__item{
|
|
310
|
+
position: relative;
|
|
311
|
+
}
|
|
312
|
+
.sdk-chat-editor-suggestions__item:after {
|
|
313
|
+
content: '';
|
|
314
|
+
position: absolute;
|
|
315
|
+
left: 0;
|
|
316
|
+
right: 0;
|
|
317
|
+
bottom: 0;
|
|
318
|
+
top: 0;
|
|
319
|
+
border: 2px solid #4387ff;
|
|
320
|
+
border-radius: 3px;
|
|
321
|
+
transition: all .25s;
|
|
322
|
+
opacity: 0;
|
|
323
|
+
z-index: 3;
|
|
324
|
+
pointer-events: none;
|
|
325
|
+
}
|
|
326
|
+
.sdk-chat-editor-suggestions__item.is-focus:after {
|
|
327
|
+
opacity: 1;
|
|
328
|
+
}
|
|
329
|
+
</style>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-editor-toolbar-item" :class="{'is-divided': divided}">
|
|
3
|
+
<template v-if="!divided">
|
|
4
|
+
<slot></slot>
|
|
5
|
+
</template>
|
|
6
|
+
</div>
|
|
7
|
+
</template>
|
|
8
|
+
<script>
|
|
9
|
+
export default {
|
|
10
|
+
name: 'SdkChatEditorToolbarItem',
|
|
11
|
+
props: {
|
|
12
|
+
divided: {
|
|
13
|
+
type: Boolean,
|
|
14
|
+
default: false
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
</script>
|
|
19
|
+
<style>
|
|
20
|
+
.sdk-chat-editor-toolbar-item.sdk-chat-editor-toolbar-item:not(:last-child){
|
|
21
|
+
margin-right: 12px;
|
|
22
|
+
}
|
|
23
|
+
.sdk-chat-editor-toolbar-item.is-divided{
|
|
24
|
+
width: 1px;
|
|
25
|
+
height: 16px;
|
|
26
|
+
background-color: rgba(0,0,0,.1);
|
|
27
|
+
}
|
|
28
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-editor-toolbar">
|
|
3
|
+
<slot></slot>
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
<script>
|
|
7
|
+
export default {
|
|
8
|
+
name: 'SdkChatEditorToolbar'
|
|
9
|
+
}
|
|
10
|
+
</script>
|
|
11
|
+
<style>
|
|
12
|
+
.sdk-chat-editor-toolbar{
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-direction: row;
|
|
15
|
+
align-items: center;
|
|
16
|
+
}
|
|
17
|
+
</style>
|