| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- <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="45"
- :id="chat.type=='PRIVATE'?chat.targetId:0"></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-tag" v-if="chat.type=='GROUP'">
- <el-tag size="mini" >群</el-tag>
- </div>
- <div class="chat-name-text">{{chat.showName}}</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+': '}}</div>
- <div class="chat-content-text" v-html="$emo.transform(chat.lastContent)"></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;
- margin-bottom: 1px;
- position: relative;
- padding: 5px 10px;
- align-items: center;
- background-color: white;
- white-space: nowrap;
- color: black;
- cursor: pointer;
- &:hover {
- background-color: #F8FAFF;
- }
- &.active {
- background-color: #F4F9FF;
- }
- .chat-left {
- position: relative;
- display: flex;
- width: 45px;
- height: 45x;
- .unread-text {
- position: absolute;
- background-color: #f56c6c;
- right: -5px;
- top: -5px;
- 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: 25px;
- height: 25px;
- .chat-tag {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 1px;
- }
- .chat-name-text {
- flex: 1;
- font-size: 15px;
- font-weight: 600;
- white-space: nowrap;
- overflow: hidden;
- }
- .chat-time-text {
- font-size: 13px;
- text-align: right;
- color: #888888;
- white-space: nowrap;
- overflow: hidden;
- padding-left: 10px;
- }
- }
- .chat-content {
- display: flex;
- line-height: 22px;
- .chat-at-text {
- color: #c70b0b;
- font-size: 12px;
- }
- .chat-send-name {
- font-size: 13px;
- }
- .chat-content-text {
- flex: 1;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- font-size: 13px;
- img {
- width: 20px !important;
- height: 20px !important;
- vertical-align: bottom;
- }
- }
- }
- }
- }
- </style>
|