@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,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="1755860383442" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4771" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
|
|
4
|
+
<path d="M0 0m72.576 0l878.848 0q72.576 0 72.576 72.576l0 878.848q0 72.576-72.576 72.576l-878.848 0q-72.576 0-72.576-72.576l0-878.848q0-72.576 72.576-72.576Z" fill="#EFEFEE" p-id="4772"></path>
|
|
5
|
+
<path d="M512.03580317 303.16011854a101.43037616 101.43037616 0 1 0 0 202.86075235 101.43037616 101.43037616 0 0 0 0-202.86075235zM380.42335603 351.74501811a77.585466 77.585466 0 1 0 24.31035136 145.46827333c4.04575804-2.11238694 6.08653863-3.186482 6.55197982-5.33467209 0.4654412-2.1481901-1.07409506-4.22477388-4.26057704-8.4137446A130.71736793 130.71736793 0 0 1 380.70978136 404.59049471c0-14.14225153 2.25559961-27.7832587 6.40876716-40.56498984 1.61114258-5.01244358 2.43461545-7.51866537 1.25311088-9.38043013-1.1457014-1.86176476-3.43710416-2.21979644-7.94830337-2.86425347zM386.15186297 549.95135854c4.94083724-3.04326932 11.67183291-6.87420834 18.51023809-10.56193469 9.02239844-4.83342774 13.56940085-7.26804319 13.13976281-10.52613152-0.39383486-3.22228515-5.01244358-4.40378971-14.28546421-6.65938933a145.89791136 145.89791136 0 0 0-116.57511641 20.90905037 250.90860436 250.90860436 0 0 1-5.01244357 3.22228515c-9.38043013 5.9075228-24.99061156 15.78919729-35.55254626 27.46103019-6.73099566 7.37545268-13.42618817 17.47194619-14.64349589 30.00305515-1.28891407 13.35458183 3.93834852 25.8498876 14.07064519 36.73405081 13.56940085 14.50028322 30.07466148 27.81906187 54.49242236 31.54259139 5.72850695 0.89507921 8.59276042 1.32471724 10.3113125-0.4654412 1.68274892-1.79015842 1.07409506-5.15565626-0.214819-11.92245509a73.07426677 73.07426677 0 0 1-0.85927605-21.33868838c2.5062218-24.09553236 16.14722896-41.60328172 26.49434464-52.1652164 16.1114258-16.3262448 38.30939022-29.32279494 50.12443581-36.23280645zM619.33789894 539.38942386c6.83840517 3.68772636 13.56940085 7.51866537 18.51023809 10.56193468 11.81504558 6.91001151 34.01301 19.90656165 50.1244358 36.23280644 10.34711568 10.56193469 23.98812285 28.06968405 26.49434464 52.16521641 0.7876697 7.44705904 0.42963802 14.57188955-0.82347288 21.33868838-1.28891407 6.76679885-1.93337108 10.16809983-0.214819 11.92245509 1.71855208 1.79015842 4.5470024 1.3605204 10.27550933 0.46544119 24.41776087-3.68772636 40.9588247-17.04230817 54.49242235-31.54259138 10.13229667-10.88416321 15.39536242-23.34366582 14.0706452-36.73405081-1.21730773-12.53110895-7.91250022-22.62760245-14.6434959-30.00305515-10.56193469-11.67183291-26.13631296-21.5535074-35.51674308-27.46103019l-5.01244358-3.22228515a145.89791136 145.89791136 0 0 0-116.61091957-20.90905036c-9.23721745 2.25559961-13.89162935 3.40130101-14.32126737 6.65938933-0.35803168 3.25808833 4.15316753 5.69270379 13.17556597 10.52613151zM612.7143128 491.87861935c-0.4654412-2.1481901 1.07409506-4.22477388 4.26057703-8.4137446A130.71736793 130.71736793 0 0 0 643.29021864 404.59049471c0-14.14225153-2.25559961-27.7832587-6.37296399-40.56498984-1.64694575-5.01244358-2.43461545-7.51866537-1.28891405-9.38043013 1.18150456-1.86176476 3.43710416-2.21979644 7.94830337-2.86425347a77.585466 77.585466 0 1 1-24.31035136 145.46827333c-4.00995487-2.1481901-6.08653863-3.22228515-6.55197982-5.37047526z" fill="#C2C1C1" p-id="3996"></path><path d="M409.17330026 571.03942475a195.84333132 195.84333132 0 0 1 205.76080898-1e-8c1.86176476 1.1457014 4.18897071 2.5062218 6.9100115 4.08156121 12.20888044 7.16063367 31.65000089 18.54604125 44.89717322 31.97222941 8.30633507 8.48535093 16.61267016 20.01397116 18.11640322 34.37104168 1.61114258 15.39536242-4.90503407 29.6092203-17.36453668 41.92551024-20.55101869 20.33619967-46.04287461 37.45011417-79.44723075 37.45011418H436.02567658c-33.36855297 0-58.86040889-17.11391451-79.41142757-37.45011418-12.45950261-12.31628994-18.97567927-26.56595097-17.36453668-41.88970707 1.50373308-14.39287372 9.81006815-25.92149394 18.11640322-34.37104169 13.24717233-13.46199133 32.65248962-24.81159572 44.86137005-31.97222941l0.1074095-0.07160634a346.5746704 346.5746704 0 0 0 6.80260199-4.04575802z" fill="#C2C1C1" p-id="3997"></path>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<bi-avatar :src="innerSrc" :size="size"></bi-avatar>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
import BiAvatar from '@aochuang/common/uni-components/avatar/avatar.vue'
|
|
6
|
+
|
|
7
|
+
export default {
|
|
8
|
+
name: 'SdkRoomAvatar',
|
|
9
|
+
components: {
|
|
10
|
+
BiAvatar
|
|
11
|
+
},
|
|
12
|
+
props: {
|
|
13
|
+
src: {
|
|
14
|
+
type: String
|
|
15
|
+
},
|
|
16
|
+
size: {
|
|
17
|
+
type: String,
|
|
18
|
+
default: 'small'
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
computed: {
|
|
22
|
+
innerSrc () {
|
|
23
|
+
return this.src || require('./default.svg')
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
</script>
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="bi-room-loader">
|
|
3
|
+
<template v-if="loading">
|
|
4
|
+
<slot name="loading">
|
|
5
|
+
数据加载中...
|
|
6
|
+
</slot>
|
|
7
|
+
</template>
|
|
8
|
+
<template v-else-if="roomData">
|
|
9
|
+
<slot :data="roomData"></slot>
|
|
10
|
+
</template>
|
|
11
|
+
<template v-else>
|
|
12
|
+
<template v-if="allowEmpty">
|
|
13
|
+
<slot></slot>
|
|
14
|
+
</template>
|
|
15
|
+
<template v-else>
|
|
16
|
+
<div>未找到群聊数据</div>
|
|
17
|
+
</template>
|
|
18
|
+
</template>
|
|
19
|
+
</view>
|
|
20
|
+
</template>
|
|
21
|
+
|
|
22
|
+
<script>
|
|
23
|
+
|
|
24
|
+
export default {
|
|
25
|
+
name: 'BiFriendProfile',
|
|
26
|
+
props: {
|
|
27
|
+
id: {
|
|
28
|
+
type: String
|
|
29
|
+
},
|
|
30
|
+
allowEmpty: {
|
|
31
|
+
type: Boolean,
|
|
32
|
+
default: false
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
data () {
|
|
36
|
+
return {
|
|
37
|
+
loading: false,
|
|
38
|
+
roomData: null
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
created () {
|
|
42
|
+
this.loading = true
|
|
43
|
+
this.$clientChat.contacts.getRoom(this.id).then(rs => {
|
|
44
|
+
this.roomData = rs.data
|
|
45
|
+
}).finally(() => {
|
|
46
|
+
this.loading =false
|
|
47
|
+
})
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
</script>
|
|
51
|
+
|
|
52
|
+
<style>
|
|
53
|
+
</style>
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<bi-portray
|
|
3
|
+
:name="roomData && (roomData.conRemark || roomData.nickname)"
|
|
4
|
+
:loading="loading"
|
|
5
|
+
>
|
|
6
|
+
<template slot="avatar">
|
|
7
|
+
<sdk-room-avatar :src="roomData && roomData.avatar"></sdk-room-avatar>
|
|
8
|
+
</template>
|
|
9
|
+
</bi-portray>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script>
|
|
13
|
+
import SdkRoomAvatar from 'client-sdk/uni-common/room-avatar'
|
|
14
|
+
import BiPortray from '@aochuang/common/uni-common/portray/portray.vue'
|
|
15
|
+
|
|
16
|
+
export default {
|
|
17
|
+
name: 'BiRoomPortray',
|
|
18
|
+
components: {
|
|
19
|
+
BiPortray,
|
|
20
|
+
SdkRoomAvatar
|
|
21
|
+
},
|
|
22
|
+
props: {
|
|
23
|
+
id: {
|
|
24
|
+
type: String,
|
|
25
|
+
required: true
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
data () {
|
|
29
|
+
return {
|
|
30
|
+
loading: false,
|
|
31
|
+
roomData: null
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
watch: {
|
|
35
|
+
id () {
|
|
36
|
+
this.loadData()
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
created () {
|
|
40
|
+
this.loadData()
|
|
41
|
+
},
|
|
42
|
+
methods: {
|
|
43
|
+
loadData () {
|
|
44
|
+
this.loading = true
|
|
45
|
+
this.$clientChat.contacts.getRoom(this.id).then(rs => {
|
|
46
|
+
this.roomData = rs.data
|
|
47
|
+
}).finally(() => {
|
|
48
|
+
this.loading = false
|
|
49
|
+
})
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
</script>
|
|
54
|
+
|
|
55
|
+
<style>
|
|
56
|
+
</style>
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view :class="['bi-chat-control-calling', 'is-' + actionType]">
|
|
3
|
+
<view class="bi-chat-control-calling__main">
|
|
4
|
+
<template v-if="duration">
|
|
5
|
+
通话时长 {{ durationText }}
|
|
6
|
+
</template>
|
|
7
|
+
<template v-else>
|
|
8
|
+
{{ actionText }}
|
|
9
|
+
</template>
|
|
10
|
+
<template v-if="actionType === 'video'">
|
|
11
|
+
<bi-icon class="bi-chat-control-calling__icon" name="vidicon-fill" color="#999"></bi-icon>
|
|
12
|
+
</template>
|
|
13
|
+
<template v-else-if="actionType === 'voice'">
|
|
14
|
+
<bi-icon class="bi-chat-control-calling__icon" name="phone-fill" color="#999"></bi-icon>
|
|
15
|
+
</template>
|
|
16
|
+
</view>
|
|
17
|
+
</view>
|
|
18
|
+
</template>
|
|
19
|
+
<script>
|
|
20
|
+
import { toJson } from '@/utils/data.js'
|
|
21
|
+
import { timeToHHmmss } from '@/utils/date'
|
|
22
|
+
import BiIcon from '@aochuang/common/uni-components/icon/icon.vue'
|
|
23
|
+
|
|
24
|
+
export default {
|
|
25
|
+
name: 'BiChatControlCalling',
|
|
26
|
+
components: {
|
|
27
|
+
BiIcon
|
|
28
|
+
},
|
|
29
|
+
props: {
|
|
30
|
+
dir: {
|
|
31
|
+
type: String
|
|
32
|
+
},
|
|
33
|
+
type: {
|
|
34
|
+
type: String,
|
|
35
|
+
default: 'default',
|
|
36
|
+
validator (value) {
|
|
37
|
+
return ['default', 'thumb'].includes(value)
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
data: {
|
|
41
|
+
type: String
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
computed: {
|
|
45
|
+
content () {
|
|
46
|
+
return toJson(this.data) || {}
|
|
47
|
+
},
|
|
48
|
+
actionType () {
|
|
49
|
+
return this.content.type
|
|
50
|
+
},
|
|
51
|
+
actionText () {
|
|
52
|
+
return this.content.content
|
|
53
|
+
},
|
|
54
|
+
duration () {
|
|
55
|
+
return this.content.duration
|
|
56
|
+
},
|
|
57
|
+
durationText () {
|
|
58
|
+
const str = timeToHHmmss(this.duration ? this.duration * 1000 : 0)
|
|
59
|
+
if (str.indexOf('00:') === 0) {
|
|
60
|
+
return str.substr(3)
|
|
61
|
+
}
|
|
62
|
+
return str
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
</script>
|
|
67
|
+
<style lang="less">
|
|
68
|
+
.bi-chat-control-calling{
|
|
69
|
+
&.is-dir-left{
|
|
70
|
+
.bi-chat-control-calling__main{
|
|
71
|
+
flex-direction: row-reverse;
|
|
72
|
+
.bi-chat-control-calling__icon {
|
|
73
|
+
margin-right: 6px;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
&.is-dir-right {
|
|
78
|
+
.bi-chat-control-calling__main{
|
|
79
|
+
flex-direction: row;
|
|
80
|
+
.bi-chat-control-calling__icon {
|
|
81
|
+
margin-left: 6px;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
.bi-chat-control-calling__main{
|
|
87
|
+
padding: 8px 12px;
|
|
88
|
+
display: flex;
|
|
89
|
+
align-items: center;
|
|
90
|
+
}
|
|
91
|
+
</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="1670299071263" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="60143" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M896 700.586667v150.869333a42.666667 42.666667 0 0 1-39.68 42.581333c-18.645333 1.28-33.877333 1.962667-45.653333 1.962667-377.045333 0-682.666667-305.621333-682.666667-682.666667 0-11.776 0.64-27.008 1.962667-45.653333A42.666667 42.666667 0 0 1 172.544 128H323.413333a21.333333 21.333333 0 0 1 21.248 19.2c0.981333 9.813333 1.877333 17.621333 2.730667 23.552A593.109333 593.109333 0 0 0 398.933333 341.461333c4.053333 8.533333 1.408 18.730667-6.272 24.192l-92.074666 65.792a556.672 556.672 0 0 0 292.010666 292.010667l65.706667-91.904a19.712 19.712 0 0 1 24.448-6.357333 593.109333 593.109333 0 0 0 170.666667 51.413333c5.930667 0.853333 13.738667 1.792 23.466666 2.730667a21.333333 21.333333 0 0 1 19.157334 21.248z" p-id="60144"></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="1670298983364" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="26050" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M725.333333 392.533333l222.421334-155.733333a21.333333 21.333333 0 0 1 33.578666 17.493333v515.413334a21.333333 21.333333 0 0 1-33.578666 17.493333L725.333333 631.466667V810.666667a42.666667 42.666667 0 0 1-42.666666 42.666666H85.333333a42.666667 42.666667 0 0 1-42.666666-42.666666V213.333333a42.666667 42.666667 0 0 1 42.666666-42.666666h597.333334a42.666667 42.666667 0 0 1 42.666666 42.666666v179.2zM213.333333 341.333333v85.333334h85.333334V341.333333H213.333333z" p-id="26051"></path></svg>
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="bi-chat-control-channel-video" :class="['bi-chat-control-channel-video--' + type]">
|
|
3
|
+
<view class="bi-chat-control-channel-video__cover">
|
|
4
|
+
<image class="bi-chat-control-channel-video__cover-image" :src="content.thumbOssUrl" mode="widthFix"></image>
|
|
5
|
+
</view>
|
|
6
|
+
<view class="bi-chat-control-channel-video__main">
|
|
7
|
+
<view class="bi-chat-control-channel-video__row">
|
|
8
|
+
<bi-avatar :src="content.avatar" :name="content.nickname"></bi-avatar>
|
|
9
|
+
</view>
|
|
10
|
+
<view class="bi-chat-control-channel-video__row">
|
|
11
|
+
<view class="bi-chat-control-channel-video__description">{{ content.desc }}</view>
|
|
12
|
+
</view>
|
|
13
|
+
</view>
|
|
14
|
+
<view class="bi-chat-control-channel-video__other">视频号</view>
|
|
15
|
+
</view>
|
|
16
|
+
</template>
|
|
17
|
+
<script>
|
|
18
|
+
import BiAvatar from '@aochuang/common/uni-components/avatar/avatar.vue'
|
|
19
|
+
import { toJson } from '../../../utils/data.js'
|
|
20
|
+
|
|
21
|
+
export default {
|
|
22
|
+
name: 'BiChatControlChannelVideo',
|
|
23
|
+
components: {
|
|
24
|
+
BiAvatar
|
|
25
|
+
},
|
|
26
|
+
props: {
|
|
27
|
+
data: {
|
|
28
|
+
type: String
|
|
29
|
+
},
|
|
30
|
+
type: {
|
|
31
|
+
type: String,
|
|
32
|
+
default: 'default',
|
|
33
|
+
validator (value) {
|
|
34
|
+
return ['default', 'quote', 'thumb'].includes(value)
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
computed: {
|
|
39
|
+
content () {
|
|
40
|
+
return toJson(this.data) || {}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
</script>
|
|
45
|
+
<style lang="less">
|
|
46
|
+
.bi-chat-control-channel-video--thumb {
|
|
47
|
+
border: 1px solid #eee;
|
|
48
|
+
border-radius: 3px;
|
|
49
|
+
}
|
|
50
|
+
.bi-chat-control-channel-video{
|
|
51
|
+
width: 180px;
|
|
52
|
+
max-width: 100%;
|
|
53
|
+
text-align: left;
|
|
54
|
+
color: #172b4d;
|
|
55
|
+
background-color: #fff;
|
|
56
|
+
border-radius: 4px;
|
|
57
|
+
}
|
|
58
|
+
.bi-chat-control-channel-video__cover{
|
|
59
|
+
background-color: #eee;
|
|
60
|
+
}
|
|
61
|
+
.bi-chat-control-channel-video__cover-image{
|
|
62
|
+
max-width: 100%;
|
|
63
|
+
border-top-left-radius: 4px;
|
|
64
|
+
border-top-right-radius: 4px;
|
|
65
|
+
vertical-align: top;
|
|
66
|
+
}
|
|
67
|
+
.bi-chat-control-channel-video__row{
|
|
68
|
+
line-height: 1.5em;
|
|
69
|
+
padding: 3px 12px;
|
|
70
|
+
}
|
|
71
|
+
.bi-chat-control-channel-video__main{
|
|
72
|
+
padding: 6px 0;
|
|
73
|
+
}
|
|
74
|
+
.bi-chat-control-channel-video__other {
|
|
75
|
+
font-size: 12px;
|
|
76
|
+
color: #999;
|
|
77
|
+
border-top: 1px solid #eee;
|
|
78
|
+
padding: 0 12px;
|
|
79
|
+
height: 24px;
|
|
80
|
+
line-height: 24px;
|
|
81
|
+
}
|
|
82
|
+
.bi-chat-control-channel-video__description{
|
|
83
|
+
display: -webkit-box;
|
|
84
|
+
overflow: hidden;
|
|
85
|
+
text-overflow: ellipsis;
|
|
86
|
+
-webkit-line-clamp: 3;
|
|
87
|
+
-webkit-box-orient: vertical;
|
|
88
|
+
}
|
|
89
|
+
</style>
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="bi-chat-control-channel-video-card" :class="['bi-chat-control-channel-video-card--' + type]">
|
|
3
|
+
<view class="bi-chat-control-channel-video-card__main">
|
|
4
|
+
<view class="bi-chat-control-channel-video-card__avatar">
|
|
5
|
+
<bi-avatar :src="content.avatar"></bi-avatar>
|
|
6
|
+
</view>
|
|
7
|
+
<view class="bi-chat-control-channel-video-card__fields">
|
|
8
|
+
<view class="bi-chat-control-channel-video-card__title">{{content.nickname}}</view>
|
|
9
|
+
<view class="bi-chat-control-channel-video-card__other">
|
|
10
|
+
<view class="bi-chat-control-channel-video-card__name">
|
|
11
|
+
{{content.openimdesc}}
|
|
12
|
+
</view>
|
|
13
|
+
</view>
|
|
14
|
+
</view>
|
|
15
|
+
</view>
|
|
16
|
+
<view class="bi-chat-control-channel-video-card__foot">
|
|
17
|
+
<span class="bi-chat-control-channel-video-card__category">视频号名片</span>
|
|
18
|
+
</view>
|
|
19
|
+
</view>
|
|
20
|
+
</template>
|
|
21
|
+
<script>
|
|
22
|
+
import BiAvatar from '@aochuang/common/uni-components/avatar/avatar.vue'
|
|
23
|
+
import { toJson } from '../../../utils/data.js'
|
|
24
|
+
|
|
25
|
+
export default {
|
|
26
|
+
name: 'BiChatControlChannelVideoCard',
|
|
27
|
+
components: {
|
|
28
|
+
BiAvatar
|
|
29
|
+
},
|
|
30
|
+
props: {
|
|
31
|
+
data: {
|
|
32
|
+
type: String
|
|
33
|
+
},
|
|
34
|
+
type: {
|
|
35
|
+
type: String,
|
|
36
|
+
default: 'default',
|
|
37
|
+
validator (value) {
|
|
38
|
+
return ['default', 'quote', 'thumb'].includes(value)
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
computed: {
|
|
43
|
+
content () {
|
|
44
|
+
return toJson(this.data) || {}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
</script>
|
|
49
|
+
<style type="less">
|
|
50
|
+
.bi-chat-control-channel-video-card--thumb {
|
|
51
|
+
&.bi-chat-control-channel-video-card{
|
|
52
|
+
width: 100%;
|
|
53
|
+
border: 1px solid #eee;
|
|
54
|
+
border-radius: 3px;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
.bi-chat-control-channel-video-card__main{
|
|
58
|
+
width: 180px;
|
|
59
|
+
max-width: 100%;
|
|
60
|
+
display: flex;
|
|
61
|
+
flex-direction: row;
|
|
62
|
+
padding: 10px;
|
|
63
|
+
}
|
|
64
|
+
.bi-chat-control-channel-video-card__fields{
|
|
65
|
+
flex: 1;
|
|
66
|
+
min-width: 0;
|
|
67
|
+
padding-left: 10px;
|
|
68
|
+
}
|
|
69
|
+
.bi-chat-control-channel-video-card__title{
|
|
70
|
+
font-size: 14px;
|
|
71
|
+
overflow: hidden;
|
|
72
|
+
text-overflow: ellipsis;
|
|
73
|
+
white-space: nowrap;
|
|
74
|
+
margin-bottom: 4px;
|
|
75
|
+
}
|
|
76
|
+
.bi-chat-control-channel-video-card__foot{
|
|
77
|
+
border-top: 1px solid #eee;
|
|
78
|
+
height: 24px;
|
|
79
|
+
line-height: 24px;
|
|
80
|
+
padding: 0 10px;
|
|
81
|
+
box-sizing: content-box;
|
|
82
|
+
}
|
|
83
|
+
.bi-chat-control-channel-video-card__category{
|
|
84
|
+
color: #999;
|
|
85
|
+
font-size: 12px;
|
|
86
|
+
}
|
|
87
|
+
.bi-chat-control-channel-video-card__other{
|
|
88
|
+
color: #888;
|
|
89
|
+
font-size: 12px;
|
|
90
|
+
overflow: hidden;
|
|
91
|
+
text-overflow: ellipsis;
|
|
92
|
+
white-space: nowrap;
|
|
93
|
+
display: flex;
|
|
94
|
+
flex-direction: row;
|
|
95
|
+
align-items: center;
|
|
96
|
+
}
|
|
97
|
+
.bi-chat-control-channel-video-card__icon{
|
|
98
|
+
width: 14px;
|
|
99
|
+
height: 14px;
|
|
100
|
+
background-position: 50% 50%;
|
|
101
|
+
background-repeat: no-repeat;
|
|
102
|
+
background-size: cover;
|
|
103
|
+
margin-right: 4px;
|
|
104
|
+
}
|
|
105
|
+
</style>
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="bi-chat-control-channel-video-live" :class="['bi-chat-control-channel-video-live--' + type]">
|
|
3
|
+
<view class="bi-chat-control-channel-video-live__cover">
|
|
4
|
+
<image class="bi-chat-control-channel-video-live__cover-image" :src="content.coverUrl" mode="widthFix"></image>
|
|
5
|
+
</view>
|
|
6
|
+
<view class="bi-chat-control-channel-video-live__main">
|
|
7
|
+
<view class="bi-chat-control-channel-video-live__row">
|
|
8
|
+
<bi-avatar :src="content.headUrl" :name="content.nickname"></bi-avatar>
|
|
9
|
+
</view>
|
|
10
|
+
<view class="bi-chat-control-channel-video-live__row">
|
|
11
|
+
<view class="bi-chat-control-channel-video-live__description">{{ content.desc }}</view>
|
|
12
|
+
</view>
|
|
13
|
+
</view>
|
|
14
|
+
<view class="bi-chat-control-channel-video-live__other">视频号直播</view>
|
|
15
|
+
</view>
|
|
16
|
+
</template>
|
|
17
|
+
<script>
|
|
18
|
+
import BiAvatar from '@aochuang/common/uni-components/avatar/avatar.vue'
|
|
19
|
+
import { toJson } from '../../../utils/data.js'
|
|
20
|
+
|
|
21
|
+
export default {
|
|
22
|
+
name: 'BiChatControlChannelVideoLive',
|
|
23
|
+
components: {
|
|
24
|
+
BiAvatar
|
|
25
|
+
},
|
|
26
|
+
props: {
|
|
27
|
+
data: {
|
|
28
|
+
type: String
|
|
29
|
+
},
|
|
30
|
+
type: {
|
|
31
|
+
type: String,
|
|
32
|
+
default: 'default',
|
|
33
|
+
validator (value) {
|
|
34
|
+
return ['default', 'quote', 'thumb'].includes(value)
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
computed: {
|
|
39
|
+
content () {
|
|
40
|
+
return toJson(this.data) || {}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
</script>
|
|
45
|
+
<style lang="less">
|
|
46
|
+
.bi-chat-control-channel-video-live--thumb {
|
|
47
|
+
&.bi-chat-control-channel-video-live{
|
|
48
|
+
width: 100%;
|
|
49
|
+
border: 1px solid #eee;
|
|
50
|
+
border-radius: 3px;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
.bi-chat-control-channel-video-live{
|
|
54
|
+
width: 180px;
|
|
55
|
+
max-width: 100%;
|
|
56
|
+
text-align: left;
|
|
57
|
+
color: #172b4d;
|
|
58
|
+
background-color: #fff;
|
|
59
|
+
border-radius: 4px;
|
|
60
|
+
}
|
|
61
|
+
.bi-chat-control-channel-video-live__cover{
|
|
62
|
+
background-color: #eee;
|
|
63
|
+
}
|
|
64
|
+
.bi-chat-control-channel-video-live__cover-image{
|
|
65
|
+
max-width: 100%;
|
|
66
|
+
border-top-left-radius: 4px;
|
|
67
|
+
border-top-right-radius: 4px;
|
|
68
|
+
vertical-align: top;
|
|
69
|
+
}
|
|
70
|
+
.bi-chat-control-channel-video-live__row{
|
|
71
|
+
line-height: 1.5em;
|
|
72
|
+
padding: 3px 12px;
|
|
73
|
+
}
|
|
74
|
+
.bi-chat-control-channel-video-live__main{
|
|
75
|
+
padding: 6px 0;
|
|
76
|
+
}
|
|
77
|
+
.bi-chat-control-channel-video-live__other {
|
|
78
|
+
font-size: 12px;
|
|
79
|
+
color: #999;
|
|
80
|
+
border-top: 1px solid #eee;
|
|
81
|
+
padding: 0 12px;
|
|
82
|
+
height: 24px;
|
|
83
|
+
line-height: 24px;
|
|
84
|
+
}
|
|
85
|
+
.bi-chat-control-channel-video-live__description{
|
|
86
|
+
display: -webkit-box;
|
|
87
|
+
overflow: hidden;
|
|
88
|
+
text-overflow: ellipsis;
|
|
89
|
+
-webkit-line-clamp: 3;
|
|
90
|
+
-webkit-box-orient: vertical;
|
|
91
|
+
}
|
|
92
|
+
</style>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
name: 'SdkWecahtChatControlConfigItem',
|
|
4
|
+
functional: true,
|
|
5
|
+
inject: ['SdkWechatChatControlConfig'],
|
|
6
|
+
props: {
|
|
7
|
+
/**
|
|
8
|
+
* 消息类型
|
|
9
|
+
*/
|
|
10
|
+
msgType: {
|
|
11
|
+
type: [Number, String]
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
render (h, c) {
|
|
15
|
+
return c.scopedSlots.default({
|
|
16
|
+
configData: c.injections.SdkWechatChatControlConfig.getControlConfig(c.props.msgType)
|
|
17
|
+
})
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
</script>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="sdk-wechat-chat-control-config-msg">
|
|
3
|
+
<slot :config-data="configData"></slot>
|
|
4
|
+
</view>
|
|
5
|
+
</template>
|
|
6
|
+
<script>
|
|
7
|
+
export default {
|
|
8
|
+
name: 'SdkWecahtChatControlConfigMsgApp',
|
|
9
|
+
inject: ['SdkWechatChatControlConfig'],
|
|
10
|
+
props: {
|
|
11
|
+
/**
|
|
12
|
+
* 标准的客服端消息数据
|
|
13
|
+
*/
|
|
14
|
+
msgData: {
|
|
15
|
+
type: Object,
|
|
16
|
+
required: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
computed: {
|
|
20
|
+
configData () {
|
|
21
|
+
return this.SdkWechatChatControlConfig.getMessageConfig(this.msgData)
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
</script>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
name: 'SdkWecahtChatControlConfigMsgH5',
|
|
4
|
+
functional: true,
|
|
5
|
+
inject: ['SdkWechatChatControlConfig'],
|
|
6
|
+
props: {
|
|
7
|
+
/**
|
|
8
|
+
* 标准的客服端消息数据
|
|
9
|
+
*/
|
|
10
|
+
msgData: {
|
|
11
|
+
type: Object,
|
|
12
|
+
required: true
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
render (h, c) {
|
|
16
|
+
return c.scopedSlots.default({
|
|
17
|
+
configData: c.injections.SdkWechatChatControlConfig.getMessageConfig(c.props.msgData)
|
|
18
|
+
})
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
</script>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="sdk-wechat-chat-control-config">
|
|
3
|
+
<slot></slot>
|
|
4
|
+
</view>
|
|
5
|
+
</template>
|
|
6
|
+
<script>
|
|
7
|
+
export default {
|
|
8
|
+
name: 'SdkWechatChatControlConfig',
|
|
9
|
+
provide () {
|
|
10
|
+
return {
|
|
11
|
+
SdkWechatChatControlConfig: this
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
inject: {
|
|
15
|
+
// 可以继承上级的
|
|
16
|
+
SdkWechatChatControlConfig: {
|
|
17
|
+
default: null
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
props: {
|
|
21
|
+
/**
|
|
22
|
+
* 这个是组件级别的配置,wechatChatPanel是消息级别的配置,后面是消息级别配置覆盖组件级别的配置
|
|
23
|
+
* {
|
|
24
|
+
* 1: {
|
|
25
|
+
* formatter () {
|
|
26
|
+
* xxx
|
|
27
|
+
* }
|
|
28
|
+
* }
|
|
29
|
+
* }
|
|
30
|
+
*/
|
|
31
|
+
controlConfig: {
|
|
32
|
+
type: Object
|
|
33
|
+
},
|
|
34
|
+
/**
|
|
35
|
+
* 消息级别配置,消息级别配置会覆盖控件级别配置
|
|
36
|
+
* 主要是项目里面有几种实用场景,第一种聊天记录,第二种风控,第三种消息预览
|
|
37
|
+
*/
|
|
38
|
+
messageConfig: {
|
|
39
|
+
type: Function
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
methods: {
|
|
43
|
+
getControlConfig (msgType) {
|
|
44
|
+
if (!this.controlConfig) {
|
|
45
|
+
return
|
|
46
|
+
}
|
|
47
|
+
return this.controlConfig[msgType]
|
|
48
|
+
},
|
|
49
|
+
getMessageConfig (msgData) {
|
|
50
|
+
if (!this.messageConfig) {
|
|
51
|
+
return
|
|
52
|
+
}
|
|
53
|
+
return this.messageConfig({
|
|
54
|
+
item: msgData
|
|
55
|
+
})
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
</script>
|