You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

224 lines
4.4 KiB

<template>
<div class="chat-item" :class="active ? 'active' : ''" @contextmenu.prevent="showRightMenu($event)">
<div class="chat-left">
<head-image :url="chat.headImage" :name="chat.showName" :size="42"
:id="chat.type == 'PRIVATE' ? chat.targetId : 0" :isShowUserInfo="false"></head-image>
<div v-show="chat.unreadCount > 0" class="unread-text">{{ chat.unreadCount }}</div>
</div>
<div class="chat-right">
<div class="chat-name">
<div class="chat-name-text">
<div>{{ chat.showName }}</div>
<el-tag v-if="chat.type == 'GROUP'" size="mini" effect="dark">群</el-tag>
</div>
<div class="chat-time-text">{{ showTime }}</div>
</div>
<div class="chat-content">
<div class="chat-at-text">{{ atText }}</div>
<div class="chat-send-name" v-show="isShowSendName">{{ chat.sendNickName + ':&nbsp;' }}</div>
<div class="chat-content-text" v-html="$emo.transform(chat.lastContent,'emoji-small')"></div>
</div>
</div>
<right-menu v-show="rightMenu.show" :pos="rightMenu.pos" :items="rightMenu.items"
@close="rightMenu.show = false" @select="onSelectMenu"></right-menu>
</div>
</template>
<script>
import HeadImage from '../common/HeadImage.vue';
import RightMenu from '../common/RightMenu.vue';
export default {
name: "chatItem",
components: {
HeadImage,
RightMenu
},
data() {
return {
rightMenu: {
show: false,
pos: {
x: 0,
y: 0
},
items: [{
key: 'TOP',
name: '置顶',
icon: 'el-icon-top'
}, {
key: 'DELETE',
name: '删除',
icon: 'el-icon-delete'
}]
}
}
},
props: {
chat: {
type: Object
},
active: {
type: Boolean
},
index: {
type: Number
}
},
methods: {
showRightMenu(e) {
this.rightMenu.pos = {
x: e.x,
y: e.y
};
this.rightMenu.show = "true";
},
onSelectMenu(item) {
this.$emit(item.key.toLowerCase(), this.msgInfo);
}
},
computed: {
isShowSendName() {
if (!this.chat.sendNickName) {
return false;
}
let size = this.chat.messages.length;
if (size == 0) {
return false;
}
// 只有群聊的普通消息需要显示名称
let lastMsg = this.chat.messages[size - 1];
return this.$msgType.isNormal(lastMsg.type)
},
showTime() {
return this.$date.toTimeText(this.chat.lastSendTime, true)
},
atText() {
if (this.chat.atMe) {
return "[有人@我]"
} else if (this.chat.atAll) {
return "[@全体成员]"
}
return "";
}
}
}
</script>
<style lang="scss">
.chat-item {
height: 50px;
display: flex;
position: relative;
padding: 5px 10px;
align-items: center;
background-color: var(--im-background);
white-space: nowrap;
cursor: pointer;
&:hover {
background-color: var(--im-background-active);
}
&.active {
background-color: var(--im-background-active-dark);
}
.chat-left {
position: relative;
display: flex;
justify-content: center;
align-items: center;
.unread-text {
position: absolute;
background-color: #f56c6c;
right: -4px;
top: -8px;
color: white;
border-radius: 30px;
padding: 1px 5px;
font-size: 10px;
text-align: center;
white-space: nowrap;
border: 1px solid #f1e5e5;
}
}
.chat-right {
flex: 1;
display: flex;
flex-direction: column;
padding-left: 10px;
text-align: left;
overflow: hidden;
.chat-name {
display: flex;
line-height: 20px;
height: 20px;
.chat-name-text {
flex: 1;
display: flex;
align-items: center;
font-size: var(--im-font-size);
white-space: nowrap;
overflow: hidden;
.el-tag {
min-width: 22px;
text-align: center;
background-color: #2830d3;
border-radius: 10px;
border: 0;
height: 16px;
line-height: 16px;
font-size: 10px;
margin-left: 2px;
opacity: 0.8;
}
}
.chat-time-text {
font-size: var(--im-font-size-smaller);
text-align: right;
color: var(--im-text-color-light);
white-space: nowrap;
overflow: hidden;
padding-left: 10px;
}
}
.chat-content {
display: flex;
line-height: 22px;
.chat-at-text {
color: #c70b0b;
font-size: var(--im-font-size-smaller);
}
.chat-send-name {
font-size: var(--im-font-size-small);
color: var(--im-text-color-light);
}
.chat-content-text {
flex: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: var(--im-font-size-small);
color: var(--im-text-color-light);
}
}
}
}
</style>