inputbar.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <view class="room_bar">
  3. <chatSuitEmoji
  4. ref="chatSuitEmoji"
  5. @newEmojiStr="emojiAction"
  6. ></chatSuitEmoji>
  7. <chatSuitMain
  8. ref="chatSuitMain"
  9. :username="username"
  10. :chatType="chatType"
  11. @inputFocused="closeAllModal"
  12. @openEmoji="openEmoji"
  13. @openRecordModal="toggleRecordModal"
  14. @openFunModal="openFunModal"
  15. ></chatSuitMain>
  16. <chatSuitImage
  17. ref="chatSuitImage"
  18. :username="username"
  19. :chatType="chatType"
  20. ></chatSuitImage>
  21. <!-- <chat-suit-location id="chat-suit-location" username="{{ username }}"></chat-suit-location> -->
  22. <!-- <chat-suit-video ref="chatSuitVideo" :username="username"></chat-suit-video> -->
  23. <chatSuitPtopcall
  24. ref="chatSuitPtopcall"
  25. :chatType="chatType"
  26. @makeVideoCall="onMakeVideoCall"
  27. >
  28. </chatSuitPtopcall>
  29. <swiper
  30. :class="showFunModal"
  31. :indicator-dots="true"
  32. :autoplay="false"
  33. :interval="5000"
  34. :duration="1000"
  35. >
  36. <swiper-item>
  37. <view :class="'other_func ' + (isIPX ? 'other_func_X' : '')">
  38. <view class="open_camera" @tap="openCamera">
  39. <image src="/static/images/camora.png"></image>
  40. 相机
  41. </view>
  42. <view class="send_image" @tap="sendImage">
  43. <image src="/static/images/pic.png"></image>
  44. 相册
  45. </view>
  46. <view
  47. class="send_image"
  48. @tap="edit_group"
  49. v-show="chatType === 'chatRoom'"
  50. >
  51. <image src="/static/images/pic.png"></image>
  52. 群信息
  53. </view>
  54. <!-- <view class="send_image" @tap="sendVideo">
  55. <image
  56. src="/static/images/video.png"
  57. style="height: 20px; width: 20px"
  58. ></image>
  59. </view>
  60. <view class="send_image" bind:tap="sendLocation">
  61. <image
  62. src="../../../static/images/iconLocation2x.png"
  63. style="height: 18px"
  64. />
  65. </view>
  66. <view class="v-record" @tap="callVideo" v-if="username.groupId">
  67. <image
  68. src="/static/images/call2x.png"
  69. style="height: 24px; width: 15px"
  70. />
  71. </view> -->
  72. </view>
  73. </swiper-item>
  74. </swiper>
  75. </view>
  76. </template>
  77. <script>
  78. let RecordStatus = require("./suit/audio/record_status").RecordStatus;
  79. let msgType = require("../msgtype");
  80. import chatSuitEmoji from "./suit/emoji/emoji";
  81. import chatSuitImage from "./suit/image/image";
  82. import chatSuitLocation from "./suit/location/location";
  83. import chatSuitMain from "./suit/main/main";
  84. import chatSuitPtopcall from "./suit/ptopcall/ptopcall.vue";
  85. // import chatSuitVideo from "./suit/videoComp/videoComp"
  86. let FUNMODAL_STATUS = {
  87. OPENED: "showFunModal",
  88. CLOSED: "fun_list",
  89. };
  90. export default {
  91. data() {
  92. return {
  93. recordStatus: RecordStatus.HIDE,
  94. RecordStatus,
  95. __comps__: {
  96. main: null,
  97. emoji: null,
  98. image: null,
  99. location: null,
  100. video: null,
  101. },
  102. isIPX: "",
  103. showFunModal: FUNMODAL_STATUS.CLOSED,
  104. };
  105. },
  106. components: {
  107. chatSuitEmoji,
  108. chatSuitImage,
  109. chatSuitLocation,
  110. chatSuitMain,
  111. chatSuitPtopcall,
  112. // chatSuitVideo
  113. },
  114. props: {
  115. username: {
  116. type: Object,
  117. default: () => ({}),
  118. },
  119. chatType: {
  120. type: String,
  121. default: msgType.chatType.SINGLE_CHAT,
  122. },
  123. },
  124. // lifetimes
  125. created() {},
  126. beforeMount() {},
  127. moved() {},
  128. destroyed() {},
  129. onLoad() {
  130. this.isIPX= false
  131. // let comps = this.$data.__comps__;
  132. // comps.main = this.selectComponent("#chatSuitMain");
  133. // comps.emoji = this.selectComponent("#chatSuitEmoji");
  134. // comps.image = this.selectComponent("#chatSuitImage");
  135. },
  136. methods: {
  137. // 事件有长度限制:仅限 26 字符
  138. toggleRecordModal() {
  139. this.$emit("tapSendAudio", null, {
  140. bubbles: true,
  141. composed: true,
  142. });
  143. },
  144. // sendVideo(){
  145. // this.$refs.chatSuitVideo.sendVideo();
  146. // },
  147. openCamera() {
  148. this.$refs.chatSuitImage.openCamera();
  149. },
  150. openEmoji() {
  151. setTimeout(() => {
  152. this.showFunModal= FUNMODAL_STATUS.CLOSED
  153. }, 100);
  154. this.$refs.chatSuitEmoji.openEmoji();
  155. },
  156. cancelEmoji() {
  157. this.$refs.chatSuitEmoji.cancelEmoji();
  158. },
  159. sendImage() {
  160. this.$refs.chatSuitImage.sendImage();
  161. },
  162. sendLocation() {
  163. // this.data.__comps__.location.sendLocation();
  164. },
  165. emojiAction(evt) {
  166. this.$refs.chatSuitMain.emojiAction(evt.msg);
  167. },
  168. callVideo() {
  169. this.$refs.chatSuitPtopcall.show();
  170. },
  171. onMakeVideoCall() {
  172. console.log("onMakeVideoCall -> inputbar");
  173. this.$emit("makeVideoCall", null, "single");
  174. },
  175. openFunModal() {
  176. this.showFunModal= FUNMODAL_STATUS.OPENED
  177. this.cancelEmoji()
  178. },
  179. closeFunModal() {
  180. this.showFunModal= FUNMODAL_STATUS.CLOSED
  181. this.cancelEmoji()
  182. },
  183. closeAllModal(){
  184. this.cancelEmoji()
  185. this.closeFunModal()
  186. },
  187. edit_group() {
  188. var nameList = {
  189. myName: this.username.myName,
  190. groupName: this.username.your,
  191. roomId: this.username.groupId,
  192. };
  193. uni.navigateTo({
  194. url:
  195. "../groupSetting/groupSetting?groupInfo=" + JSON.stringify(nameList),
  196. });
  197. },
  198. },
  199. };
  200. </script>
  201. <style>
  202. @import "./inputbar.css";
  203. </style>