@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,32 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="bi-chat-control-member-change">
|
|
3
|
+
{{ content.content }}
|
|
4
|
+
</view>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
import { toJson } from '../../../utils/data.js'
|
|
9
|
+
|
|
10
|
+
export default {
|
|
11
|
+
name: 'BiChatControlMemberChange',
|
|
12
|
+
props: {
|
|
13
|
+
data: {
|
|
14
|
+
type: String
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
computed: {
|
|
18
|
+
content () {
|
|
19
|
+
return toJson(this.data)
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
</script>
|
|
24
|
+
|
|
25
|
+
<style lang="less">
|
|
26
|
+
.bi-chat-control-member-change{
|
|
27
|
+
color: #999;
|
|
28
|
+
font-size: 12px;
|
|
29
|
+
padding: 12px;
|
|
30
|
+
text-align: center;
|
|
31
|
+
}
|
|
32
|
+
</style>
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="bi-chat-control-quote-message" :class="[dir ? 'is-dir-' + dir : null]" v-if="quoteMessageInfo">
|
|
3
|
+
<view class="bi-chat-control-quote-message__inner">
|
|
4
|
+
<view class="bi-chat-control-quote-message__arrow" :style="{'border-color': innerColor}"></view>
|
|
5
|
+
<view class="bi-chat-control-quote-message__content" :style="{'background-color': innerColor}">
|
|
6
|
+
<rich-text :nodes="showContent"></rich-text>
|
|
7
|
+
</view>
|
|
8
|
+
</view>
|
|
9
|
+
<view class="bi-chat-control-quote-message__wrap">
|
|
10
|
+
<template v-if="loading">
|
|
11
|
+
<view class="bi-chat-control-quote-message__loading">
|
|
12
|
+
<view>引用内容正在加载中...</view>
|
|
13
|
+
</view>
|
|
14
|
+
</template>
|
|
15
|
+
<template v-else>
|
|
16
|
+
<template v-if="errorMsg">
|
|
17
|
+
<view class="bi-chat-control-quote-message__exception">{{ errorMsg }}</view>
|
|
18
|
+
</template>
|
|
19
|
+
<template v-else>
|
|
20
|
+
<view class="bi-chat-control-quote-message__main">
|
|
21
|
+
<view class="bi-chat-control-quote-message__user">{{ quoteMessageInfo.quoteSendName }}:</view>
|
|
22
|
+
<view class="bi-chat-control-quote-message__msg">
|
|
23
|
+
<template v-if="quoteMessageInfo && quoteMessageInfo.quoteSendType === 1">
|
|
24
|
+
<rich-text v-if="quoteContent" :nodes="showQuoteContentText"></rich-text>
|
|
25
|
+
</template>
|
|
26
|
+
<template v-else>
|
|
27
|
+
<template v-if="quoteMessageInfo && quoteMessageInfo.quoteSendType">
|
|
28
|
+
<slot name="sub-message" :data="quoteMessage"></slot>
|
|
29
|
+
</template>
|
|
30
|
+
<template v-else>
|
|
31
|
+
<rich-text v-if="quoteContent" :nodes="showQuoteContentText"></rich-text>
|
|
32
|
+
</template>
|
|
33
|
+
</template>
|
|
34
|
+
</view>
|
|
35
|
+
</view>
|
|
36
|
+
</template>
|
|
37
|
+
</template>
|
|
38
|
+
</view>
|
|
39
|
+
</view>
|
|
40
|
+
</template>
|
|
41
|
+
<script>
|
|
42
|
+
import { toJson } from '../../../utils/data'
|
|
43
|
+
import { html2Escape } from '../../../utils/string'
|
|
44
|
+
import { getFriendMessageBySvrId, getRoomMessageBySvrId } from '@/apis/message'
|
|
45
|
+
import { parseWechatEmoji } from '@aochuang/common/uni-common/wechat-emoji/index.js'
|
|
46
|
+
import parseHtml from '@/utils/html-parser.js'
|
|
47
|
+
|
|
48
|
+
export default {
|
|
49
|
+
name: 'AcWechatChatPanelControlQuoteMessage',
|
|
50
|
+
props: {
|
|
51
|
+
quotable: {
|
|
52
|
+
type: Boolean
|
|
53
|
+
},
|
|
54
|
+
dir: {
|
|
55
|
+
type: String,
|
|
56
|
+
validator (value) {
|
|
57
|
+
if (!value) {
|
|
58
|
+
return true
|
|
59
|
+
}
|
|
60
|
+
return ['left', 'right'].includes(value)
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
data: {
|
|
64
|
+
type: String
|
|
65
|
+
},
|
|
66
|
+
wechatAccountId: {
|
|
67
|
+
type: String,
|
|
68
|
+
required: true
|
|
69
|
+
},
|
|
70
|
+
wechatFriendId: {
|
|
71
|
+
type: String
|
|
72
|
+
},
|
|
73
|
+
wechatChatroomId: {
|
|
74
|
+
type: String
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
data () {
|
|
78
|
+
return {
|
|
79
|
+
loading: false,
|
|
80
|
+
quoteMessage: null,
|
|
81
|
+
errorMsg: null
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
created () {
|
|
85
|
+
const {wechatAccountId, wechatFriendId, wechatChatroomId} = this
|
|
86
|
+
const {msgSvrId, wechatTime, quoteSendType} = (this.quoteMessageInfo || {})
|
|
87
|
+
if (quoteSendType !== 1) {
|
|
88
|
+
if (wechatChatroomId) {
|
|
89
|
+
this.loading = true
|
|
90
|
+
getRoomMessageBySvrId({
|
|
91
|
+
wechatAccountId,
|
|
92
|
+
wechatChatroomId,
|
|
93
|
+
msgSvrId,
|
|
94
|
+
wechatTime
|
|
95
|
+
}).then(({ data }) => {
|
|
96
|
+
if (!data) {
|
|
97
|
+
this.errorMsg = '未找到引用消息内容,请在手机中查看'
|
|
98
|
+
} else {
|
|
99
|
+
this.quoteMessage = data
|
|
100
|
+
}
|
|
101
|
+
this.$emit('load')
|
|
102
|
+
}).finally(() => {
|
|
103
|
+
this.loading = false
|
|
104
|
+
})
|
|
105
|
+
} else {
|
|
106
|
+
this.loading = true
|
|
107
|
+
getFriendMessageBySvrId({
|
|
108
|
+
wechatAccountId,
|
|
109
|
+
wechatFriendId,
|
|
110
|
+
msgSvrId,
|
|
111
|
+
wechatTime
|
|
112
|
+
}).then(({ data }) => {
|
|
113
|
+
if (!data) {
|
|
114
|
+
this.errorMsg = '未找到引用消息内容,请在手机中查看'
|
|
115
|
+
} else {
|
|
116
|
+
this.quoteMessage = data
|
|
117
|
+
}
|
|
118
|
+
this.$emit('load')
|
|
119
|
+
}).finally(() => {
|
|
120
|
+
this.loading = false
|
|
121
|
+
})
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
computed: {
|
|
126
|
+
quoteMessageInfo () {
|
|
127
|
+
const data = (this.data || '').replace(/^[\w-_@]+:\{/, '{')
|
|
128
|
+
return toJson(data)
|
|
129
|
+
},
|
|
130
|
+
quoteContent () {
|
|
131
|
+
if (!this.quoteMessageInfo.quoteSendContent) {
|
|
132
|
+
return ''
|
|
133
|
+
}
|
|
134
|
+
return html2Escape(this.quoteMessageInfo.quoteSendContent)
|
|
135
|
+
},
|
|
136
|
+
showContent () {
|
|
137
|
+
return parseHtml(parseWechatEmoji(this.quoteMessageInfo.content))
|
|
138
|
+
},
|
|
139
|
+
showQuoteContentText () {
|
|
140
|
+
if (!this.quoteMessageInfo.quoteSendContent) {
|
|
141
|
+
return ''
|
|
142
|
+
}
|
|
143
|
+
return parseHtml(parseWechatEmoji(this.quoteMessageInfo.quoteSendContent))
|
|
144
|
+
},
|
|
145
|
+
innerColor () {
|
|
146
|
+
if (this.dir === 'right') {
|
|
147
|
+
return '#c9e3fc'
|
|
148
|
+
} else {
|
|
149
|
+
return '#ffffff'
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
</script>
|
|
155
|
+
<style lang="less">
|
|
156
|
+
.bi-chat-control-quote-message{
|
|
157
|
+
.bi-chat-control-quote-message__inner{
|
|
158
|
+
display: flex;
|
|
159
|
+
flex-direction: row;
|
|
160
|
+
}
|
|
161
|
+
&.is-dir-left {
|
|
162
|
+
.bi-chat-control-quote-message__arrow{
|
|
163
|
+
left: -8px;
|
|
164
|
+
transform: rotate(-90deg);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
&.is-dir-right {
|
|
168
|
+
.bi-chat-control-quote-message__arrow{
|
|
169
|
+
right: -8px;
|
|
170
|
+
transform: rotate(90deg);
|
|
171
|
+
}
|
|
172
|
+
.bi-chat-control-quote-message__inner{
|
|
173
|
+
justify-content: flex-end;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
.bi-chat-control-quote-message__arrow{
|
|
178
|
+
border: 6px solid transparent;
|
|
179
|
+
border-left-color: transparent!important;
|
|
180
|
+
border-right-color: transparent!important;
|
|
181
|
+
border-top: 0;
|
|
182
|
+
position: absolute;
|
|
183
|
+
top: 14px;
|
|
184
|
+
z-index: 10;
|
|
185
|
+
}
|
|
186
|
+
.bi-chat-control-quote-message__content{
|
|
187
|
+
padding: 8px 12px;
|
|
188
|
+
border-radius: 3px;
|
|
189
|
+
}
|
|
190
|
+
.bi-chat-control-quote-message__main{
|
|
191
|
+
background-color: rgba(0,0,0,.06);
|
|
192
|
+
border-radius: 3px;
|
|
193
|
+
padding: 8px;
|
|
194
|
+
margin-top: 6px;
|
|
195
|
+
display: flex;
|
|
196
|
+
flex-direction: column;
|
|
197
|
+
}
|
|
198
|
+
.bi-chat-control-quote-message__loading,
|
|
199
|
+
.bi-chat-control-quote-message__exception {
|
|
200
|
+
background-color: rgba(0,0,0,.06);
|
|
201
|
+
border-radius: 3px;
|
|
202
|
+
padding: 8px;
|
|
203
|
+
margin-top: 6px;
|
|
204
|
+
display: flex;
|
|
205
|
+
flex-direction: row;
|
|
206
|
+
}
|
|
207
|
+
.bi-chat-control-quote-message__text{
|
|
208
|
+
text-align: left;
|
|
209
|
+
img {
|
|
210
|
+
vertical-align: top;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
.bi-chat-control-quote-message__user{
|
|
214
|
+
white-space: nowrap;
|
|
215
|
+
}
|
|
216
|
+
</style>
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="bi-chat-control-real-time-position">
|
|
3
|
+
<view class="bi-chat-control-real-time-position__text">{{ text }}</view>
|
|
4
|
+
<view class="bi-chat-control-real-time-position__icon">
|
|
5
|
+
<bi-icon name="map-pin-2-fill"></bi-icon>
|
|
6
|
+
</view>
|
|
7
|
+
</view>
|
|
8
|
+
</template>
|
|
9
|
+
<script>
|
|
10
|
+
import BiIcon from '@aochuang/common/uni-components/icon/icon.vue'
|
|
11
|
+
import { parseXml } from '@/utils/data'
|
|
12
|
+
|
|
13
|
+
export default {
|
|
14
|
+
name: 'BiChatControlRealTimePosition',
|
|
15
|
+
components: {
|
|
16
|
+
BiIcon
|
|
17
|
+
},
|
|
18
|
+
props: {
|
|
19
|
+
dir: {
|
|
20
|
+
type: String
|
|
21
|
+
},
|
|
22
|
+
type: {
|
|
23
|
+
type: String,
|
|
24
|
+
default: 'default',
|
|
25
|
+
validator (value) {
|
|
26
|
+
return ['default', 'thumb'].includes(value)
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
data: {
|
|
30
|
+
type: String,
|
|
31
|
+
default: () => ({})
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
computed: {
|
|
35
|
+
content () {
|
|
36
|
+
return parseXml(this.data) || {}
|
|
37
|
+
},
|
|
38
|
+
text () {
|
|
39
|
+
let text = '位置共享'
|
|
40
|
+
if (this.content.msg && this.content.msg.appmsg && this.content.msg.appmsg.title) {
|
|
41
|
+
text = this.content.msg.appmsg.title
|
|
42
|
+
}
|
|
43
|
+
return text
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
</script>
|
|
48
|
+
<style lang="less">
|
|
49
|
+
.bi-chat-control-real-time-position{
|
|
50
|
+
display: flex;
|
|
51
|
+
flex-direction: row;
|
|
52
|
+
align-items: center;
|
|
53
|
+
padding: 12px;
|
|
54
|
+
}
|
|
55
|
+
.bi-chat-control-real-time-position__icon{
|
|
56
|
+
width: 18px;
|
|
57
|
+
height: 18px;
|
|
58
|
+
margin-left: 4px;
|
|
59
|
+
background-size: cover;
|
|
60
|
+
opacity: .4;
|
|
61
|
+
}
|
|
62
|
+
</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 class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M907.938909 859.252364A116.782545 116.782545 0 0 1 791.272727 976.174545H223.441455a116.782545 116.782545 0 0 1-116.666182-116.922181V310.085818h87.738182l625.687272-10.496h87.738182z" fill="#EF4108" /><path d="M646.097455 469.527273a141.707636 141.707636 0 0 1-140.264728 103.866182c-115.293091 0-163.560727-107.496727-163.560727-107.496728a570.181818 570.181818 0 0 1-208.244364-84.084363l-27.252363-15.848728v-205.265454a116.014545 116.014545 0 0 1 116.666182-115.339637h567.854545a116.014545 116.014545 0 0 1 116.666182 115.339637v193.885091l-20.363637 12.846545c-4.491636 2.792727-8.866909 5.585455-13.265454 8.285091-68.538182 43.264-122.740364 77.451636-228.235636 93.812364z" fill="#FF6D0B" /><path d="M501.713455 621.242182a181.527273 181.527273 0 1 1 181.08509-181.527273 181.527273 181.527273 0 0 1-181.08509 181.527273z" fill="#FBE945" /><path d="M603.345455 510.906182v-42.565818H525.963636v-50.944h77.381819V374.923636h-21.224728l11.776-47.522909h-43.659636l-11.636364 47.522909h-61.253818l-13.218909-47.522909h-43.892364l13.218909 47.522909h-25.6v42.472728h75.776v50.944h-75.776v42.565818h75.776v64.093091H525.963636v-64.093091z" fill="#FF5D24" /></svg>
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="bi-chat-control-redpacket">
|
|
3
|
+
<view class="bi-chat-control-redpacket__main">
|
|
4
|
+
<view class="bi-chat-control-redpacket__icon"></view>
|
|
5
|
+
<view class="bi-chat-control-redpacket__title">{{content.sendertitle}}</view>
|
|
6
|
+
</view>
|
|
7
|
+
<view class="bi-chat-control-redpacket__type">微红包</view>
|
|
8
|
+
</view>
|
|
9
|
+
</template>
|
|
10
|
+
<script>
|
|
11
|
+
import { toJson } from '../../../utils/data.js'
|
|
12
|
+
|
|
13
|
+
export default {
|
|
14
|
+
name: 'BiChatControlRedpacket',
|
|
15
|
+
props: {
|
|
16
|
+
dir: {
|
|
17
|
+
type: String
|
|
18
|
+
},
|
|
19
|
+
type: {
|
|
20
|
+
type: String,
|
|
21
|
+
default: 'default',
|
|
22
|
+
validator (value) {
|
|
23
|
+
return ['default', 'thumb'].includes(value)
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
data: {
|
|
27
|
+
type: String
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
computed: {
|
|
31
|
+
content () {
|
|
32
|
+
let content = this.data
|
|
33
|
+
if (typeof this.data === 'string') {
|
|
34
|
+
content = toJson(this.data)
|
|
35
|
+
}
|
|
36
|
+
return content
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
</script>
|
|
41
|
+
<style lang="less">
|
|
42
|
+
.bi-chat-control-redpacket__main{
|
|
43
|
+
display: flex;
|
|
44
|
+
flex-direction: row;
|
|
45
|
+
align-items: center;
|
|
46
|
+
padding-bottom: 6px;
|
|
47
|
+
padding: 12px;
|
|
48
|
+
width: 200px;
|
|
49
|
+
background-color: #f79d46;
|
|
50
|
+
color: #fff;
|
|
51
|
+
border-radius: 4px;
|
|
52
|
+
}
|
|
53
|
+
.bi-chat-control-redpacket__title{
|
|
54
|
+
line-height: 22px;
|
|
55
|
+
overflow: hidden;
|
|
56
|
+
white-space: nowrap;
|
|
57
|
+
text-overflow: ellipsis;
|
|
58
|
+
font-weight: bold;
|
|
59
|
+
margin-left: 8px;
|
|
60
|
+
}
|
|
61
|
+
.bi-chat-control-redpacket__icon{
|
|
62
|
+
width: 32px;
|
|
63
|
+
height: 32px;
|
|
64
|
+
background: url('./red-envelope.svg') no-repeat 50% 50%;
|
|
65
|
+
background-size: cover;
|
|
66
|
+
}
|
|
67
|
+
.bi-chat-control-redpacket__type{
|
|
68
|
+
font-size: 12px;
|
|
69
|
+
height: 24px;
|
|
70
|
+
line-height: 24px;
|
|
71
|
+
padding: 0 12px;
|
|
72
|
+
color: #fff;
|
|
73
|
+
border-top: 1px solid rgba(255, 255, 255, 0.2);
|
|
74
|
+
}
|
|
75
|
+
</style>
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="bi-chat-control-share-card" :class="['bi-chat-control-share-card--' + type]">
|
|
3
|
+
<div class="bi-chat-control-share-card__main">
|
|
4
|
+
<div class="bi-chat-control-share-card__avatar">
|
|
5
|
+
<bi-avatar :src="avatar"></bi-avatar>
|
|
6
|
+
</div>
|
|
7
|
+
<div class="bi-chat-control-share-card__fields">
|
|
8
|
+
<div class="bi-chat-control-share-card__title">{{name}}</div>
|
|
9
|
+
<div class="bi-chat-control-share-card__summary">{{description}}</div>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
<div class="bi-chat-control-share-card__foot">
|
|
13
|
+
<span class="bi-chat-control-share-card__category">{{category}}</span>
|
|
14
|
+
</div>
|
|
15
|
+
</view>
|
|
16
|
+
</template>
|
|
17
|
+
<script>
|
|
18
|
+
import BiAvatar from '@aochuang/common/uni-components/avatar/avatar.vue'
|
|
19
|
+
import { toJson } from '../../../utils/data'
|
|
20
|
+
|
|
21
|
+
export default {
|
|
22
|
+
name: 'AcChatControlShareCard',
|
|
23
|
+
components: {
|
|
24
|
+
BiAvatar
|
|
25
|
+
},
|
|
26
|
+
props: {
|
|
27
|
+
type: {
|
|
28
|
+
type: String,
|
|
29
|
+
default: 'default',
|
|
30
|
+
validator (value) {
|
|
31
|
+
return ['default', 'thumb'].includes(value)
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
data: {
|
|
35
|
+
type: String
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
computed: {
|
|
39
|
+
content () {
|
|
40
|
+
return toJson(this.data)
|
|
41
|
+
},
|
|
42
|
+
description () {
|
|
43
|
+
return this.content.alias
|
|
44
|
+
},
|
|
45
|
+
name () {
|
|
46
|
+
return this.content.nickname
|
|
47
|
+
},
|
|
48
|
+
avatar () {
|
|
49
|
+
return this.content.bigheadimgurl || this.content.smallheadimgurl
|
|
50
|
+
},
|
|
51
|
+
category () {
|
|
52
|
+
return this.content.username && (this.content.username.indexOf('gh_') === 0 || this.content.certinfo) ? '公众号名片' : '个人微名片'
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
</script>
|
|
57
|
+
<style type="less">
|
|
58
|
+
.bi-chat-control-share-card--thumb {
|
|
59
|
+
&.bi-chat-control-share-card{
|
|
60
|
+
width: 100%;
|
|
61
|
+
border: 1px solid #eee;
|
|
62
|
+
border-radius: 3px;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
.bi-chat-control-share-card__main{
|
|
66
|
+
display: flex;
|
|
67
|
+
flex-direction: row;
|
|
68
|
+
padding: 10px;
|
|
69
|
+
width: 236px;
|
|
70
|
+
max-width: 100%;
|
|
71
|
+
}
|
|
72
|
+
.bi-chat-control-share-card__fields{
|
|
73
|
+
flex: 1;
|
|
74
|
+
min-width: 0;
|
|
75
|
+
padding-left: 10px;
|
|
76
|
+
}
|
|
77
|
+
.bi-chat-control-share-card__title{
|
|
78
|
+
font-size: 14px;
|
|
79
|
+
overflow: hidden;
|
|
80
|
+
text-overflow: ellipsis;
|
|
81
|
+
white-space: nowrap;
|
|
82
|
+
}
|
|
83
|
+
.bi-chat-control-share-card__summary{
|
|
84
|
+
color: #888;
|
|
85
|
+
font-size: 12px;
|
|
86
|
+
overflow: hidden;
|
|
87
|
+
text-overflow: ellipsis;
|
|
88
|
+
white-space: nowrap;
|
|
89
|
+
}
|
|
90
|
+
.bi-chat-control-share-card__foot{
|
|
91
|
+
border-top: 1px solid #eee;
|
|
92
|
+
height: 24px;
|
|
93
|
+
line-height: 24px;
|
|
94
|
+
padding: 0 10px;
|
|
95
|
+
box-sizing: content-box;
|
|
96
|
+
}
|
|
97
|
+
.bi-chat-control-share-card__category{
|
|
98
|
+
color: #999;
|
|
99
|
+
font-size: 12px;
|
|
100
|
+
}
|
|
101
|
+
</style>
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="bi-chat-control-system-text">
|
|
3
|
+
<template v-if="typeof content === 'string'">
|
|
4
|
+
{{ content }}
|
|
5
|
+
</template>
|
|
6
|
+
<template v-else>
|
|
7
|
+
<rich-text :nodes="content.nodes" @itemclick="content.click"></rich-text>
|
|
8
|
+
</template>
|
|
9
|
+
</view>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script>
|
|
13
|
+
import { formatSystemMessage } from '../utils.js'
|
|
14
|
+
|
|
15
|
+
export default {
|
|
16
|
+
name: 'BiChatControlSystemText',
|
|
17
|
+
props: {
|
|
18
|
+
dir: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: 'left',
|
|
21
|
+
validator (value) {
|
|
22
|
+
return ['left', 'right'].includes(value)
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
data: {
|
|
26
|
+
type: String
|
|
27
|
+
},
|
|
28
|
+
formatter: {
|
|
29
|
+
type: Function
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
computed: {
|
|
33
|
+
nextContent () {
|
|
34
|
+
return formatSystemMessage(this.data)
|
|
35
|
+
},
|
|
36
|
+
content () {
|
|
37
|
+
let content = this.nextContent
|
|
38
|
+
if (this.formatter) {
|
|
39
|
+
content = this.formatter({
|
|
40
|
+
content: this.nextContent
|
|
41
|
+
})
|
|
42
|
+
}
|
|
43
|
+
if (!content) {
|
|
44
|
+
return ''
|
|
45
|
+
}
|
|
46
|
+
// 可以返回虚拟vnode,主要是方便扩展,比如加好友请求
|
|
47
|
+
if (typeof content === 'string') {
|
|
48
|
+
return content
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* {
|
|
52
|
+
* nodes: '',
|
|
53
|
+
* click: null
|
|
54
|
+
* }
|
|
55
|
+
*/
|
|
56
|
+
return content
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
</script>
|
|
61
|
+
|
|
62
|
+
<style lang="less">
|
|
63
|
+
.bi-chat-control-system-text{
|
|
64
|
+
color: #999;
|
|
65
|
+
font-size: 12px;
|
|
66
|
+
padding: 12px;
|
|
67
|
+
text-align: center;
|
|
68
|
+
}
|
|
69
|
+
</style>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="bi-chat-control-system-batch-message">
|
|
3
|
+
{{ content }}
|
|
4
|
+
</view>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
export default {
|
|
9
|
+
name: 'BiChatControlSystemBatchMessage',
|
|
10
|
+
props: {
|
|
11
|
+
data: {
|
|
12
|
+
type: String
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
computed: {
|
|
16
|
+
content () {
|
|
17
|
+
return this.data
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
<style lang="less">
|
|
24
|
+
.bi-chat-control-system-batch-message{
|
|
25
|
+
color: #999;
|
|
26
|
+
font-size: 12px;
|
|
27
|
+
padding: 12px;
|
|
28
|
+
text-align: center;
|
|
29
|
+
}
|
|
30
|
+
</style>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="bi-chat-control-system-text">
|
|
3
|
+
{{ data }}
|
|
4
|
+
</view>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
export default {
|
|
9
|
+
name: 'BiChatControlSystemText',
|
|
10
|
+
props: {
|
|
11
|
+
dir: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: 'left',
|
|
14
|
+
validator (value) {
|
|
15
|
+
return ['left', 'right'].includes(value)
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
data: {
|
|
19
|
+
type: String
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
</script>
|
|
24
|
+
|
|
25
|
+
<style lang="less">
|
|
26
|
+
.bi-chat-control-system-text{
|
|
27
|
+
color: #999;
|
|
28
|
+
font-size: 12px;
|
|
29
|
+
padding: 12px;
|
|
30
|
+
text-align: center;
|
|
31
|
+
}
|
|
32
|
+
</style>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view
|
|
3
|
+
class="bi-chat-control-text"
|
|
4
|
+
:class="['bi-chat-control-text--' + type]"
|
|
5
|
+
>
|
|
6
|
+
<view class="bi-chat-control-text__main">
|
|
7
|
+
<rich-text :nodes="showTextNodes"></rich-text>
|
|
8
|
+
</view>
|
|
9
|
+
</view>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script>
|
|
13
|
+
import { parseWechatEmoji } from '@aochuang/common/uni-common/wechat-emoji/index.js'
|
|
14
|
+
import parseHtml from '@/utils/html-parser.js'
|
|
15
|
+
|
|
16
|
+
export default {
|
|
17
|
+
name: 'BiChatControlText',
|
|
18
|
+
props: {
|
|
19
|
+
dir: {
|
|
20
|
+
type: String,
|
|
21
|
+
default: 'left',
|
|
22
|
+
validator (value) {
|
|
23
|
+
return ['left', 'right'].includes(value)
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
type: {
|
|
27
|
+
type: String,
|
|
28
|
+
default: 'default',
|
|
29
|
+
validator (value) {
|
|
30
|
+
return ['default', 'quote', 'thumb'].includes(value)
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
data: {
|
|
34
|
+
type: String
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
computed: {
|
|
38
|
+
showTextNodes () {
|
|
39
|
+
return parseHtml(parseWechatEmoji(this.data))
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
</script>
|
|
44
|
+
|
|
45
|
+
<style lang="less">
|
|
46
|
+
.bi-chat-control-text__main{
|
|
47
|
+
white-space: pre-wrap;
|
|
48
|
+
word-break: break-all;
|
|
49
|
+
}
|
|
50
|
+
.bi-chat-control-text--default {
|
|
51
|
+
.bi-chat-control-text__main{
|
|
52
|
+
min-height: 14px;
|
|
53
|
+
padding: 8px 12px;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
.bi-chat-control-text--thumb {
|
|
57
|
+
border: 1px solid #eee;
|
|
58
|
+
border-radius: 3px;
|
|
59
|
+
padding: 6px 8px;
|
|
60
|
+
.bi-chat-control-text__main{
|
|
61
|
+
display: -webkit-box;
|
|
62
|
+
-webkit-box-orient: vertical;
|
|
63
|
+
-webkit-line-clamp: 3; /* 限制为3行 */
|
|
64
|
+
overflow: hidden;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
</style>
|