| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502 |
- <template>
- <view class="chat-message-item">
- <view class="message-tip" v-if="msgInfo.type == $enums.MESSAGE_TYPE.TIP_TEXT">
- {{ msgInfo.content }}
- </view>
- <view class="message-tip" v-else-if="msgInfo.type == $enums.MESSAGE_TYPE.TIP_TIME">
- {{ $date.toTimeText(msgInfo.sendTime) }}
- </view>
- <view class="message-normal" v-else-if="isNormal" :class="{ 'message-mine': msgInfo.selfSend }">
- <head-image class="avatar" @longpress.prevent="$emit('longPressHead')" :id="msgInfo.sendId" :url="headImage"
- :name="showName" size="small"></head-image>
- <view class="content">
- <view v-if="msgInfo.groupId && !msgInfo.selfSend" class="top">
- <text>{{ showName }}</text>
- </view>
- <view class="bottom">
- <view v-if="msgInfo.type == $enums.MESSAGE_TYPE.TEXT">
- <long-press-menu :items="menuItems" @select="onSelectMenu">
- <!-- rich-text支持显示表情,但是不支持点击a标签 -->
- <rich-text v-if="$emo.containEmoji(msgInfo.content)" class="message-text"
- :nodes="nodesText"></rich-text>
- <!-- up-parse支持点击a标签,但安卓打包后表情无法显示,原因未知 -->
- <up-parse v-else class="message-text" :showImgMenu="false" :content="nodesText"></up-parse>
- </long-press-menu>
- </view>
- <view class="message-image" v-if="msgInfo.type == $enums.MESSAGE_TYPE.IMAGE">
- <long-press-menu :items="menuItems" @select="onSelectMenu">
- <view class="img-load-box">
- <image class="send-image" mode="heightFix" :src="JSON.parse(msgInfo.content).thumbUrl"
- lazy-load="true" @click.stop="onShowFullImage()">
- </image>
- <loading v-if="loading"></loading>
- </view>
- </long-press-menu>
- <text title="发送失败" v-if="loadFail" @click="onSendFail"
- class="send-fail iconfont icon-warning-circle-fill"></text>
- </view>
- <view class="message-file" v-if="msgInfo.type == $enums.MESSAGE_TYPE.FILE">
- <long-press-menu :items="menuItems" @select="onSelectMenu">
- <view class="file-box">
- <view class="file-info">
- <uni-link class="file-name" :text="data.name" showUnderLine="true"
- color="#007BFF" :href="data.url"></uni-link>
- <view class="file-size">{{ fileSize }}</view>
- </view>
- <view class="file-icon iconfont icon-file"></view>
- <loading v-if="loading"></loading>
- </view>
- </long-press-menu>
- <text title="发送失败" v-if="loadFail" @click="onSendFail"
- class="send-fail iconfont icon-warning-circle-fill"></text>
- </view>
- <long-press-menu v-if="msgInfo.type == $enums.MESSAGE_TYPE.AUDIO" :items="menuItems"
- @select="onSelectMenu">
- <view class="message-audio message-text" @click="onPlayAudio()">
- <text class="iconfont icon-voice-play"></text>
- <text class="chat-audio-text">{{ JSON.parse(msgInfo.content).duration + '"' }}</text>
- <text v-if="audioPlayState == 'PAUSE'" class="iconfont icon-play"></text>
- <text v-if="audioPlayState == 'PLAYING'" class="iconfont icon-pause"></text>
- </view>
- </long-press-menu>
- <long-press-menu v-if="isAction" :items="menuItems" @select="onSelectMenu">
- <view class="chat-realtime message-text" @click="$emit('call')">
- <text v-if="msgInfo.type == $enums.MESSAGE_TYPE.ACT_RT_VOICE"
- class="iconfont icon-chat-voice"></text>
- <text v-if="msgInfo.type == $enums.MESSAGE_TYPE.ACT_RT_VIDEO"
- class="iconfont icon-chat-video"></text>
- <text>{{ msgInfo.content }}</text>
- </view>
- </long-press-menu>
- <view class="message-status" v-if="!isAction">
- <text class="chat-readed" v-if="msgInfo.selfSend && !msgInfo.groupId
- && msgInfo.status == $enums.MESSAGE_STATUS.READED">已读</text>
- <text class="chat-unread" v-if="msgInfo.selfSend && !msgInfo.groupId
- && msgInfo.status != $enums.MESSAGE_STATUS.READED">未读</text>
- </view>
- <view class="chat-receipt" v-if="msgInfo.receipt" @click="onShowReadedBox">
- <text v-if="msgInfo.receiptOk" class="tool-icon iconfont icon-ok"></text>
- <text v-else>{{ msgInfo.readedCount }}人已读</text>
- </view>
- </view>
- </view>
- </view>
- <chat-group-readed ref="chatGroupReaded" :groupMembers="groupMembers" :msgInfo="msgInfo"></chat-group-readed>
- </view>
- </template>
- <script>
- export default {
- name: "chat-message-item",
- props: {
- headImage: {
- type: String,
- required: true
- },
- showName: {
- type: String,
- required: true
- },
- msgInfo: {
- type: Object,
- required: true
- },
- groupMembers: {
- type: Array
- }
- },
- data() {
- return {
- audioPlayState: 'STOP',
- innerAudioContext: null,
- menu: {
- show: false,
- style: ""
- }
- }
- },
- methods: {
- onSendFail() {
- uni.showToast({
- title: "该文件已发送失败,目前不支持自动重新发送,建议手动重新发送",
- icon: "none"
- })
- },
- onPlayAudio() {
- // 初始化音频播放器
- if (!this.innerAudioContext) {
- this.innerAudioContext = uni.createInnerAudioContext();
- let url = JSON.parse(this.msgInfo.content).url;
- this.innerAudioContext.src = url;
- this.innerAudioContext.onEnded((e) => {
- console.log('停止')
- this.audioPlayState = "STOP"
- this.emit();
- })
- this.innerAudioContext.onError((e) => {
- this.audioPlayState = "STOP"
- console.log("播放音频出错");
- console.log(e)
- this.emit();
- });
- }
- if (this.audioPlayState == 'STOP') {
- this.innerAudioContext.play();
- this.audioPlayState = "PLAYING";
- } else if (this.audioPlayState == 'PLAYING') {
- this.innerAudioContext.pause();
- this.audioPlayState = "PAUSE"
- } else if (this.audioPlayState == 'PAUSE') {
- this.innerAudioContext.play();
- this.audioPlayState = "PLAYING"
- }
- this.emit();
- },
- onSelectMenu(item) {
- this.$emit(item.key.toLowerCase(), this.msgInfo);
- this.menu.show = false;
- },
- onShowFullImage() {
- let imageUrl = JSON.parse(this.msgInfo.content).originUrl;
- uni.previewImage({
- urls: [imageUrl]
- })
- },
- onShowReadedBox() {
- this.$refs.chatGroupReaded.open();
- },
- emit() {
- this.$emit("audioStateChange", this.audioPlayState, this.msgInfo);
- },
- stopPlayAudio() {
- if (this.innerAudioContext) {
- this.innerAudioContext.stop();
- this.innerAudioContext = null;
- this.audioPlayState = "STOP"
- }
- }
- },
- computed: {
- loading() {
- return this.msgInfo.loadStatus && this.msgInfo.loadStatus === "loading";
- },
- loadFail() {
- return this.msgInfo.loadStatus && this.msgInfo.loadStatus === "fail";
- },
- data() {
- return JSON.parse(this.msgInfo.content)
- },
- fileSize() {
- let size = this.data.size;
- if (size > 1024 * 1024) {
- return Math.round(size / 1024 / 1024) + "M";
- }
- if (size > 1024) {
- return Math.round(size / 1024) + "KB";
- }
- return size + "B";
- },
- menuItems() {
- let items = [];
- if (this.msgInfo.type == this.$enums.MESSAGE_TYPE.TEXT) {
- items.push({
- key: 'COPY',
- name: '复制',
- icon: 'bars'
- });
- }
- if (this.msgInfo.selfSend && this.msgInfo.id > 0) {
- items.push({
- key: 'RECALL',
- name: '撤回',
- icon: 'refreshempty'
- });
- }
- items.push({
- key: 'DELETE',
- name: '删除',
- icon: 'trash',
- color: '#e64e4e'
- });
- if (this.msgInfo.type == this.$enums.MESSAGE_TYPE.FILE) {
- items.push({
- key: 'DOWNLOAD',
- name: '下载并打开',
- icon: 'download'
- });
- }
- return items;
- },
- isAction() {
- return this.$msgType.isAction(this.msgInfo.type);
- },
- isNormal() {
- const type = this.msgInfo.type;
- return this.$msgType.isNormal(type) || this.$msgType.isAction(type)
- },
- nodesText() {
- let color = this.msgInfo.selfSend ? 'white' : '';
- let text = this.$url.replaceURLWithHTMLLinks(this.msgInfo.content, color)
- return this.$emo.transform(text, 'emoji-normal')
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .chat-message-item {
- padding: 2rpx 20rpx;
- .message-tip {
- line-height: 60rpx;
- text-align: center;
- color: $im-text-color-lighter;
- font-size: $im-font-size-smaller-extra;
- padding: 10rpx;
- }
- .message-normal {
- position: relative;
- margin-bottom: 22rpx;
- padding-left: 110rpx;
- min-height: 80rpx;
- .avatar {
- position: absolute;
- top: 0;
- left: 0;
- }
- .content {
- text-align: left;
- .top {
- display: flex;
- flex-wrap: nowrap;
- color: $im-text-color-lighter;
- font-size: $im-font-size-smaller;
- line-height: $im-font-size-smaller;
- height: $im-font-size-smaller;
- }
- .bottom {
- display: inline-block;
- padding-right: 80rpx;
- margin-top: 5rpx;
- .message-text {
- position: relative;
- line-height: 1.6;
- margin-top: 10rpx;
- padding: 16rpx 24rpx;
- background-color: $im-bg;
- border-radius: 20rpx;
- color: $im-text-color;
- font-size: $im-font-size;
- text-align: left;
- display: block;
- word-break: break-all;
- white-space: pre-line;
- &:after {
- content: "";
- position: absolute;
- left: -20rpx;
- top: 26rpx;
- width: 6rpx;
- height: 6rpx;
- border-style: solid dashed dashed;
- border-color: $im-bg transparent transparent;
- overflow: hidden;
- border-width: 18rpx;
- }
- }
- .message-image {
- display: flex;
- flex-wrap: nowrap;
- flex-direction: row;
- align-items: center;
- .img-load-box {
- position: relative;
- .send-image {
- min-width: 200rpx;
- max-width: 420rpx;
- height: 350rpx;
- cursor: pointer;
- border-radius: 4px;
- }
- }
- .send-fail {
- color: $im-color-danger;
- font-size: $im-font-size;
- cursor: pointer;
- margin: 0 20px;
- }
- }
- .message-file {
- display: flex;
- flex-wrap: nowrap;
- flex-direction: row;
- align-items: center;
- cursor: pointer;
- .file-box {
- position: relative;
- display: flex;
- flex-wrap: nowrap;
- align-items: center;
- min-height: 60px;
- border-radius: 4px;
- padding: 10px 15px;
- box-shadow: $im-box-shadow-dark;
- .file-info {
- flex: 1;
- height: 100%;
- text-align: left;
- font-size: 14px;
- width: 300rpx;
- .file-name {
- font-weight: 600;
- margin-bottom: 15px;
- word-break: break-all;
- }
- }
- .file-icon {
- font-size: 80rpx;
- color: #d42e07;
- }
- }
- .send-fail {
- color: #e60c0c;
- font-size: 50rpx;
- cursor: pointer;
- margin: 0 20rpx;
- }
- }
- .message-audio {
- display: flex;
- align-items: center;
- .chat-audio-text {
- padding-right: 8px;
- }
- .icon-voice-play {
- font-size: 18px;
- padding-right: 8px;
- }
- }
- .chat-realtime {
- display: flex;
- align-items: center;
- .iconfont {
- font-size: 20px;
- padding-right: 8px;
- }
- }
- .message-status {
- line-height: $im-font-size-smaller-extra;
- font-size: $im-font-size-smaller-extra;
- padding-top: 2rpx;
- .chat-readed {
- display: block;
- padding-top: 2rpx;
- color: $im-text-color-lighter;
- }
- .chat-unread {
- color: $im-color-danger;
- }
- }
- .chat-receipt {
- font-size: $im-font-size-smaller;
- color: $im-text-color-lighter;
- font-weight: 600;
- .icon-ok {
- font-size: 20px;
- color: $im-color-success;
- }
- }
- }
- }
- &.message-mine {
- text-align: right;
- padding-left: 0;
- padding-right: 110rpx;
- .avatar {
- left: auto;
- right: 0;
- }
- .content {
- text-align: right;
- .bottom {
- padding-left: 80rpx;
- padding-right: 0;
- .message-text {
- margin-left: 10px;
- background-color: $im-color-primary-light-2;
- color: #fff;
- &:after {
- left: auto;
- right: -9px;
- border-top-color: $im-color-primary-light-2;
- }
- }
- .message-image {
- flex-direction: row-reverse;
- }
- .message-file {
- flex-direction: row-reverse;
- }
- .message-audio {
- flex-direction: row-reverse;
- .chat-audio-text {
- padding-right: 0;
- padding-left: 8px;
- }
- .icon-voice-play {
- transform: rotateY(180deg);
- }
- }
- .chat-realtime {
- display: flex;
- flex-direction: row-reverse;
- .iconfont {
- transform: rotateY(180deg);
- }
- }
- }
- }
- }
- }
- }
- </style>
|