123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- <template>
- <view class="main">
- <view class="cu-chat" v-for="(item,index) in messages" :key="index">
- <view class="cu-item self" v-if="item.senderId==currentUser.uuid">
- <view class="time-lag">
- {{renderMessageDate(item, index)}}
- </view>
- <view class="main" v-if="item.type=='text'">
- <view class="content bg-green shadow">
- <text>{{item.payload.text}}</text>
- </view>
- </view>
- <view class="main" v-else-if="item.type =='image'">
- <image :src="item.payload.url" @click="yulan(item.payload.url)" :style="'width:'+item.payload.width+'rpx;height'+item.payload.height+'rpx;'"
- class="radius" mode="widthFix"></image>
- </view>
- <view class="main" v-else="item.type =='audio'">
- <GoEasyAudioPlayer :src="item.payload.url" :duration="item.payload.duration" />
- </view>
- <view class="cu-avatar radius" :style="'background-image:url('+currentUser.avatar+');'"></view>
- </view>
- <view class="cu-item" v-else>
- <view class="cu-avatar radius" :style="'background-image:url('+doctorInfo.avatar+');'"></view>
- <view class="main" v-if="item.type=='text'">
- <view class="content shadow">
- <text>{{item.payload.text}}</text>
- </view>
- </view>
- <view class="main" v-else-if="item.type =='image'">
- <image :src="item.payload.url" @click="yulan(item.payload.url)" :style="'width:'+item.payload.width+'rpx;height'+item.payload.height+'rpx;'"
- class="radius" mode="widthFix"></image>
- </view>
- <view class="main" v-else="item.type =='audio'">
- <GoEasyAudioPlayer :src="item.payload.url" :duration="item.payload.duration" />
- </view>
- </view>
- </view>
- <view :class="InputBottom!=0?'cu-bar foot tab input cur':'cu-bar foot input'" style="padding-bottom: 45rpx;padding-top: 45rpx;" v-if="doctorstatus!='4'" :style="'bottom:'+InputBottom+'px'">
- <view class="action" @click="sendvoice">
- <text class="cuIcon-sound text-grey"></text>
- </view>
- <input v-if="!isvoice" v-model="keyword" class="solid-bottom" @focus="InputFocus" @blur="InputBlur" :disabled="isinput"
- :adjust-position="false" :focus="false" maxlength="300" :placeholder="textinput" cursor-spacing="10"></input>
- <button class="flex-sub" style="font-size: 30rpx; height: 64rpx;padding: 0;" @longpress="onRecordStart"
- @touchend.stop="onRecordEnd" v-else>{{audio.recording ? '松开发送':'按住发送语音'}}</button>
- <view class="action" style="margin-right: 20rpx;" @click="sendImage">
- <text class="cuIcon-picfill text-grey"></text>
- </view>
- <button class="cu-btn bg-green shadow" @click="sendMessage">发送</button>
- </view>
- <view class="record-loading" v-if="audio.recording"></view>
- </view>
- </template>
- <script>
- import {
- sendMessages
- } from "../../../common/goeasyimutil.js"
- import GoEasyAudioPlayer from "../../../components/GoEasyAudioPlayer/GoEasyAudioPlayer";
- const recorderManager = uni.getRecorderManager()
- export default {
- components: {
- GoEasyAudioPlayer
- },
- onLoad(op) {
- this.doctorstatus = op.doctorstatus
- console.log(this.doctorstatus)
- this.imService = getApp().globalData.imService;
- if (!this.imService || !this.imService.currentUser) {
- uni.navigateTo({
- url: '../../login/login'
- });
- return
- }
- this.doctorInfo = JSON.parse(op.doctor)
- //对话数据
- this.friend = {
- uuid: "doctor_" + this.doctorInfo.id,
- name: this.doctorInfo.name,
- avatar: this.doctorInfo.avatar
- };
- this.currentUser = this.imService.currentUser;
- let privateMessages = this.imService.getPrivateMessages(this.friend.uuid);
- this.messages = privateMessages.sentMessages;
- this.pendingMessages = privateMessages.pendingMessages;
- uni.setNavigationBarTitle({
- title: this.friend.name
- });
- this.initialListeners();
- //每次进入聊天页面,总是滚动到底部
- this.scrollToBottom()
- //收到的消息设置为已读
- if (this.messages.length != 0) {
- this.imService.markPrivateMessageAsRead(this.friend.uuid);
- }
- },
- onShow() {
- this.imService = getApp().globalData.imService;
- if (!this.imService || !this.imService.currentUser) {
- uni.navigateTo({
- url: '../../login/login'
- });
- return
- }
- },
- mounted() {
- },
- data() {
- return {
- keyword: "",
- InputBottom: 0,
- isvoice: false,
- textinput: "请输入",
- isinput: false,
- messages: [],
- self_messages: [],
- friend: null,
- currentUser: null,
- imService: null,
- audio: {
- //语音录音中
- recording: false,
- },
- doctorInfo: {},
- doctorstatus: ""
- }
- },
- onPullDownRefresh: function(e) {
- this.loadMoreHistoryMessage();
- },
- onUnload() {
- //退出聊天页面之前,清空页面传入的监听器
- if (this.imService) {
- this.imService.onNewPrivateMessageReceive = (friendId, message) => {};
- }
- },
- methods: {
- renderMessageDate(message, index) {
- if (index === 0) {
- return this.formatDate(message.timestamp)
- } else {
- if (message.timestamp - this.messages[index - 1].timestamp > 5 * 60 * 1000) {
- return this.formatDate(message.timestamp)
- }
- }
- return ''
- },
- InputFocus(e) {
- this.InputBottom = e.detail.height
- },
- InputBlur(e) {
- this.InputBottom = 0
- },
- sendvoice() {
- this.isvoice = !this.isvoice
- },
- subscribeMessage() { //订阅消息
- },
- yulan(url) {
- uni.previewImage({
- urls: [url],
- current: url
- })
- },
- initialListeners() {
- //传入监听器,收到一条私聊消息总是滚到到页面底部
- this.imService.onNewPrivateMessageReceive = (friendId, message) => {
- if (friendId == this.friend.uuid) {
- this.imService.markPrivateMessageAsRead(friendId);
- //收到新消息,是滚动到最底部
- this.scrollToBottom()
- }
- };
- // 录音监听器
- this.initRecorderListeners();
- },
- initRecorderListeners() {
- let self = this;
- // 监听录音开始
- recorderManager.onStart(function() {
- self.audio.recording = true;
- });
- //录音结束后,发送
- recorderManager.onStop(function(res) {
- console.log(res)
- self.audio.recording = false;
- self.imService.sendPrivateAudioMessage(self.friend.uuid, res)
- });
- // 监听录音报错
- recorderManager.onError(function(res) {
- console.log("录音报错:", res);
- })
- },
- onRecordStart(event) {
- try {
- recorderManager.start();
- } catch (e) {
- uni.showModal({
- title: '发送语音错误',
- content: '请联系客服'
- });
- }
- event.preventDefault();
- },
- onRecordEnd() {
- try {
- recorderManager.stop();
- } catch (e) {
- uni.showModal({
- title: '发送语音错误',
- content: '请联系客服'
- });
- }
- },
- sendMessage() { //发送消息
- if (this.keyword.trim() != '') {
- console.log(this.friend.uuid)
- this.imService.sendPrivateTextMessage(this.friend.uuid, this.keyword);
- }
- this.keyword = "";
- },
- scrollToBottom() {
- this.$nextTick(function() {
- uni.pageScrollTo({
- scrollTop: 2000000,
- duration: 10
- })
- })
- },
- sendImage() {
- uni.chooseImage({
- count: 1,
- success: (res) => {
- this.imService.sendPrivateImageMessage(this.friend.uuid, res);
- }
- })
- },
- loadMoreHistoryMessage() { //历史消息
- let lastMessageTimeStamp = Date.now();
- let lastMessage = this.messages[0];
- if (lastMessage) {
- lastMessageTimeStamp = lastMessage.timestamp;
- }
- var currentLength = this.messages.length;
- let promise = this.imService.loadPrivateHistoryMessage(this.friend.uuid, lastMessageTimeStamp);
- promise.then(messages => {
- if (messages.length == currentLength) {
- this.allHistoryLoaded = true
- }
- this.messages = messages;
- uni.stopPullDownRefresh();
- }).catch(e => {
- console.log(e)
- uni.stopPullDownRefresh();
- })
- },
- }
- };
- </script>
- <style lang="scss">
- page {
- padding-bottom: 100rpx;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .time-lag {
- font-size: 20rpx;
- text-align: center;
- }
- .record-loading{
- position: fixed;
- top:50%;
- left: 50%;
- width: 300rpx;
- height: 300rpx;
- margin: -150rpx -150rpx;
- background: #262628;
- background: url("https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/recording-loading.gif") no-repeat center;
- background-size: 100%;
- border-radius: 40rpx;
- }
- </style>
|