| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494 |
- <template>
- <el-container class="chat-box">
- <el-header height="60px">
- <span>{{title}}</span>
- <span title="群聊信息" v-show="this.chat.type=='GROUP'" class="btn-side el-icon-more"
- @click="showSide=!showSide"></span>
- </el-header>
- <el-main style="padding: 0;">
- <el-container>
- <el-container class="content-box">
- <el-main class="im-chat-main" id="chatScrollBox">
- <div class="im-chat-box">
- <ul>
- <li v-for="(msgInfo,idx) in chat.messages" :key="idx">
- <message-item :mine="msgInfo.sendId == mine.id" :headImage="headImage(msgInfo)"
- :showName="showName(msgInfo)" :msgInfo="msgInfo">
- </message-item>
- </li>
- </ul>
- </div>
- </el-main>
- <el-footer height="200px" class="im-chat-footer">
- <div class="chat-tool-bar">
- <div title="表情" class="el-icon-eleme" ref="emotion" @click="switchEmotionBox()">
- </div>
- <div title="发送图片">
- <file-upload :action="imageAction" :maxSize="5*1024*1024"
- :fileTypes="['image/jpeg', 'image/png', 'image/jpg', 'image/webp','image/gif']"
- @before="handleImageBefore" @success="handleImageSuccess" @fail="handleImageFail">
- <i class="el-icon-picture-outline"></i>
- </file-upload>
- </div>
- <div title="发送文件">
- <file-upload :action="fileAction" :maxSize="10*1024*1024" @before="handleFileBefore"
- @success="handleFileSuccess" @fail="handleFileFail">
- <i class="el-icon-wallet"></i>
- </file-upload>
- </div>
- <div title="发送语音" class="el-icon-microphone" @click="showVoiceBox()">
- </div>
- <div title="聊天记录" class="el-icon-chat-dot-round"></div>
- </div>
- <textarea v-model="sendText" ref="sendBox" class="send-text-area"
- @keydown.enter="sendTextMessage()"></textarea>
- <div class="im-chat-send">
- <el-button type="primary" @click="sendTextMessage()">发送</el-button>
- </div>
- </el-footer>
- </el-container>
- <el-aside class="chat-group-side-box" width="300px" v-show="showSide">
- <chat-group-side :group="group" :groupMembers="groupMembers" @reload="loadGroup(group.id)">
- </chat-group-side>
- </el-aside>
- </el-container>
- </el-main>
- <emotion v-show="showEmotion" :pos="emoBoxPos" @emotion="handleEmotion"></Emotion>
- <chat-voice :visible="showVoice" @close="closeVoiceBox" @send="handleSendVoice"></chat-voice>
- </el-container>
- </template>
- <script>
- import ChatGroupSide from "./ChatGroupSide.vue";
- import MessageItem from "./MessageItem.vue";
- import FileUpload from "../common/FileUpload.vue";
- import Emotion from "../common/Emotion.vue";
- import ChatVoice from "./ChatVoice.vue";
- export default {
- name: "chatPrivate",
- components: {
- MessageItem,
- FileUpload,
- ChatGroupSide,
- Emotion,
- ChatVoice
- },
- props: {
- chat: {
- type: Object
- }
- },
- data() {
- return {
- friend: {},
- group: {},
- groupMembers: [],
- sendText: "",
- showVoice: false, // 是否显示语音录制弹窗
- showSide: false, // 是否显示群聊信息栏
- showEmotion: false, // 是否显示emoji表情
- emoBoxPos: { // emoji表情弹出位置
- x: 0,
- y: 0
- }
- }
- },
- methods: {
- handleImageSuccess(res, file) {
- let msgInfo = {
- recvId: file.raw.targetId,
- content: JSON.stringify(res.data),
- type: 1
- }
- // 填充对方id
- this.setTargetId(msgInfo, this.chat.targetId);
- this.$http({
- url: this.messageAction,
- method: 'post',
- data: msgInfo
- }).then((data) => {
- let info = {
- type: this.chat.type,
- targetId: file.raw.targetId,
- fileId: file.raw.uid,
- content: JSON.stringify(res.data),
- loadStatus: "ok"
- }
- this.$store.commit("handleFileUpload", info);
- })
- },
- handleImageFail(res, file) {
- let info = {
- type: this.chat.type,
- targetId: file.raw.targetId,
- fileId: file.raw.uid,
- loadStatus: "fail"
- }
- this.$store.commit("handleFileUpload", info);
- },
- handleImageBefore(file) {
- let url = URL.createObjectURL(file);
- let data = {
- originUrl: url,
- thumbUrl: url
- }
- let msgInfo = {
- fileId: file.uid,
- sendId: this.mine.id,
- content: JSON.stringify(data),
- sendTime: new Date().getTime(),
- selfSend: true,
- type: 1,
- loadStatus: "loading"
- }
- // 填充对方id
- this.setTargetId(msgInfo, this.chat.targetId);
- // 插入消息
- this.$store.commit("insertMessage", msgInfo);
- // 滚动到底部
- this.scrollToBottom();
- // 借助file对象保存对方id
- file.targetId = this.chat.targetId;
- },
- handleFileSuccess(res, file) {
- let data = {
- name: file.name,
- size: file.size,
- url: res.data
- }
- let msgInfo = {
- content: JSON.stringify(data),
- type: 2
- }
- // 填充对方id
- this.setTargetId(msgInfo, this.chat.targetId);
- this.$http({
- url: this.messageAction,
- method: 'post',
- data: msgInfo
- }).then(() => {
- let info = {
- type: this.chat.type,
- targetId: file.raw.targetId,
- fileId: file.raw.uid,
- content: JSON.stringify(data),
- loadStatus: "ok"
- }
- this.$store.commit("handleFileUpload", info);
- })
- },
- handleFileFail(res, file) {
- let info = {
- type: this.chat.type,
- targetId: file.raw.targetId,
- fileId: file.raw.uid,
- loadStatus: "fail"
- }
- this.$store.commit("handleFileUpload", info);
- },
- handleFileBefore(file) {
- let url = URL.createObjectURL(file);
- let data = {
- name: file.name,
- size: file.size,
- url: url
- }
- let msgInfo = {
- fileId: file.uid,
- sendId: this.mine.id,
- content: JSON.stringify(data),
- sendTime: new Date().getTime(),
- selfSend: true,
- type: 2,
- loadStatus: "loading"
- }
- // 填充对方id
- this.setTargetId(msgInfo, this.chat.targetId);
- // 插入消息
- this.$store.commit("insertMessage", msgInfo);
- // 滚动到底部
- this.scrollToBottom();
- // 借助file对象保存对方id
- file.targetId = this.chat.targetId;
- },
- handleCloseSide() {
- this.showSide = false;
- },
- switchEmotionBox() {
- this.showEmotion = !this.showEmotion;
- let width = this.$refs.emotion.offsetWidth;
- let left = this.$elm.fixLeft(this.$refs.emotion);
- let top = this.$elm.fixTop(this.$refs.emotion);
- this.emoBoxPos.y = top;
- this.emoBoxPos.x = left + width / 2;
- },
- handleEmotion(emoText) {
- this.sendText += emoText;
- this.showEmotion = false;
- // 保持输入框焦点
- this.$refs.sendBox.focus();
- },
- showVoiceBox() {
- this.showVoice = true;
- },
- closeVoiceBox() {
- this.showVoice = false;
- },
- handleSendVoice(data) {
- let msgInfo = {
- content: JSON.stringify(data),
- type: 3
- }
- // 填充对方id
- this.setTargetId(msgInfo, this.chat.targetId);
- this.$http({
- url: this.messageAction,
- method: 'post',
- data: msgInfo
- }).then(() => {
- this.$message.success("发送成功");
- msgInfo.sendTime = new Date().getTime();
- msgInfo.sendId = this.$store.state.userStore.userInfo.id;
- msgInfo.selfSend = true;
- this.$store.commit("insertMessage", msgInfo);
- // 保持输入框焦点
- this.$refs.sendBox.focus();
- // 滚动到底部
- this.scrollToBottom();
- // 关闭录音窗口
- this.showVoice = false;
- })
- },
- setTargetId(msgInfo, targetId) {
- if (this.chat.type == "GROUP") {
- msgInfo.groupId = targetId;
- } else {
- msgInfo.recvId = targetId;
- }
- },
- sendTextMessage() {
- if (!this.sendText.trim()) {
- this.$message.error("不能发送空白信息");
- return
- }
- let msgInfo = {
- content: this.sendText,
- type: 0
- }
- // 填充对方id
- this.setTargetId(msgInfo, this.chat.targetId);
- this.$http({
- url: this.messageAction,
- method: 'post',
- data: msgInfo
- }).then((data) => {
- this.$message.success("发送成功");
- this.sendText = "";
- msgInfo.sendTime = new Date().getTime();
- msgInfo.sendId = this.$store.state.userStore.userInfo.id;
- msgInfo.selfSend = true;
- this.$store.commit("insertMessage", msgInfo);
- // 保持输入框焦点
- this.$refs.sendBox.focus();
- // 滚动到底部
- this.scrollToBottom();
- })
- const e = window.event || arguments[0];
- if (e.key === 'Enter' || e.code === 'Enter' || e.keyCode === 13) {
- e.returnValue = false;
- e.preventDefault();
- return false;
- }
- },
- loadGroup(groupId) {
- this.$http({
- url: `/group/find/${groupId}`,
- method: 'get'
- }).then((group) => {
- this.group = group;
- this.$store.commit("updateChatFromGroup", group);
- this.$store.commit("updateGroup", group);
- });
- this.$http({
- url: `/group/members/${groupId}`,
- method: 'get'
- }).then((groupMembers) => {
- this.groupMembers = groupMembers;
- });
- },
- loadFriend(friendId) {
- // 获取对方最新信息
- this.$http({
- url: `/user/find/${friendId}`,
- method: 'get'
- }).then((friend) => {
- this.friend = friend;
- this.$store.commit("updateChatFromFriend", friend);
- this.$store.commit("updateFriend", friend);
- })
- },
- showName(msgInfo) {
- if (this.chat.type == 'GROUP') {
- let member = this.groupMembers.find((m) => m.userId == msgInfo.sendId);
- return member ? member.aliasName : "";
- } else {
- return msgInfo.sendId == this.mine.id ? this.mine.nickName : this.chat.showName
- }
- },
- headImage(msgInfo) {
- if (this.chat.type == 'GROUP') {
- let member = this.groupMembers.find((m) => m.userId == msgInfo.sendId);
- return member ? member.headImage : "";
- } else {
- return msgInfo.sendId == this.mine.id ? this.mine.headImageThumb : this.chat.headImage
- }
- },
- scrollToBottom() {
- this.$nextTick(() => {
- const div = document.getElementById("chatScrollBox");
- div.scrollTop = div.scrollHeight;
- });
- }
- },
- computed: {
- mine() {
- return this.$store.state.userStore.userInfo;
- },
- title() {
- let title = this.chat.showName;
- if (this.chat.type == "GROUP") {
- let size = this.groupMembers.filter(m => !m.quit).length;
- title += `(${size})`;
- }
- return title;
- },
- imageAction() {
- return `${process.env.VUE_APP_BASE_API}/image/upload`;
- },
- fileAction() {
- return `${process.env.VUE_APP_BASE_API}/file/upload`;
- },
- messageAction() {
- return `/message/${this.chat.type.toLowerCase()}/send`;
- }
- },
- watch: {
- chat: {
- handler(newChat, oldChat) {
- if (newChat.targetId > 0 && (newChat.type != oldChat.type || newChat.targetId != oldChat.targetId)) {
- if (this.chat.type == "GROUP") {
- this.loadGroup(this.chat.targetId);
- } else {
- this.loadFriend(this.chat.targetId);
- }
- this.scrollToBottom();
- this.sendText = "";
- // 保持输入框焦点
- this.$refs.sendBox.focus();
- }
- },
- deep: true
- }
- }
- }
- </script>
- <style lang="scss">
- .chat-box {
- background: white;
- border: #dddddd solid 1px;
- .el-header {
- padding: 5px;
- background-color: white;
- line-height: 50px;
- font-size: 20px;
- font-weight: 600;
- border: #dddddd solid 1px;
- .btn-side {
- position: absolute;
- right: 20px;
- line-height: 60px;
- font-size: 22px;
- cursor: pointer;
- &:hover {
- font-size: 30px;
- }
- }
- }
- .im-chat-main {
- padding: 0;
- border: #dddddd solid 1px;
- .im-chat-box {
- ul {
- padding: 20px;
- li {
- list-style-type: none;
- }
- }
- }
- }
- .im-chat-footer {
- display: flex;
- flex-direction: column;
- padding: 0;
- border: #dddddd solid 1px;
- .chat-tool-bar {
- display: flex;
- position: relative;
- width: 100%;
- height: 40px;
- text-align: left;
- box-sizing: border-box;
- border: #dddddd solid 1px;
- >div {
- margin-left: 10px;
- font-size: 22px;
- cursor: pointer;
- color: #333333;
- line-height: 40px;
- &:hover {
- color: black;
- }
- }
- }
- .send-text-area {
- box-sizing: border-box;
- padding: 5px;
- width: 100%;
- flex: 1;
- resize: none;
- background-color: #f8f8f8 !important;
- outline-color: rgba(83, 160, 231, 0.61);
- }
- .im-chat-send {
- text-align: right;
- padding: 7px;
- }
- }
- .chat-group-side-box {
- border: #dddddd solid 1px;
- animation: rtl-drawer-in .3s 1ms;
- }
- }
- </style>
|