main.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <template>
  2. <!-- <chat-suit-emoji id="chat-suit-emoji" bind:newEmojiStr="emojiAction"></chat-suit-emoji> -->
  3. <form class="text-input">
  4. <view :class="isIPX ?'f-row-x' :'f-row'">
  5. <!-- 发送语音 -->
  6. <view>
  7. <image class="icon-mic" src="@/static/images/voice.png" @tap="openRecordModal"></image>
  8. </view>
  9. <!-- 输入框 -->
  10. <textarea
  11. class="f news"
  12. type="text"
  13. cursor-spacing="65"
  14. confirm-type='done'
  15. v-model="inputMessage"
  16. @confirm="sendMessage"
  17. @input="bindMessage"
  18. @tap="focus"
  19. @focus="focus"
  20. @blur="blur"
  21. :confirm-hold="isIPX ? true : false"
  22. auto-height
  23. :show-confirm-bar='false'
  24. maxlength="300"
  25. />
  26. <view>
  27. <image class="icon-mic" src="@/static/images/Emoji.png" @tap="openEmoji"></image>
  28. </view>
  29. <view v-show="!inputMessage" @tap="openFunModal">
  30. <image class="icon-mic" src="@/static/images/ad.png"></image>
  31. </view>
  32. <button
  33. class="send-btn-style"
  34. hover-class='hover'
  35. @tap="sendMessage"
  36. v-show="inputMessage"
  37. >发送</button>
  38. </view>
  39. </form>
  40. </template>
  41. <script>
  42. let WebIM = require("../../../../../utils/WebIM")["default"];
  43. let msgType = require("../../../msgtype");
  44. let disp = require("../../../../../utils/broadcast");
  45. let msgStorage = require("../../../msgstorage");
  46. export default {
  47. data() {
  48. return {
  49. inputMessage: "",
  50. // render input 的值
  51. userMessage: "", // input 的实时值
  52. isIPX: false,
  53. };
  54. },
  55. components: {},
  56. props: {
  57. username: {
  58. type: Object,
  59. default: () => ({}),
  60. },
  61. chatType: {
  62. type: String,
  63. default: msgType.chatType.SINGLE_CHAT,
  64. },
  65. },
  66. // lifetimes
  67. created() {
  68. this.isIPX= getApp().globalData.isIPX
  69. },
  70. beforeMount() {},
  71. moved() {},
  72. destroyed() {},
  73. mounted() {},
  74. methods: {
  75. focus() {
  76. this.$emit("inputFocused", null, {
  77. bubbles: true,
  78. });
  79. },
  80. blur() {
  81. this.$emit("inputBlured", null, {
  82. bubbles: true,
  83. });
  84. },
  85. isGroupChat() {
  86. return this.chatType == msgType.chatType.CHAT_ROOM;
  87. },
  88. getSendToParam() {
  89. return this.isGroupChat() ? this.username.groupId : this.username.your;
  90. },
  91. bindMessage(e) {
  92. this.userMessage= e.detail.value
  93. },
  94. emojiAction(emoji) {
  95. var str;
  96. var msglen = this.userMessage.length - 1;
  97. if (emoji && emoji != "[del]") {
  98. str = this.userMessage + emoji;
  99. } else if (emoji == "[del]") {
  100. let start = this.userMessage.lastIndexOf("[");
  101. let end = this.userMessage.lastIndexOf("]");
  102. let len = end - start;
  103. if (end != -1 && end == msglen && len >= 3 && len <= 4) {
  104. str = this.userMessage.slice(0, start);
  105. } else {
  106. str = this.userMessage.slice(0, msglen);
  107. }
  108. }
  109. this.userMessage = str;
  110. this.inputMessage = str;
  111. },
  112. sendMessage() {
  113. let me = this;
  114. String.prototype.trim = function () {
  115. return this.replace(/(^\s*)|(\s*$)/g, "");
  116. };
  117. if (!this.userMessage.trim()) {
  118. return;
  119. }
  120. let id = WebIM.conn.getUniqueId();
  121. let msg = new WebIM.message(msgType.TEXT, id);
  122. msg.set({
  123. msg: this.userMessage,
  124. from: this.username.myName,
  125. to: this.getSendToParam(),
  126. // roomType: false,
  127. chatType: this.chatType,
  128. success(id, serverMsgId) {
  129. console.log("成功了");
  130. // 关闭表情弹窗
  131. me.$parent.cancelEmoji()
  132. me.$parent.closeFunModal()
  133. disp.fire("em.chat.sendSuccess", id, me.userMessage);
  134. },
  135. fail(id, serverMsgId) {
  136. console.log("失败了");
  137. },
  138. });
  139. if (this.chatType == msgType.chatType.CHAT_ROOM) {
  140. // msg.setGroup("groupchat");
  141. msg.setChatType("groupchat");
  142. }
  143. WebIM.conn.send(msg.body);
  144. let obj = {
  145. msg: msg,
  146. type: msgType.TEXT,
  147. };
  148. this.saveSendMsg(obj);
  149. this.userMessage = "";
  150. this.inputMessage = "";
  151. uni.hideKeyboard();
  152. },
  153. saveSendMsg(evt) {
  154. msgStorage.saveMsg(evt.msg, evt.type);
  155. },
  156. openEmoji(){
  157. this.$emit('openEmoji')
  158. },
  159. openRecordModal(){
  160. this.$emit('openRecordModal')
  161. },
  162. openFunModal(){
  163. this.$emit('openFunModal')
  164. }
  165. },
  166. };
  167. </script>
  168. <style>
  169. @import "./main.css";
  170. </style>