inputArea.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. <template>
  2. <div class="box-ft">
  3. <transition name="msgbox-fade">
  4. <Emoji v-show="emojiShow" @addEmoji="addEmoji"></Emoji>
  5. </transition>
  6. <chat-at
  7. ref="chatAt"
  8. v-if="atShow"
  9. @atperson="atPerson"
  10. :curInd="atInd"
  11. :filterList="filterMembers"
  12. ></chat-at>
  13. <div class="toolbar">
  14. <i class="look-icon" @click.stop="emojiShow = !emojiShow"></i>
  15. <div class="file-icon">
  16. <input type="file" ref="inputFile" name="res" @change="handleFile">
  17. </div>
  18. <i class="icon-packet" @click="$packetSend"></i>
  19. </div>
  20. <div class="send-content">
  21. <form class="input-wrap" @submit="handleSend">
  22. <textarea
  23. @click.stop
  24. @keydown.up.prevent="handleUp"
  25. @keydown.down.prevent="handleDown"
  26. @keydown.left="handleLeft"
  27. @keydown.right="handleRight"
  28. @keydown.delete="handleDel"
  29. @keydown.esc="handleEsc"
  30. cols="1"
  31. ref="chatInput"
  32. rows="1"
  33. @keydown.enter="handleKeyDown"
  34. placeholder
  35. v-focus
  36. v-model="inputMsg"
  37. @focus="handleFocus"
  38. @blur="handleBlur"
  39. />
  40. </form>
  41. </div>
  42. <div class="send-action">Enter发送,Ctrl + Enter 换行
  43. <el-button @click="handleSend">发送</el-button>
  44. </div>
  45. </div>
  46. </template>
  47. <script>
  48. import Emoji from '@/components/emoji/pc'
  49. import chatAt from '@/components/chatAt'
  50. // import { Message } from 'element-ui'
  51. // import { mapState, mapMutations, mapActions } from 'vuex'
  52. import { chatAtMixin, chatInputMixin } from '@/mixins'
  53. import { inputMixin } from '@/mixins/chat'
  54. // import ImageMin from '@/util/imageMin.js'
  55. export default {
  56. name: 'inputArea',
  57. mixins: [chatAtMixin, chatInputMixin, inputMixin],
  58. components: {
  59. Emoji,
  60. chatAt
  61. },
  62. watch: {
  63. '$route' () {
  64. this.$refs.chatInput.focus()
  65. this.inputMsg = ''
  66. }
  67. },
  68. // computed: {
  69. // ...mapState(['group', 'userId']),
  70. // ...mapState({
  71. // chatInputFocus: state => state.group.chatInputFocus,
  72. // blockList: state => state.group.blockList
  73. // }),
  74. // isPrivate () {
  75. // return this.$store.getters.isPrivate
  76. // }
  77. // },
  78. // data () {
  79. // return {
  80. // emojiShow: false,
  81. // inputMsg: '',
  82. // atInd: 0
  83. // }
  84. // },
  85. mounted () {
  86. document.addEventListener('paste', this.initPaste)
  87. document.addEventListener('drop', this.initDrop)
  88. document.addEventListener('dragover', this.initDragOver)
  89. // document.body.addEventListener('click', () => {
  90. // this.emojiShow = false
  91. // })
  92. },
  93. beforeDestroy () {
  94. document.removeEventListener('paste', this.initPaste)
  95. document.removeEventListener('drop', this.initDrop)
  96. document.removeEventListener('dragover', this.initDragOver)
  97. },
  98. methods: {
  99. // ...mapMutations(['updateChatInputFocus', 'addChatItem']),
  100. // ...mapActions(['doSendMsg', 'doSendFile', 'doSendPrivateMsg']),
  101. // addEmoji (val) {
  102. // this.inputMsg += val
  103. // this.emojiShow = false
  104. // this.$refs.chatInput.focus()
  105. // },
  106. // /**
  107. // * @des 处理消息发送
  108. // */
  109. // handleSend (e) {
  110. // // 判断是否被禁言
  111. // if (this.blockList.some(id => id == this.userId)) {
  112. // Message({
  113. // message: '您已被禁言',
  114. // type: 'error'
  115. // })
  116. // return
  117. // }
  118. // let text = this.inputMsg.trim()
  119. // if (text.length === 0) {
  120. // Message({
  121. // message: '聊天内容不能为空',
  122. // type: 'warning'
  123. // })
  124. // return
  125. // }
  126. // let opt = {
  127. // type: 0,
  128. // msg: text
  129. // }
  130. // // 用户不是第一次发言
  131. // if (this.group.members[this.userId]) {
  132. // let createTime = Date.now()
  133. // this.addChatItem({
  134. // from: this.userId,
  135. // content: text,
  136. // hash: `${createTime}`,
  137. // timestamp: createTime,
  138. // createTime,
  139. // msg_type: '0',
  140. // loading: true
  141. // })
  142. // opt.createTime = createTime
  143. // }
  144. // this.isPrivate ? this.doSendPrivateMsg(opt) : this.doSendMsg(opt)
  145. // // 滚到底部
  146. // this.$nextTick(function () {
  147. // this.inputMsg = ''
  148. // this.$emit('toBottom')
  149. // })
  150. // e.preventDefault()
  151. // return false
  152. // },
  153. // /**
  154. // * 文件预处理
  155. // * @return {Object} data 预处理文件信息
  156. // * @param {Number} data.type
  157. // * @param {File} data.res
  158. // */
  159. // async preHandleFile (file) {
  160. // let type = file.type
  161. // let size = file.size
  162. // if (type.match('video')) {
  163. // return size > 3 * 1024 * 1024
  164. // ? Promise.reject(new Error(file))
  165. // : Promise.resolve({
  166. // type: 2,
  167. // res: file
  168. // })
  169. // } else if (type.match('audio')) {
  170. // return size > 2 * 1024 * 1024
  171. // ? Promise.reject(new Error(file))
  172. // : Promise.resolve({
  173. // type: 3,
  174. // res: file
  175. // })
  176. // } else if (type.match('image')) {
  177. // let image = await new ImageMin({
  178. // file: file,
  179. // maxSize: 1024 * 1024
  180. // })
  181. // return {
  182. // type: 1,
  183. // preview: image.base64,
  184. // res: image.res
  185. // }
  186. // }
  187. // },
  188. // /**
  189. // * @des 处理文件发送
  190. // */
  191. // async handleFile (e) {
  192. // let inputfile
  193. // if (e.constructor === File) {
  194. // inputfile = e
  195. // } else {
  196. // inputfile = e.target.files[0]
  197. // }
  198. // try {
  199. // let fileInfo = await this.preHandleFile(inputfile)
  200. // let opt = { res: fileInfo.res }
  201. // if (this.group.members[this.userId]) {
  202. // let createTime = Date.now()
  203. // this.addChatItem({
  204. // content: fileInfo.preview || '',
  205. // from: this.userId,
  206. // hash: `${createTime}`,
  207. // msg_type: fileInfo.type,
  208. // timestamp: createTime,
  209. // res: fileInfo.res,
  210. // loading: true,
  211. // createTime
  212. // })
  213. // opt.createTime = createTime
  214. // }
  215. // this.doSendFile(opt)
  216. // setTimeout(() => {
  217. // this.$refs.inputFile.value = null
  218. // this.$emit('toBottom')
  219. // }, 100)
  220. // } catch (error) {
  221. // Message({
  222. // message: '上传文件大小限制:音频2M以内,视频3M以内',
  223. // type: 'warning'
  224. // })
  225. // }
  226. // },
  227. initDrop (e) {
  228. e.preventDefault()
  229. let files = Array.from(e.dataTransfer.files)
  230. files.forEach(file => this.handleFile(file))
  231. },
  232. initDragOver (e) {
  233. e.preventDefault()
  234. },
  235. initPaste (event) {
  236. var items = (event.clipboardData || window.clipboardData).items
  237. if (items && items.length) {
  238. Array.from(items).forEach(item => {
  239. let file = item.getAsFile()
  240. if (file) {
  241. this.handleFile(file)
  242. }
  243. })
  244. }
  245. }
  246. }
  247. }
  248. </script>
  249. <style lang="scss" scoped>
  250. .box-ft {
  251. height: 180px;
  252. border-top: 1px solid #d6d6d6;
  253. padding-right: 16px;
  254. position: relative;
  255. background: #eeeeee;
  256. }
  257. .toolbar {
  258. padding: 10px 20px;
  259. font-size: 0;
  260. background: #eee;
  261. i {
  262. color: #333333;
  263. font-size: 18px;
  264. margin-right: 15px;
  265. vertical-align: middle;
  266. cursor: pointer;
  267. }
  268. }
  269. .send-action {
  270. text-align: right;
  271. }
  272. .look-icon {
  273. background: url("../../assets/icon-face.png") no-repeat;
  274. background-size: 100%;
  275. width: 20px;
  276. height: 20px;
  277. display: inline-block;
  278. vertical-align: middle;
  279. cursor: pointer;
  280. }
  281. .file-icon {
  282. background: url("../../assets/icon-file.png") no-repeat;
  283. background-size: 100%;
  284. width: 19px;
  285. height: 18px;
  286. display: inline-block;
  287. vertical-align: middle;
  288. position: relative;
  289. input[type="file"] {
  290. cursor: pointer;
  291. opacity: 0;
  292. position: absolute;
  293. top: 0;
  294. left: 0;
  295. z-index: 1;
  296. width: 100%;
  297. height: 100%;
  298. }
  299. }
  300. .send-action {
  301. color: #bababa;
  302. font-size: 12px;
  303. button {
  304. margin-left: 10px;
  305. }
  306. }
  307. .input-wrap {
  308. textarea {
  309. display: block;
  310. background-color: #eee;
  311. width: 100%;
  312. box-sizing: border-box;
  313. resize: none;
  314. height: 90px;
  315. line-height: 1.4;
  316. padding-left: 20px;
  317. outline: none;
  318. border: 0;
  319. font-size: 14px;
  320. margin-bottom: 10px;
  321. }
  322. }
  323. .icon-packet{
  324. display: inline-block;
  325. margin-left: 20px;
  326. vertical-align: middle;
  327. background: url('../../assets/icon-packet.png') center center no-repeat;
  328. background-size: 100%;
  329. width: 21px;
  330. height: 21px;
  331. }
  332. </style>