@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,140 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-control-share-card" :class="['sdk-chat-control-share-card--' + type]">
|
|
3
|
+
<template v-if="type === 'default' || type === 'thumb'">
|
|
4
|
+
<div class="sdk-chat-control-share-card__main">
|
|
5
|
+
<div class="sdk-chat-control-share-card__avatar">
|
|
6
|
+
<sdk-avatar :src="avatar" :radius="false" size="medium"></sdk-avatar>
|
|
7
|
+
</div>
|
|
8
|
+
<div class="sdk-chat-control-share-card__fields">
|
|
9
|
+
<div class="sdk-chat-control-share-card__title">{{name}}</div>
|
|
10
|
+
<div class="sdk-chat-control-share-card__summary">{{description}}</div>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="sdk-chat-control-share-card__foot">
|
|
14
|
+
<span class="sdk-chat-control-share-card__category">{{category}}</span>
|
|
15
|
+
</div>
|
|
16
|
+
</template>
|
|
17
|
+
<template v-else-if="type === 'quote'">
|
|
18
|
+
<div class="sdk-chat-control-share-card__icon"></div>
|
|
19
|
+
<div class="sdk-chat-control-share-card__title">{{name}}</div>
|
|
20
|
+
<sdk-avatar :src="avatar" :radius="false" size="medium"></sdk-avatar>
|
|
21
|
+
</template>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
<script>
|
|
25
|
+
import SdkAvatar from '../../../common/avatar'
|
|
26
|
+
import { parse, parseXml } from '../../../utils/json'
|
|
27
|
+
|
|
28
|
+
export default {
|
|
29
|
+
name: 'SdkChatControlShareCard',
|
|
30
|
+
components: {
|
|
31
|
+
SdkAvatar
|
|
32
|
+
},
|
|
33
|
+
props: {
|
|
34
|
+
id: {
|
|
35
|
+
type: String
|
|
36
|
+
},
|
|
37
|
+
content: {
|
|
38
|
+
type: [Object, String]
|
|
39
|
+
},
|
|
40
|
+
type: {
|
|
41
|
+
type: String,
|
|
42
|
+
default: 'default',
|
|
43
|
+
validator (value) {
|
|
44
|
+
return ['quote', 'default', 'thumb'].includes(value)
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
computed: {
|
|
49
|
+
nextContent () {
|
|
50
|
+
let content = parse(this.content)
|
|
51
|
+
if (content && typeof content !== 'object') {
|
|
52
|
+
content = parseXml(content)
|
|
53
|
+
if (content && typeof content === 'object' && content.msg) {
|
|
54
|
+
content = content.msg
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
return content || {}
|
|
58
|
+
},
|
|
59
|
+
description () {
|
|
60
|
+
return this.nextContent.sign || this.nextContent.alias
|
|
61
|
+
},
|
|
62
|
+
name () {
|
|
63
|
+
return this.nextContent.nickname
|
|
64
|
+
},
|
|
65
|
+
avatar () {
|
|
66
|
+
return this.nextContent.bigheadimgurl || this.nextContent.smallheadimgurl || this.nextContent.brandIconUrl
|
|
67
|
+
},
|
|
68
|
+
category () {
|
|
69
|
+
return (this.nextContent.username && this.nextContent.username.indexOf('gh_') === 0 || this.nextContent.certflag == 24) ? '公众号名片' : '个人微名片'
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
</script>
|
|
74
|
+
<style lang="less">
|
|
75
|
+
.sdk-chat-control-share-card--default,
|
|
76
|
+
.sdk-chat-control-share-card--thumb{
|
|
77
|
+
width: 248px;
|
|
78
|
+
max-width: 100%;
|
|
79
|
+
line-height: 1.5em;
|
|
80
|
+
.sdk-chat-control-share-card__main{
|
|
81
|
+
display: flex;
|
|
82
|
+
flex-direction: row;
|
|
83
|
+
padding: 10px;
|
|
84
|
+
}
|
|
85
|
+
.sdk-chat-control-share-card__fields{
|
|
86
|
+
flex: 1;
|
|
87
|
+
min-width: 0;
|
|
88
|
+
padding-left: 10px;
|
|
89
|
+
}
|
|
90
|
+
.sdk-chat-control-share-card__title{
|
|
91
|
+
font-size: 14px;
|
|
92
|
+
overflow: hidden;
|
|
93
|
+
text-overflow: ellipsis;
|
|
94
|
+
white-space: nowrap;
|
|
95
|
+
}
|
|
96
|
+
.sdk-chat-control-share-card__summary{
|
|
97
|
+
color: #888;
|
|
98
|
+
font-size: 12px;
|
|
99
|
+
overflow: hidden;
|
|
100
|
+
text-overflow: ellipsis;
|
|
101
|
+
white-space: nowrap;
|
|
102
|
+
margin-top: 6px;
|
|
103
|
+
}
|
|
104
|
+
.sdk-chat-control-share-card__foot{
|
|
105
|
+
border-top: 1px solid #eee;
|
|
106
|
+
height: 24px;
|
|
107
|
+
line-height: 24px;
|
|
108
|
+
padding: 0 10px;
|
|
109
|
+
box-sizing: content-box;
|
|
110
|
+
}
|
|
111
|
+
.sdk-chat-control-share-card__category{
|
|
112
|
+
color: #999;
|
|
113
|
+
font-size: 12px;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
.sdk-chat-control-share-card--thumb{
|
|
117
|
+
border: 1px solid #eee;
|
|
118
|
+
border-radius: 4px;
|
|
119
|
+
background-color: #fff;
|
|
120
|
+
}
|
|
121
|
+
.sdk-chat-control-share-card--quote {
|
|
122
|
+
display: flex;
|
|
123
|
+
flex-direction: row;
|
|
124
|
+
.sdk-chat-control-share-card__icon {
|
|
125
|
+
display: inline-block;
|
|
126
|
+
width: 18px;
|
|
127
|
+
height: 18px;
|
|
128
|
+
margin-right: 2px;
|
|
129
|
+
min-width: 18px;
|
|
130
|
+
vertical-align: top;
|
|
131
|
+
margin-top: 2px;
|
|
132
|
+
color: #999;
|
|
133
|
+
background: url('./quote-icon.svg') no-repeat 50% 50%;
|
|
134
|
+
background-size: 72%;
|
|
135
|
+
}
|
|
136
|
+
.sdk-chat-control-share-card__title{
|
|
137
|
+
margin-right: 6px;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
</style>
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-control-system">
|
|
3
|
+
<component :is="html"></component>
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
<script>
|
|
7
|
+
import { html2Escape } from '../../../utils/string'
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
name: 'SdkChatControlSystem',
|
|
11
|
+
props: {
|
|
12
|
+
id: {
|
|
13
|
+
type: String
|
|
14
|
+
},
|
|
15
|
+
content: {
|
|
16
|
+
type: String
|
|
17
|
+
},
|
|
18
|
+
formatter: {
|
|
19
|
+
type: Function
|
|
20
|
+
},
|
|
21
|
+
addFriendMethod: {
|
|
22
|
+
type: Function
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
computed: {
|
|
26
|
+
nextContent () {
|
|
27
|
+
let content = this.content
|
|
28
|
+
// 微被异常关闭 <a href=\"weixin://voip/callagain/?username=wxid_ofo60wv6hxeg22&isvideocall=false\">重新拨打</a>
|
|
29
|
+
content = content.replace(/<a .*?>(.*)?<\/a>/, '$1')
|
|
30
|
+
// 你有一笔待接收的<_wc_custom_link_ href=\"weixin://wxpay/transfer/remindrcvmsg?fromusername=wxid_czvz4ar05mzj12&transferid=1000050001202403131427288081709&transfer_msg_type=1\">转账</_wc_custom_link_>
|
|
31
|
+
content = content.replace(/<_wc_custom_link_ .*?>(.*)?<\/_wc_custom_link_>/, '$1')
|
|
32
|
+
// <img src=\"SystemMessages_HongbaoIcon.png\"/> 你领取了黄哒哒的<_wc_custom_link_ color=\"#FD9931\" href=\"weixin://weixinhongbao/opendetail?sendid=1000039901202403067108164737017&sign=aeb7599b2ba534837903a501e7c0f3aaa3449225842552e5d19221a43b1be006d012bcbf25660c6700d3ff1488703edf16e033ec6fb8a35a484ff79b3d4d71bf90c7dd7561af1335314c9ef451b8d36c&ver=6\">红包</_wc_custom_link_>
|
|
33
|
+
content = content.replace(/<img .*?\/>/, '')
|
|
34
|
+
return content
|
|
35
|
+
},
|
|
36
|
+
html () {
|
|
37
|
+
let content = this.nextContent
|
|
38
|
+
if (this.formatter) {
|
|
39
|
+
content = this.formatter({
|
|
40
|
+
content: this.nextContent
|
|
41
|
+
})
|
|
42
|
+
} else {
|
|
43
|
+
content = html2Escape(content)
|
|
44
|
+
}
|
|
45
|
+
if (!content) {
|
|
46
|
+
return ''
|
|
47
|
+
}
|
|
48
|
+
if (typeof content === 'string') {
|
|
49
|
+
content = content.replace(/(发送朋友验证)$/, '<span class="sdk-chat-control-system__send">$1</span>')
|
|
50
|
+
return {
|
|
51
|
+
functional: true,
|
|
52
|
+
render: (h) => {
|
|
53
|
+
return h('div', {
|
|
54
|
+
class: 'sdk-chat-control-system__html',
|
|
55
|
+
domProps: {
|
|
56
|
+
innerHTML: content.trim()
|
|
57
|
+
},
|
|
58
|
+
on: {
|
|
59
|
+
click: (event) => {
|
|
60
|
+
if (!event.target.classList.contains('sdk-chat-control-system__send')) {
|
|
61
|
+
return
|
|
62
|
+
}
|
|
63
|
+
if (event.target.classList.contains('is-loading')) {
|
|
64
|
+
return
|
|
65
|
+
}
|
|
66
|
+
if (!this.addFriendMethod) {
|
|
67
|
+
return
|
|
68
|
+
}
|
|
69
|
+
event.target.classList.add('is-loading')
|
|
70
|
+
this.addFriendMethod().finally(() => {
|
|
71
|
+
event.target.classList.remove('is-loading')
|
|
72
|
+
})
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
})
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
return content
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
</script>
|
|
84
|
+
<style lang="less">
|
|
85
|
+
.sdk-chat-control-system{
|
|
86
|
+
text-align: center;
|
|
87
|
+
color: #999;
|
|
88
|
+
font-size: 12px;
|
|
89
|
+
width: 100%;
|
|
90
|
+
padding: 12px;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.sdk-chat-control-system__send{
|
|
94
|
+
color: #409EFF;
|
|
95
|
+
cursor: pointer;
|
|
96
|
+
&.is-loading {
|
|
97
|
+
color: #999;
|
|
98
|
+
&:before {
|
|
99
|
+
content: '';
|
|
100
|
+
display: inline-block;
|
|
101
|
+
width: 8px;
|
|
102
|
+
height: 8px;
|
|
103
|
+
border: 2px solid #ccc;
|
|
104
|
+
border-top-color: transparent;
|
|
105
|
+
border-radius: 100%;
|
|
106
|
+
animation: sdk-chat-control-system-send-loading infinite 0.75s linear;
|
|
107
|
+
vertical-align: top;
|
|
108
|
+
margin-right: 4px;
|
|
109
|
+
margin-top: 3px;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
// 转转转动画
|
|
114
|
+
@keyframes sdk-chat-control-system-send-loading {
|
|
115
|
+
0% {
|
|
116
|
+
transform: rotate(0);
|
|
117
|
+
}
|
|
118
|
+
100% {
|
|
119
|
+
transform: rotate(360deg);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
</style>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-control-system-batch-message">
|
|
3
|
+
{{ content }}
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
<script>
|
|
7
|
+
export default {
|
|
8
|
+
name: 'SdkChatControlSystemBatchMessage',
|
|
9
|
+
props: {
|
|
10
|
+
id: {
|
|
11
|
+
type: String
|
|
12
|
+
},
|
|
13
|
+
content: {
|
|
14
|
+
type: String
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
</script>
|
|
19
|
+
<style lang="less">
|
|
20
|
+
.sdk-chat-control-system-batch-message{
|
|
21
|
+
text-align: center;
|
|
22
|
+
color: #999;
|
|
23
|
+
font-size: 12px;
|
|
24
|
+
width: 100%;
|
|
25
|
+
padding: 12px;
|
|
26
|
+
}
|
|
27
|
+
</style>
|
|
28
|
+
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-control-system-money">
|
|
3
|
+
{{ nextContent }}
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
<script>
|
|
7
|
+
export default {
|
|
8
|
+
name: 'SdkChatControlSystemMoney',
|
|
9
|
+
props: {
|
|
10
|
+
id: {
|
|
11
|
+
type: String
|
|
12
|
+
},
|
|
13
|
+
content: {
|
|
14
|
+
type: String
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
computed: {
|
|
18
|
+
nextContent () {
|
|
19
|
+
let content = this.content
|
|
20
|
+
// 微被异常关闭 <a href=\"weixin://voip/callagain/?username=wxid_ofo60wv6hxeg22&isvideocall=false\">重新拨打</a>
|
|
21
|
+
content = content.replace(/<a .*?>(.*)?<\/a>/, '$1')
|
|
22
|
+
// 你有一笔待接收的<_wc_custom_link_ href=\"weixin://wxpay/transfer/remindrcvmsg?fromusername=wxid_czvz4ar05mzj12&transferid=1000050001202403131427288081709&transfer_msg_type=1\">转账</_wc_custom_link_>
|
|
23
|
+
content = content.replace(/<_wc_custom_link_ .*?>(.*)?<\/_wc_custom_link_>/, '$1')
|
|
24
|
+
// <img src=\"SystemMessages_HongbaoIcon.png\"/> 你领取了黄哒哒的<_wc_custom_link_ color=\"#FD9931\" href=\"weixin://weixinhongbao/opendetail?sendid=1000039901202403067108164737017&sign=aeb7599b2ba534837903a501e7c0f3aaa3449225842552e5d19221a43b1be006d012bcbf25660c6700d3ff1488703edf16e033ec6fb8a35a484ff79b3d4d71bf90c7dd7561af1335314c9ef451b8d36c&ver=6\">红包</_wc_custom_link_>
|
|
25
|
+
content = content.replace(/<img .*?\/>/, '')
|
|
26
|
+
return content
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
</script>
|
|
31
|
+
<style lang="less">
|
|
32
|
+
.sdk-chat-control-system-money{
|
|
33
|
+
text-align: center;
|
|
34
|
+
color: #999;
|
|
35
|
+
font-size: 12px;
|
|
36
|
+
width: 100%;
|
|
37
|
+
padding: 12px;
|
|
38
|
+
}
|
|
39
|
+
</style>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg t="1731930969407" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2066" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
|
|
4
|
+
<path d="M0 0h1024v1024H0z" fill="#91adad" p-id="2067"></path>
|
|
5
|
+
<path d="M584.85416126 201.97150659H827.74964523c4.49001789 0 8.18341971 3.62098217 8.18341972 8.1834197V241.87473011c0 4.49001789-3.62098217 8.18341971-8.18341972 8.1834197H584.85416126c-4.49001789 0-8.18341971-3.62098217-8.18341971-8.1834197V210.15492629c0-4.56243754 3.62098217-8.18341971 8.18341971-8.1834197zM576.67074156 384.83110618v-31.79222345c0-4.49001789 3.62098217-8.18341971 8.1834197-8.1834197H827.74964523c4.49001789 0 8.18341971 3.62098217 8.18341972 8.1834197v31.79222345c0 4.49001789-3.62098217 8.18341971-8.18341972 8.18341971H584.85416126c-4.56243754 0-8.18341971-3.69340181-8.18341971-8.18341971zM576.67074156 527.78748226v-31.79222345c0-4.49001789 3.62098217-8.18341971 8.1834197-8.1834197H827.74964523c4.49001789 0 8.18341971 3.62098217 8.18341972 8.1834197v31.79222344c0 4.49001789-3.62098217 8.18341971-8.18341972 8.18341973H584.85416126c-4.56243754 0-8.18341971-3.69340181-8.18341971-8.18341973zM187.55999756 670.74385834v-31.79222346c0-4.49001789 3.62098217-8.18341971 8.1834197-8.1834197H827.74964523c4.49001789 0 8.18341971 3.62098217 8.18341972 8.1834197v31.79222345c0 4.49001789-3.62098217 8.18341971-8.18341972 8.18341972H195.74341725c-4.56243754 0-8.18341971-3.69340181-8.18341969-8.18341972zM187.55999756 813.70023442v-31.79222347c0-4.49001789 3.62098217-8.18341971 8.1834197-8.18341969H827.74964523c4.49001789 0 8.18341971 3.62098217 8.18341972 8.18341969v31.79222347c0 4.49001789-3.62098217 8.18341971-8.18341972 8.18341971H195.74341725c-4.56243754 0-8.18341971-3.62098217-8.18341969-8.18341971zM187.70483684 253.67913198V209.72040844c0-4.49001789 3.62098217-8.18341971 8.18341971-8.18341971h307.78348446c4.49001789 0 8.18341971 3.62098217 8.1834197 8.18341971v44.24840212c0 4.49001789-3.62098217 8.18341971-8.18341969 8.1834197l-307.78348448-0.21725892c-4.56243754-0.07241965-8.18341971-3.69340181-8.1834197-8.25583935z" fill="#ffffff" p-id="9519"></path><path d="M317.33599854 260.7038374h64.81558084v309.59397555c0 8.18341971-6.6626072 14.8460269-14.8460269 14.84602689h-35.19594669c-8.18341971 0-14.8460269-6.6626072-14.84602691-14.8460269V260.7038374z" fill="#ffffff" p-id="9520"></path>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="sdk-chat-control-text"
|
|
4
|
+
:class="['sdk-chat-control-text--' + type]"
|
|
5
|
+
>
|
|
6
|
+
<div class="sdk-chat-control-text__main">
|
|
7
|
+
<template v-if="hasScroll">
|
|
8
|
+
<ui-popover
|
|
9
|
+
:value="showPopover"
|
|
10
|
+
@input="handleShowPopoverChange"
|
|
11
|
+
>
|
|
12
|
+
<template slot="reference">
|
|
13
|
+
<div class="sdk-chat-control-text__content"
|
|
14
|
+
v-html="html"
|
|
15
|
+
ref="popoverContent"
|
|
16
|
+
></div>
|
|
17
|
+
</template>
|
|
18
|
+
<div class="sdk-chat-control-text__popover" v-html="html" :style="{'width': popoverWidth}"></div>
|
|
19
|
+
</ui-popover>
|
|
20
|
+
</template>
|
|
21
|
+
<template v-else>
|
|
22
|
+
<div class="sdk-chat-control-text__content"
|
|
23
|
+
v-html="html"
|
|
24
|
+
ref="content"
|
|
25
|
+
></div>
|
|
26
|
+
</template>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
</template>
|
|
30
|
+
<script>
|
|
31
|
+
import { Popover as UiPopover } from '@aochuang/common/components'
|
|
32
|
+
import { html2Escape } from '../../../utils/string'
|
|
33
|
+
|
|
34
|
+
export default {
|
|
35
|
+
name: 'SdkChatControlText',
|
|
36
|
+
components: {
|
|
37
|
+
UiPopover
|
|
38
|
+
},
|
|
39
|
+
props: {
|
|
40
|
+
id: {
|
|
41
|
+
type: String
|
|
42
|
+
},
|
|
43
|
+
content: {
|
|
44
|
+
type: String
|
|
45
|
+
},
|
|
46
|
+
type: {
|
|
47
|
+
type: String,
|
|
48
|
+
default: 'default',
|
|
49
|
+
validator (value) {
|
|
50
|
+
return ['quote', 'default', 'isolate'].includes(value)
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
formatter: {
|
|
54
|
+
type: Function
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
data () {
|
|
58
|
+
return {
|
|
59
|
+
hasScroll: false,
|
|
60
|
+
showPopover: false,
|
|
61
|
+
popoverWidth: null
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
computed: {
|
|
65
|
+
nextContent () {
|
|
66
|
+
return this.content
|
|
67
|
+
},
|
|
68
|
+
text () {
|
|
69
|
+
return this.nextContent
|
|
70
|
+
},
|
|
71
|
+
html () {
|
|
72
|
+
let content = this.nextContent
|
|
73
|
+
if (this.formatter) {
|
|
74
|
+
content = this.formatter({
|
|
75
|
+
content: this.nextContent
|
|
76
|
+
})
|
|
77
|
+
} else {
|
|
78
|
+
content = html2Escape(content)
|
|
79
|
+
}
|
|
80
|
+
if (!content) {
|
|
81
|
+
return ''
|
|
82
|
+
}
|
|
83
|
+
content = content.replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig, item => {
|
|
84
|
+
return `<a href="${item}" target='_blank'>${item}</a>`
|
|
85
|
+
})
|
|
86
|
+
return content.trim()
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
mounted () {
|
|
90
|
+
if (this.$refs.content) {
|
|
91
|
+
this.hasScroll = this.$refs.content.scrollHeight > this.$refs.content.clientHeight
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
methods: {
|
|
95
|
+
handleShowPopoverChange (visible) {
|
|
96
|
+
if (this.$refs.popoverContent && visible) {
|
|
97
|
+
this.popoverWidth = this.$refs.popoverContent.offsetWidth + 'px'
|
|
98
|
+
}
|
|
99
|
+
this.$nextTick(() => {
|
|
100
|
+
this.showPopover = visible
|
|
101
|
+
})
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
</script>
|
|
106
|
+
<style lang="less">
|
|
107
|
+
.sdk-chat-control-text--default {
|
|
108
|
+
.sdk-chat-control-text__main{
|
|
109
|
+
padding: 10px;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
.sdk-chat-control-text--isolate {
|
|
113
|
+
background-color: #fff;
|
|
114
|
+
border: 1px solid #eee;
|
|
115
|
+
.sdk-chat-control-text__main{
|
|
116
|
+
padding: 10px;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
.sdk-chat-control-text--quote {
|
|
120
|
+
.sdk-chat-control-text__content{
|
|
121
|
+
display: -webkit-box;
|
|
122
|
+
-webkit-box-orient: vertical;
|
|
123
|
+
-webkit-line-clamp: 2; /* 限制显示3行 */
|
|
124
|
+
overflow: hidden;
|
|
125
|
+
max-width: 420px;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
.sdk-chat-control-text--thumb {
|
|
129
|
+
background-color: #fff;
|
|
130
|
+
border: 1px solid #eee;
|
|
131
|
+
border-radius: 3px;
|
|
132
|
+
padding: 6px 10px;
|
|
133
|
+
.sdk-chat-control-text__content{
|
|
134
|
+
display: -webkit-box;
|
|
135
|
+
-webkit-box-orient: vertical;
|
|
136
|
+
-webkit-line-clamp: 3; /* 限制显示3行 */
|
|
137
|
+
overflow: hidden;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
.sdk-chat-control-text__main{
|
|
141
|
+
white-space: pre-wrap;
|
|
142
|
+
line-height: 1.5em;
|
|
143
|
+
word-break: break-all;
|
|
144
|
+
img {
|
|
145
|
+
vertical-align: top;
|
|
146
|
+
}
|
|
147
|
+
a {
|
|
148
|
+
color: #4387ff;
|
|
149
|
+
&:hover {
|
|
150
|
+
color: #4387ff;
|
|
151
|
+
text-decoration: underline;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
.sdk-chat-control-text__popover{
|
|
156
|
+
white-space: pre-wrap;
|
|
157
|
+
line-height: 1.5em;
|
|
158
|
+
word-break: break-all;
|
|
159
|
+
padding: 10px;
|
|
160
|
+
img {
|
|
161
|
+
vertical-align: top;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
</style>
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="sdk-chat-control-text-with-at"
|
|
4
|
+
:class="['sdk-chat-control-text-with-at--' + type]"
|
|
5
|
+
>
|
|
6
|
+
<div class="sdk-chat-control-text-with-at__main">
|
|
7
|
+
<div class="sdk-chat-control-text-with-at__content" v-html="contentHtml"></div>
|
|
8
|
+
</div>
|
|
9
|
+
</div>
|
|
10
|
+
</template>
|
|
11
|
+
<script>
|
|
12
|
+
import { parse } from '../../../utils/json'
|
|
13
|
+
import { html2Escape } from '../../../utils/string'
|
|
14
|
+
|
|
15
|
+
export default {
|
|
16
|
+
name: 'SdkChatControlTextWithAt',
|
|
17
|
+
props: {
|
|
18
|
+
id: {
|
|
19
|
+
type: String
|
|
20
|
+
},
|
|
21
|
+
type: {
|
|
22
|
+
type: String,
|
|
23
|
+
default: 'default',
|
|
24
|
+
validator (value) {
|
|
25
|
+
return ['quote', 'default'].includes(value)
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
content: {
|
|
29
|
+
type: [String, Object]
|
|
30
|
+
},
|
|
31
|
+
formatter: {
|
|
32
|
+
type: Function
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
computed: {
|
|
36
|
+
nextContent () {
|
|
37
|
+
let content = this.content
|
|
38
|
+
if (!content) {
|
|
39
|
+
return null
|
|
40
|
+
}
|
|
41
|
+
content = parse(content) || {}
|
|
42
|
+
return content
|
|
43
|
+
},
|
|
44
|
+
contentHtml () {
|
|
45
|
+
let content = this.contentText
|
|
46
|
+
if (this.formatter) {
|
|
47
|
+
content = this.formatter({
|
|
48
|
+
content: this.nextContent
|
|
49
|
+
})
|
|
50
|
+
} else {
|
|
51
|
+
content = html2Escape(content)
|
|
52
|
+
}
|
|
53
|
+
if (!content) {
|
|
54
|
+
return ''
|
|
55
|
+
}
|
|
56
|
+
return content
|
|
57
|
+
},
|
|
58
|
+
contentText () {
|
|
59
|
+
return this.nextContent.text
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
</script>
|
|
64
|
+
|
|
65
|
+
<style lang="less">
|
|
66
|
+
.sdk-chat-control-text-with-at--default {
|
|
67
|
+
.sdk-chat-control-text-with-at__main{
|
|
68
|
+
padding: 10px;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
.sdk-chat-control-text-with-at--quote {
|
|
72
|
+
.sdk-chat-control-text-with-at__content{
|
|
73
|
+
display: -webkit-box;
|
|
74
|
+
-webkit-box-orient: vertical;
|
|
75
|
+
-webkit-line-clamp: 2; /* 限制显示3行 */
|
|
76
|
+
overflow: hidden;
|
|
77
|
+
max-width: 420px;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
.sdk-chat-control-text-with-at__main{
|
|
81
|
+
white-space: pre-wrap;
|
|
82
|
+
line-height: 1.5em;
|
|
83
|
+
word-break: break-all;
|
|
84
|
+
img {
|
|
85
|
+
vertical-align: top;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
</style>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1603587681753" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4019" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M392.533333 806.4L85.333333 503.466667l59.733334-59.733334 247.466666 247.466667L866.133333 213.333333l59.733334 59.733334L392.533333 806.4z" fill="#ffffff" p-id="4020"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1599053811428" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3483" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M393.8304 830.5664a32 32 0 0 1-41.4208 1.2288l-3.7888-3.584-186.1632-206.848a32 32 0 0 1 18.7392-53.0944l5.0688-0.3584h620.544a32 32 0 0 1 4.7616 63.6416l-4.7104 0.3584H258.048L396.288 785.408c10.5984 11.8272 10.8032 29.44 1.1776 41.472l-3.584 3.7376zM599.1936 162.4064a32 32 0 0 1 41.4208-1.2288l3.7888 3.584 186.1632 206.848c17.408 19.3536 5.632 49.408-18.7392 53.0432l-5.0176 0.4096H186.1632a32 32 0 0 1-4.7104-63.6416l4.7104-0.3584 548.7616-0.0512-138.0864-153.4464a32 32 0 0 1-1.2288-41.3696l3.584-3.7888z" fill="#999" p-id="3484"></path><path d="M0 0h992.9728v992.9728H0z" fill="#999" fill-opacity="0" p-id="3485"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1710321306225" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5476" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M512 1024C229.225412 1024 0 794.774588 0 512S229.225412 0 512 0s512 229.225412 512 512-229.225412 512-512 512z m0-120.470588c216.244706 0 391.529412-175.284706 391.529412-391.529412S728.244706 120.470588 512 120.470588 120.470588 295.755294 120.470588 512s175.284706 391.529412 391.529412 391.529412z m-75.294118-421.647059H256l180.705882-195.764706v75.294118h331.294118v120.470588H436.705882z m150.588236 60.235294h180.705882L587.294118 737.882353v-75.294118H256v-120.470588h331.294118z" fill="#ffffff" p-id="5477"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1603587725890" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4307" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M290.133333 448H896v85.333333H290.133333l132.266667 132.266667L362.666667 725.333333 128 490.666667 362.666667 256l59.733333 59.733333-132.266667 132.266667z" fill="#ffffff" p-id="4308"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1599053811428" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3483" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M393.8304 830.5664a32 32 0 0 1-41.4208 1.2288l-3.7888-3.584-186.1632-206.848a32 32 0 0 1 18.7392-53.0944l5.0688-0.3584h620.544a32 32 0 0 1 4.7616 63.6416l-4.7104 0.3584H258.048L396.288 785.408c10.5984 11.8272 10.8032 29.44 1.1776 41.472l-3.584 3.7376zM599.1936 162.4064a32 32 0 0 1 41.4208-1.2288l3.7888 3.584 186.1632 206.848c17.408 19.3536 5.632 49.408-18.7392 53.0432l-5.0176 0.4096H186.1632a32 32 0 0 1-4.7104-63.6416l4.7104-0.3584 548.7616-0.0512-138.0864-153.4464a32 32 0 0 1-1.2288-41.3696l3.584-3.7888z" fill="#ffffff" p-id="3484"></path><path d="M0 0h992.9728v992.9728H0z" fill="#ffffff" fill-opacity="0" p-id="3485"></path></svg>
|