@tencentcloud/ai-desk-customer-vue 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (351) hide show
  1. package/.code.yml +17 -0
  2. package/.eslintignore +6 -0
  3. package/.stylelintrc.json +40 -0
  4. package/CHANGELOG.md +5 -0
  5. package/README.md +12 -0
  6. package/adapter-vue-web.ts +73 -0
  7. package/adapter-vue.ts +10 -0
  8. package/assets/audio-before-delete.svg +4 -0
  9. package/assets/audio-blue.png +0 -0
  10. package/assets/audio-bubble-blue.svg +3 -0
  11. package/assets/audio-bubble-red.svg +3 -0
  12. package/assets/audio-delete.svg +10 -0
  13. package/assets/audio.svg +6 -0
  14. package/assets/back.svg +16 -0
  15. package/assets/background_mobile.png +0 -0
  16. package/assets/camera-uni.png +0 -0
  17. package/assets/close-quote-icon.svg +3 -0
  18. package/assets/customer_avatar.png +0 -0
  19. package/assets/customer_avatar_mobile.png +0 -0
  20. package/assets/dialog-close.png +0 -0
  21. package/assets/double-arrow.svg +1 -0
  22. package/assets/download.svg +6 -0
  23. package/assets/emoji.png +0 -0
  24. package/assets/face-uni.png +0 -0
  25. package/assets/face.png +0 -0
  26. package/assets/file-h5.png +0 -0
  27. package/assets/files.png +0 -0
  28. package/assets/form-dialog-bg.png +0 -0
  29. package/assets/icon-arrow-left.svg +7 -0
  30. package/assets/icon-close.svg +6 -0
  31. package/assets/iconRight.svg +3 -0
  32. package/assets/icon_form.png +0 -0
  33. package/assets/icon_form_filled.png +0 -0
  34. package/assets/icon_question.png +0 -0
  35. package/assets/icon_refresh.png +0 -0
  36. package/assets/icon_success.png +0 -0
  37. package/assets/imRobotGuess.svg +4 -0
  38. package/assets/image-uni.png +0 -0
  39. package/assets/image.png +0 -0
  40. package/assets/keyboard_icon.png +0 -0
  41. package/assets/loading.png +0 -0
  42. package/assets/more-uni.png +0 -0
  43. package/assets/more_tools.png +0 -0
  44. package/assets/msg-audio.svg +1 -0
  45. package/assets/msg-copy.svg +30 -0
  46. package/assets/msg-del.svg +33 -0
  47. package/assets/msg-quote.svg +8 -0
  48. package/assets/msg-revoke.svg +29 -0
  49. package/assets/radio-check.png +0 -0
  50. package/assets/radio-uncheck.png +0 -0
  51. package/assets/radio.svg +6 -0
  52. package/assets/refresh.svg +4 -0
  53. package/assets/rotate-left.svg +7 -0
  54. package/assets/rotate-right.svg +7 -0
  55. package/assets/star.png +0 -0
  56. package/assets/starLine.png +0 -0
  57. package/assets/translate.svg +12 -0
  58. package/assets/video-play.png +0 -0
  59. package/assets/video-uni.png +0 -0
  60. package/assets/video.png +0 -0
  61. package/assets/zoom-in.svg +9 -0
  62. package/assets/zoom-out.svg +9 -0
  63. package/components/CustomerServiceChat/chat-header/index-web.vue +141 -0
  64. package/components/CustomerServiceChat/emoji-config/custom-emoji.ts +15 -0
  65. package/components/CustomerServiceChat/emoji-config/default-emoji.ts +114 -0
  66. package/components/CustomerServiceChat/emoji-config/index.ts +140 -0
  67. package/components/CustomerServiceChat/emoji-config/locales/en.ts +66 -0
  68. package/components/CustomerServiceChat/emoji-config/locales/zh_cn.ts +66 -0
  69. package/components/CustomerServiceChat/index-web.vue +250 -0
  70. package/components/CustomerServiceChat/message-input/index-web.vue +214 -0
  71. package/components/CustomerServiceChat/message-input/index.ts +2 -0
  72. package/components/CustomerServiceChat/message-input/message-input-button.vue +95 -0
  73. package/components/CustomerServiceChat/message-input/message-input-editor-web.vue +884 -0
  74. package/components/CustomerServiceChat/message-input/message-input-file-web.ts +38 -0
  75. package/components/CustomerServiceChat/message-input/message-input-quote/index.vue +204 -0
  76. package/components/CustomerServiceChat/message-input-toolbar/emoji-dialog-mobile/emoji-dialog-mobile.vue +145 -0
  77. package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/emoji-picker-dialog.vue +180 -0
  78. package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/index.ts +2 -0
  79. package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/index.vue +90 -0
  80. package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/style/h5.scss +26 -0
  81. package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/style/index.scss +4 -0
  82. package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/style/web.scss +55 -0
  83. package/components/CustomerServiceChat/message-input-toolbar/file-upload/index.ts +2 -0
  84. package/components/CustomerServiceChat/message-input-toolbar/file-upload/index.vue +77 -0
  85. package/components/CustomerServiceChat/message-input-toolbar/image-upload/index.ts +2 -0
  86. package/components/CustomerServiceChat/message-input-toolbar/image-upload/index.vue +185 -0
  87. package/components/CustomerServiceChat/message-input-toolbar/index-web.vue +191 -0
  88. package/components/CustomerServiceChat/message-input-toolbar/index.ts +2 -0
  89. package/components/CustomerServiceChat/message-input-toolbar/style/uni.scss +111 -0
  90. package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/index.vue +149 -0
  91. package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/color.scss +6 -0
  92. package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/h5.scss +20 -0
  93. package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/index.scss +5 -0
  94. package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/uni.scss +36 -0
  95. package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/web.scss +19 -0
  96. package/components/CustomerServiceChat/message-input-toolbar/video-upload/index.ts +2 -0
  97. package/components/CustomerServiceChat/message-input-toolbar/video-upload/index.vue +146 -0
  98. package/components/CustomerServiceChat/message-list/index-web.vue +712 -0
  99. package/components/CustomerServiceChat/message-list/link/index.ts +23 -0
  100. package/components/CustomerServiceChat/message-list/message-elements/message-audio-web.vue +223 -0
  101. package/components/CustomerServiceChat/message-list/message-elements/message-bubble-web.vue +504 -0
  102. package/components/CustomerServiceChat/message-list/message-elements/message-custom.vue +5 -0
  103. package/components/CustomerServiceChat/message-list/message-elements/message-face.vue +45 -0
  104. package/components/CustomerServiceChat/message-list/message-elements/message-file.vue +151 -0
  105. package/components/CustomerServiceChat/message-list/message-elements/message-image-web.vue +97 -0
  106. package/components/CustomerServiceChat/message-list/message-elements/message-location.vue +34 -0
  107. package/components/CustomerServiceChat/message-list/message-elements/message-quote/index-web.vue +286 -0
  108. package/components/CustomerServiceChat/message-list/message-elements/message-quote/interface.ts +60 -0
  109. package/components/CustomerServiceChat/message-list/message-elements/message-record/index.vue +139 -0
  110. package/components/CustomerServiceChat/message-list/message-elements/message-text.vue +94 -0
  111. package/components/CustomerServiceChat/message-list/message-elements/message-timestamp.vue +76 -0
  112. package/components/CustomerServiceChat/message-list/message-elements/message-video-web.vue +319 -0
  113. package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/index.ts +9 -0
  114. package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/message-customer/index.ts +5 -0
  115. package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/message-customer/message-customer-service.vue +22 -0
  116. package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/message-plugin-layout-web.vue +133 -0
  117. package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/message-plugin-web.vue +83 -0
  118. package/components/CustomerServiceChat/message-list/message-elements/read-status/index.vue +193 -0
  119. package/components/CustomerServiceChat/message-list/message-elements/simple-message-list/index.vue +462 -0
  120. package/components/CustomerServiceChat/message-list/message-elements/simple-message-list/message-container.vue +105 -0
  121. package/components/CustomerServiceChat/message-list/message-elements/video-play.vue +59 -0
  122. package/components/CustomerServiceChat/message-list/message-tool/index-web.vue +312 -0
  123. package/components/CustomerServiceChat/message-list/message-tool/message-revoked.vue +63 -0
  124. package/components/CustomerServiceChat/message-list/scroll-button/index.vue +201 -0
  125. package/components/CustomerServiceChat/message-list/style/color.scss +32 -0
  126. package/components/CustomerServiceChat/message-list/style/h5.scss +16 -0
  127. package/components/CustomerServiceChat/message-list/style/index.scss +11 -0
  128. package/components/CustomerServiceChat/message-list/style/web.scss +180 -0
  129. package/components/CustomerServiceChat/style/common.scss +59 -0
  130. package/components/CustomerServiceChat/style/h5.scss +51 -0
  131. package/components/CustomerServiceChat/style/index.scss +12 -0
  132. package/components/CustomerServiceChat/style/uni.scss +13 -0
  133. package/components/CustomerServiceChat/style/web.scss +46 -0
  134. package/components/CustomerServiceChat/style/wx.scss +5 -0
  135. package/components/CustomerServiceChat/utils/conversationDraft.ts +86 -0
  136. package/components/CustomerServiceChat/utils/sendMessage.ts +140 -0
  137. package/components/common/Avatar/index.vue +148 -0
  138. package/components/common/BottomPopup/index.ts +3 -0
  139. package/components/common/BottomPopup/index.vue +160 -0
  140. package/components/common/BottomPopup/style/h5.scss +62 -0
  141. package/components/common/BottomPopup/style/index.scss +3 -0
  142. package/components/common/BottomPopup/style/modal.scss +5 -0
  143. package/components/common/Dialog/index.ts +3 -0
  144. package/components/common/Dialog/index.vue +120 -0
  145. package/components/common/Dialog/style/color.scss +43 -0
  146. package/components/common/Dialog/style/dialog.scss +4 -0
  147. package/components/common/Dialog/style/h5.scss +56 -0
  148. package/components/common/Dialog/style/web.scss +61 -0
  149. package/components/common/Drawer/index.vue +164 -0
  150. package/components/common/Icon.vue +83 -0
  151. package/components/common/ImagePreviewer/image-item-web.vue +42 -0
  152. package/components/common/ImagePreviewer/index-web.vue +682 -0
  153. package/components/common/ImagePreviewer/index.ts +3 -0
  154. package/components/common/Overlay/index.vue +126 -0
  155. package/components/common/ProgressMessage/index.vue +95 -0
  156. package/components/common/RadioSelect/index.vue +59 -0
  157. package/components/common/RichText/LICENSE +21 -0
  158. package/components/common/RichText/README.md +244 -0
  159. package/components/common/RichText/dist/mp-alipay/index.acss +1 -0
  160. package/components/common/RichText/dist/mp-alipay/index.axml +1 -0
  161. package/components/common/RichText/dist/mp-alipay/index.js +8 -0
  162. package/components/common/RichText/dist/mp-alipay/index.json +1 -0
  163. package/components/common/RichText/dist/mp-alipay/node/node.acss +1 -0
  164. package/components/common/RichText/dist/mp-alipay/node/node.axml +1 -0
  165. package/components/common/RichText/dist/mp-alipay/node/node.js +1 -0
  166. package/components/common/RichText/dist/mp-alipay/node/node.json +1 -0
  167. package/components/common/RichText/dist/mp-alipay/parser.js +1 -0
  168. package/components/common/RichText/dist/mp-baidu/index.css +1 -0
  169. package/components/common/RichText/dist/mp-baidu/index.js +8 -0
  170. package/components/common/RichText/dist/mp-baidu/index.json +1 -0
  171. package/components/common/RichText/dist/mp-baidu/index.swan +1 -0
  172. package/components/common/RichText/dist/mp-baidu/node/node.css +1 -0
  173. package/components/common/RichText/dist/mp-baidu/node/node.js +1 -0
  174. package/components/common/RichText/dist/mp-baidu/node/node.json +1 -0
  175. package/components/common/RichText/dist/mp-baidu/node/node.swan +1 -0
  176. package/components/common/RichText/dist/mp-baidu/parser.js +1 -0
  177. package/components/common/RichText/dist/mp-qq/index.js +8 -0
  178. package/components/common/RichText/dist/mp-qq/index.json +1 -0
  179. package/components/common/RichText/dist/mp-qq/index.qml +1 -0
  180. package/components/common/RichText/dist/mp-qq/index.qss +1 -0
  181. package/components/common/RichText/dist/mp-qq/node/node.js +1 -0
  182. package/components/common/RichText/dist/mp-qq/node/node.json +1 -0
  183. package/components/common/RichText/dist/mp-qq/node/node.qml +1 -0
  184. package/components/common/RichText/dist/mp-qq/node/node.qss +1 -0
  185. package/components/common/RichText/dist/mp-qq/parser.js +1 -0
  186. package/components/common/RichText/dist/mp-toutiao/index.js +8 -0
  187. package/components/common/RichText/dist/mp-toutiao/index.json +1 -0
  188. package/components/common/RichText/dist/mp-toutiao/index.ttml +1 -0
  189. package/components/common/RichText/dist/mp-toutiao/index.ttss +1 -0
  190. package/components/common/RichText/dist/mp-toutiao/node/node.js +1 -0
  191. package/components/common/RichText/dist/mp-toutiao/node/node.json +1 -0
  192. package/components/common/RichText/dist/mp-toutiao/node/node.ttml +1 -0
  193. package/components/common/RichText/dist/mp-toutiao/node/node.ttss +1 -0
  194. package/components/common/RichText/dist/mp-toutiao/parser.js +1 -0
  195. package/components/common/RichText/dist/mp-weixin/index.js +8 -0
  196. package/components/common/RichText/dist/mp-weixin/index.json +1 -0
  197. package/components/common/RichText/dist/mp-weixin/index.wxml +1 -0
  198. package/components/common/RichText/dist/mp-weixin/index.wxss +1 -0
  199. package/components/common/RichText/dist/mp-weixin/node/node.js +1 -0
  200. package/components/common/RichText/dist/mp-weixin/node/node.json +1 -0
  201. package/components/common/RichText/dist/mp-weixin/node/node.wxml +1 -0
  202. package/components/common/RichText/dist/mp-weixin/node/node.wxss +1 -0
  203. package/components/common/RichText/dist/mp-weixin/parser.js +1 -0
  204. package/components/common/RichText/dist/uni-app/components/mp-html/mp-html.vue +498 -0
  205. package/components/common/RichText/dist/uni-app/components/mp-html/node/node.vue +587 -0
  206. package/components/common/RichText/dist/uni-app/components/mp-html/parser.js +1393 -0
  207. package/components/common/RichText/dist/uni-app/static/app-plus/mp-html/js/handler.js +1 -0
  208. package/components/common/RichText/dist/uni-app/static/app-plus/mp-html/js/uni.webview.min.js +1 -0
  209. package/components/common/RichText/dist/uni-app/static/app-plus/mp-html/local.html +1 -0
  210. package/components/common/RichText/docs/.nojekyll +0 -0
  211. package/components/common/RichText/docs/index.html +50 -0
  212. package/components/common/RichText/docs/lib/docsify.min.js +1 -0
  213. package/components/common/RichText/docs/lib/prism-bash.min.js +1 -0
  214. package/components/common/RichText/docs/lib/search.min.js +1 -0
  215. package/components/common/RichText/docs/lib/vue.css +858 -0
  216. package/components/common/RichText/gulpfile.js +113 -0
  217. package/components/common/RichText/lint.js +63 -0
  218. package/components/common/RichText/package.json +74 -0
  219. package/components/common/RichText/plugins/README.md +2 -0
  220. package/components/common/RichText/plugins/audio/README.md +25 -0
  221. package/components/common/RichText/plugins/audio/build.js +11 -0
  222. package/components/common/RichText/plugins/audio/context.js +7 -0
  223. package/components/common/RichText/plugins/audio/index.js +34 -0
  224. package/components/common/RichText/plugins/audio/miniprogram/audio.js +189 -0
  225. package/components/common/RichText/plugins/audio/miniprogram/audio.json +3 -0
  226. package/components/common/RichText/plugins/audio/miniprogram/audio.wxml +17 -0
  227. package/components/common/RichText/plugins/audio/miniprogram/audio.wxss +127 -0
  228. package/components/common/RichText/plugins/audio/miniprogram/build.js +3 -0
  229. package/components/common/RichText/plugins/audio/uni-app/audio.vue +269 -0
  230. package/components/common/RichText/plugins/audio/uni-app/build.js +3 -0
  231. package/components/common/RichText/plugins/card/README.md +30 -0
  232. package/components/common/RichText/plugins/card/build.js +14 -0
  233. package/components/common/RichText/plugins/card/index.js +7 -0
  234. package/components/common/RichText/plugins/card/miniprogram/build.js +3 -0
  235. package/components/common/RichText/plugins/card/miniprogram/card.js +26 -0
  236. package/components/common/RichText/plugins/card/miniprogram/card.json +3 -0
  237. package/components/common/RichText/plugins/card/miniprogram/card.wxml +9 -0
  238. package/components/common/RichText/plugins/card/miniprogram/card.wxss +55 -0
  239. package/components/common/RichText/plugins/card/uni-app/build.js +3 -0
  240. package/components/common/RichText/plugins/card/uni-app/card.vue +122 -0
  241. package/components/common/RichText/plugins/editable/README.md +137 -0
  242. package/components/common/RichText/plugins/editable/config.js +15 -0
  243. package/components/common/RichText/plugins/editable/miniprogram/build.js +813 -0
  244. package/components/common/RichText/plugins/editable/miniprogram/index.js +551 -0
  245. package/components/common/RichText/plugins/editable/uni-app/build.js +744 -0
  246. package/components/common/RichText/plugins/editable/uni-app/index.js +553 -0
  247. package/components/common/RichText/plugins/emoji/README.md +15 -0
  248. package/components/common/RichText/plugins/emoji/index.js +203 -0
  249. package/components/common/RichText/plugins/highlight/README.md +26 -0
  250. package/components/common/RichText/plugins/highlight/config.js +5 -0
  251. package/components/common/RichText/plugins/highlight/index.js +96 -0
  252. package/components/common/RichText/plugins/highlight/miniprogram/build.js +88 -0
  253. package/components/common/RichText/plugins/highlight/prism.css +125 -0
  254. package/components/common/RichText/plugins/highlight/prism.min.js +7 -0
  255. package/components/common/RichText/plugins/highlight/uni-app/build.js +88 -0
  256. package/components/common/RichText/plugins/img-cache/README.md +24 -0
  257. package/components/common/RichText/plugins/img-cache/build.js +16 -0
  258. package/components/common/RichText/plugins/img-cache/index.js +138 -0
  259. package/components/common/RichText/plugins/latex/README.md +16 -0
  260. package/components/common/RichText/plugins/latex/build.js +14 -0
  261. package/components/common/RichText/plugins/latex/index.js +77 -0
  262. package/components/common/RichText/plugins/latex/katex.css +1070 -0
  263. package/components/common/RichText/plugins/latex/katex.min.js +1 -0
  264. package/components/common/RichText/plugins/markdown/README.md +17 -0
  265. package/components/common/RichText/plugins/markdown/index.js +34 -0
  266. package/components/common/RichText/plugins/markdown/marked.min.js +6 -0
  267. package/components/common/RichText/plugins/markdown/miniprogram/build.js +70 -0
  268. package/components/common/RichText/plugins/markdown/uni-app/build.js +68 -0
  269. package/components/common/RichText/plugins/search/README.md +46 -0
  270. package/components/common/RichText/plugins/search/miniprogram/index.js +137 -0
  271. package/components/common/RichText/plugins/search/uni-app/index.js +132 -0
  272. package/components/common/RichText/plugins/style/README.md +30 -0
  273. package/components/common/RichText/plugins/style/index.js +129 -0
  274. package/components/common/RichText/plugins/style/parser.js +175 -0
  275. package/components/common/RichText/plugins/template/README.md +2 -0
  276. package/components/common/RichText/plugins/template/build.js +65 -0
  277. package/components/common/RichText/plugins/template/index.js +67 -0
  278. package/components/common/RichText/plugins/txv-video/README.md +18 -0
  279. package/components/common/RichText/plugins/txv-video/build.js +3 -0
  280. package/components/common/RichText/plugins/txv-video/index.js +46 -0
  281. package/components/common/RichText/plugins/txv-video/miniprogram/build.js +6 -0
  282. package/components/common/RichText/plugins/txv-video/uni-app/build.js +3 -0
  283. package/components/common/RichText/src/miniprogram/index.js +396 -0
  284. package/components/common/RichText/src/miniprogram/index.json +6 -0
  285. package/components/common/RichText/src/miniprogram/index.wxml +7 -0
  286. package/components/common/RichText/src/miniprogram/index.wxss +13 -0
  287. package/components/common/RichText/src/miniprogram/node/node.js +247 -0
  288. package/components/common/RichText/src/miniprogram/node/node.json +6 -0
  289. package/components/common/RichText/src/miniprogram/node/node.wxml +112 -0
  290. package/components/common/RichText/src/miniprogram/node/node.wxss +164 -0
  291. package/components/common/RichText/src/miniprogram/parser.js +1269 -0
  292. package/components/common/RichText/src/uni-app/components/mp-html/mp-html.vue +498 -0
  293. package/components/common/RichText/src/uni-app/components/mp-html/node/node.vue +585 -0
  294. package/components/common/RichText/src/uni-app/components/mp-html/parser.js +1393 -0
  295. package/components/common/RichText/src/uni-app/static/app-plus/mp-html/js/handler.js +254 -0
  296. package/components/common/RichText/src/uni-app/static/app-plus/mp-html/js/uni.webview.min.js +1 -0
  297. package/components/common/RichText/src/uni-app/static/app-plus/mp-html/local.html +33 -0
  298. package/components/common/RichText/tools/config.js +82 -0
  299. package/components/common/RichText/tools/converter.js +205 -0
  300. package/components/common/RichText/tools/ifdef.js +115 -0
  301. package/components/common/RichText/tools/minifier.js +40 -0
  302. package/components/common/RichText/tools/plugin.js +248 -0
  303. package/components/common/Toast/index-web.ts +122 -0
  304. package/components/common/Toast/index-web.vue +178 -0
  305. package/components/common/Toast/type.ts +8 -0
  306. package/components/common/common.scss +59 -0
  307. package/components/customer-icon.vue +56 -0
  308. package/components/message-branch.vue +120 -0
  309. package/components/message-customer-service.vue +114 -0
  310. package/components/message-form/form-branch.vue +68 -0
  311. package/components/message-form/form-input.vue +242 -0
  312. package/components/message-form/index.vue +80 -0
  313. package/components/message-multi-branch/branch-pc.vue +79 -0
  314. package/components/message-multi-branch/index.vue +60 -0
  315. package/components/message-multi-form/component-mobile/form-popup.vue +37 -0
  316. package/components/message-multi-form/component-mobile/input-mobile.vue +102 -0
  317. package/components/message-multi-form/component-mobile/label-mobile.vue +32 -0
  318. package/components/message-multi-form/component-mobile/radios-mobile.vue +161 -0
  319. package/components/message-multi-form/component-pc/input-pc.vue +93 -0
  320. package/components/message-multi-form/component-pc/label-pc.vue +33 -0
  321. package/components/message-multi-form/component-pc/radio-pc.vue +98 -0
  322. package/components/message-multi-form/form-mobile.vue +385 -0
  323. package/components/message-multi-form/form-pc.vue +184 -0
  324. package/components/message-multi-form/index.vue +61 -0
  325. package/components/message-product-card.vue +129 -0
  326. package/components/message-rating/index.vue +56 -0
  327. package/components/message-rating/message-rating-number.vue +247 -0
  328. package/components/message-rating/message-rating-star.vue +237 -0
  329. package/components/message-rich-text.vue +155 -0
  330. package/components/message-robot-welcome.vue +181 -0
  331. package/components/message-stream.vue +109 -0
  332. package/constant.ts +122 -0
  333. package/excluded-list.txt +6 -0
  334. package/index.ts +30 -0
  335. package/index.vue +60 -0
  336. package/interface.ts +176 -0
  337. package/logger/index.ts +12 -0
  338. package/logger/main.ts +120 -0
  339. package/package.json +62 -0
  340. package/script/fileCopy.js +60 -0
  341. package/script/syncVersion.js +35 -0
  342. package/server.ts +128 -0
  343. package/styles/common.scss +116 -0
  344. package/tsconfig.json +34 -0
  345. package/typings.d.ts +20 -0
  346. package/utils/chatStorage.ts +70 -0
  347. package/utils/copy-web.ts +141 -0
  348. package/utils/enableSampleTaskStatus.ts +8 -0
  349. package/utils/env.ts +15 -0
  350. package/utils/index.ts +59 -0
  351. package/utils/utils.ts +162 -0
@@ -0,0 +1,396 @@
1
+ /*!
2
+ * mp-html v2.5.0
3
+ * https://github.com/jin-yufeng/mp-html
4
+ *
5
+ * Released under the MIT license
6
+ * Author: Jin Yufeng
7
+ */
8
+ const Parser = require('./parser')
9
+ const plugins = []
10
+
11
+ Component({
12
+ data: {
13
+ nodes: []
14
+ },
15
+ properties: {
16
+ /**
17
+ * @description 容器的样式
18
+ * @type {String}
19
+ */
20
+ containerStyle: String,
21
+
22
+ /**
23
+ * @description 用于渲染的 html 字符串
24
+ * @type {String}
25
+ */
26
+ content: {
27
+ type: String,
28
+ value: '',
29
+ observer (content) {
30
+ this.setContent(content)
31
+ }
32
+ },
33
+
34
+ /**
35
+ * @description 是否允许外部链接被点击时自动复制
36
+ * @type {Boolean}
37
+ * @default true
38
+ */
39
+ copyLink: {
40
+ type: Boolean,
41
+ value: true
42
+ },
43
+
44
+ /**
45
+ * @description 主域名,用于拼接链接
46
+ * @type {String}
47
+ */
48
+ domain: String,
49
+
50
+ /**
51
+ * @description 图片出错时的占位图链接
52
+ * @type {String}
53
+ */
54
+ errorImg: String,
55
+
56
+ /**
57
+ * @description 是否开启图片懒加载
58
+ * @type {Boolean}
59
+ * @default false
60
+ */
61
+ lazyLoad: Boolean,
62
+
63
+ /**
64
+ * @description 图片加载过程中的占位图链接
65
+ * @type {String}
66
+ */
67
+ loadingImg: String,
68
+
69
+ /**
70
+ * @description 是否在播放一个视频时自动暂停其他视频
71
+ * @type {Boolean}
72
+ * @default true
73
+ */
74
+ pauseVideo: {
75
+ type: Boolean,
76
+ value: true
77
+ },
78
+
79
+ /**
80
+ * @description 是否允许图片被点击时自动预览
81
+ * @type {Boolean | String}
82
+ * @default true
83
+ */
84
+ previewImg: {
85
+ type: null,
86
+ value: true
87
+ },
88
+
89
+ /**
90
+ * @description 是否给每个表格添加一个滚动层使其能单独横向滚动
91
+ * @type {Boolean}
92
+ * @default false
93
+ */
94
+ scrollTable: Boolean,
95
+
96
+ /**
97
+ * @description 是否开启长按复制
98
+ * @type {Boolean | String}
99
+ * @default false
100
+ */
101
+ selectable: null,
102
+
103
+ /**
104
+ * @description 是否将 title 标签的内容设置到页面标题
105
+ * @type {Boolean}
106
+ * @default true
107
+ */
108
+ setTitle: {
109
+ type: Boolean,
110
+ value: true
111
+ },
112
+
113
+ /**
114
+ * @description 是否允许图片被长按时显示菜单
115
+ * @type {Boolean}
116
+ * @default true
117
+ */
118
+ showImgMenu: {
119
+ type: Boolean,
120
+ value: true
121
+ },
122
+
123
+ /**
124
+ * @description 标签的默认样式
125
+ * @type {Object}
126
+ */
127
+ tagStyle: Object,
128
+
129
+ /**
130
+ * @description 是否使用锚点链接
131
+ * @type {Boolean | Number}
132
+ * @default false
133
+ */
134
+ useAnchor: null
135
+ },
136
+
137
+ created () {
138
+ this.plugins = []
139
+ for (let i = plugins.length; i--;) {
140
+ this.plugins.push(new plugins[i](this))
141
+ }
142
+
143
+ // #ifdef MP-ALIPAY
144
+ if (this.properties.content) {
145
+ this.setContent(this.properties.content)
146
+ }
147
+ // #endif
148
+ },
149
+
150
+ // #ifdef MP-ALIPAY
151
+ didUpdate (e) {
152
+ if (e.content !== this.properties.content) {
153
+ this.setContent(this.properties.content)
154
+ }
155
+ },
156
+ // #endif
157
+
158
+ detached () {
159
+ // 注销插件
160
+ this._hook('onDetached')
161
+ },
162
+
163
+ methods: {
164
+ /**
165
+ * @description 将锚点跳转的范围限定在一个 scroll-view 内
166
+ * @param {Object} page scroll-view 所在页面的示例
167
+ * @param {String} selector scroll-view 的选择器
168
+ * @param {String} scrollTop scroll-view scroll-top 属性绑定的变量名
169
+ */
170
+ in (page, selector, scrollTop) {
171
+ if (page && selector && scrollTop) {
172
+ this._in = {
173
+ page,
174
+ selector,
175
+ scrollTop
176
+ }
177
+ }
178
+ },
179
+
180
+ /**
181
+ * @description 锚点跳转
182
+ * @param {String} id 要跳转的锚点 id
183
+ * @param {Number} offset 跳转位置的偏移量
184
+ * @returns {Promise}
185
+ */
186
+ navigateTo (id, offset) {
187
+ return new Promise((resolve, reject) => {
188
+ if (!this.properties.useAnchor) {
189
+ reject(Error('Anchor is disabled'))
190
+ return
191
+ }
192
+ // 跨组件选择器
193
+ const deep =
194
+ // #ifdef MP-WEIXIN || MP-QQ || MP-TOUTIAO
195
+ '>>>'
196
+ // #endif
197
+ // #ifdef MP-BAIDU || MP-ALIPAY
198
+ ' ' // eslint-disable-line
199
+ // #endif
200
+ const selector = wx.createSelectorQuery()
201
+ // #ifndef MP-ALIPAY
202
+ .in(this._in ? this._in.page : this)
203
+ // #endif
204
+ .select((this._in ? this._in.selector : '._root') + (id ? `${deep}#${id}` : '')).boundingClientRect()
205
+ if (this._in) {
206
+ selector.select(this._in.selector).scrollOffset()
207
+ .select(this._in.selector).boundingClientRect()
208
+ } else {
209
+ // 获取 scroll-view 的位置和滚动距离
210
+ selector.selectViewport().scrollOffset() // 获取窗口的滚动距离
211
+ }
212
+ selector.exec(res => {
213
+ if (!res[0]) {
214
+ reject(Error('Label not found'))
215
+ return
216
+ }
217
+ const scrollTop = res[1].scrollTop + res[0].top - (res[2] ? res[2].top : 0) + (offset || parseInt(this.properties.useAnchor) || 0)
218
+ if (this._in) {
219
+ // scroll-view 跳转
220
+ this._in.page.setData({
221
+ [this._in.scrollTop]: scrollTop
222
+ })
223
+ } else {
224
+ // 页面跳转
225
+ wx.pageScrollTo({
226
+ scrollTop,
227
+ duration: 300
228
+ })
229
+ }
230
+ resolve()
231
+ })
232
+ })
233
+ },
234
+
235
+ /**
236
+ * @description 获取文本内容
237
+ * @returns {String}
238
+ */
239
+ getText (nodes) {
240
+ let text = '';
241
+ (function traversal (nodes) {
242
+ for (let i = 0; i < nodes.length; i++) {
243
+ const node = nodes[i]
244
+ if (node.type === 'text') {
245
+ text += node.text.replace(/&amp;/g, '&')
246
+ } else if (node.name === 'br') {
247
+ text += '\n'
248
+ } else {
249
+ // 块级标签前后加换行
250
+ const isBlock = node.name === 'p' || node.name === 'div' || node.name === 'tr' || node.name === 'li' || (node.name[0] === 'h' && node.name[1] > '0' && node.name[1] < '7')
251
+ if (isBlock && text && text[text.length - 1] !== '\n') {
252
+ text += '\n'
253
+ }
254
+ // 递归获取子节点的文本
255
+ if (node.children) {
256
+ traversal(node.children)
257
+ }
258
+ if (isBlock && text[text.length - 1] !== '\n') {
259
+ text += '\n'
260
+ } else if (node.name === 'td' || node.name === 'th') {
261
+ text += '\t'
262
+ }
263
+ }
264
+ }
265
+ })(nodes || this.data.nodes)
266
+ return text
267
+ },
268
+
269
+ /**
270
+ * @description 获取内容大小
271
+ * @returns {Promise}
272
+ */
273
+ getRect () {
274
+ return new Promise((resolve, reject) => {
275
+ wx.createSelectorQuery()
276
+ // #ifndef MP-ALIPAY
277
+ .in(this)
278
+ // #endif
279
+ .select('._root').boundingClientRect().exec(res => res[0] ? resolve(res[0]) : reject(Error('Root label not found')))
280
+ })
281
+ },
282
+
283
+ /**
284
+ * @description 暂停播放媒体
285
+ */
286
+ pauseMedia () {
287
+ for (let i = (this._videos || []).length; i--;) {
288
+ this._videos[i].pause()
289
+ }
290
+ },
291
+
292
+ /**
293
+ * @description 设置媒体播放速率
294
+ * @param {Number} rate 播放速率
295
+ */
296
+ setPlaybackRate (rate) {
297
+ this.playbackRate = rate
298
+ for (let i = (this._videos || []).length; i--;) {
299
+ this._videos[i].playbackRate(rate)
300
+ }
301
+ },
302
+
303
+ /**
304
+ * @description 设置富文本内容
305
+ * @param {string} content 要渲染的 html 字符串
306
+ * @param {boolean} append 是否在尾部追加
307
+ */
308
+ setContent (content, append) {
309
+ if (!this.imgList || !append) {
310
+ this.imgList = []
311
+ }
312
+ this._videos = []
313
+
314
+ const data = {}
315
+ const nodes = new Parser(this).parse(content)
316
+ // 尾部追加内容
317
+ if (append) {
318
+ for (let i = this.data.nodes.length, j = nodes.length; j--;) {
319
+ data[`nodes[${i + j}]`] = nodes[j]
320
+ }
321
+ } else {
322
+ data.nodes = nodes
323
+ }
324
+
325
+ this.setData(data,
326
+ // #ifndef MP-TOUTIAO
327
+ () => {
328
+ this._hook('onLoad')
329
+ this.triggerEvent('load')
330
+ }
331
+ // #endif
332
+ )
333
+
334
+ // #ifdef MP-TOUTIAO
335
+ this.selectComponent('#_root', child => {
336
+ child.root = this
337
+ this._hook('onLoad')
338
+ this.triggerEvent('load')
339
+ })
340
+ // #endif
341
+
342
+ if (this.properties.lazyLoad || this.imgList._unloadimgs < this.imgList.length / 2) {
343
+ // 设置懒加载,每 350ms 获取高度,不变则认为加载完毕
344
+ let height = 0
345
+ const callback = rect => {
346
+ if (!rect || !rect.height) rect = {}
347
+ // 350ms 总高度无变化就触发 ready 事件
348
+ if (rect.height === height) {
349
+ this.triggerEvent('ready', rect)
350
+ } else {
351
+ height = rect.height
352
+ setTimeout(() => {
353
+ this.getRect().then(callback).catch(callback)
354
+ }, 350)
355
+ }
356
+ }
357
+ this.getRect().then(callback).catch(callback)
358
+ } else {
359
+ // 未设置懒加载,等待所有图片加载完毕
360
+ if (!this.imgList._unloadimgs) {
361
+ this.getRect().then(rect => {
362
+ this.triggerEvent('ready', rect)
363
+ }).catch(() => {
364
+ this.triggerEvent('ready', {})
365
+ })
366
+ }
367
+ }
368
+ },
369
+
370
+ /**
371
+ * @description 调用插件的钩子函数
372
+ * @private
373
+ */
374
+ _hook (name) {
375
+ for (let i = plugins.length; i--;) {
376
+ if (this.plugins[i][name]) {
377
+ this.plugins[i][name]()
378
+ }
379
+ }
380
+ },
381
+
382
+ // #ifndef MP-TOUTIAO
383
+ /**
384
+ * @description 添加子组件
385
+ * @private
386
+ */
387
+ _add (e) {
388
+ e
389
+ // #ifndef MP-ALIPAY
390
+ .detail
391
+ // #endif
392
+ .root = this
393
+ }
394
+ // #endif
395
+ }
396
+ })
@@ -0,0 +1,6 @@
1
+ {
2
+ "component": true,
3
+ "usingComponents": {
4
+ "node": "./node/node"
5
+ }
6
+ }
@@ -0,0 +1,7 @@
1
+ <!-- 主组件 -->
2
+ <view class="_root {{selectable?'_select':''}}" style="{{containerStyle}}">
3
+ <!-- 加载完成前显示自定义 loading -->
4
+ <slot wx:if="{{!nodes[0]}}" />
5
+ <!-- 节点树 -->
6
+ <node id="_root" childs="{{nodes}}" opts="{{[lazyLoad,loadingImg,errorImg,showImgMenu,selectable]}}" mp-weixin:mp-qq:mp-baidu:catchadd="_add" mp-alipay:onAdd="_add" />
7
+ </view>
@@ -0,0 +1,13 @@
1
+ /* 根节点样式 */
2
+ ._root {
3
+ padding: 1px 0;
4
+ overflow-x: auto;
5
+ overflow-y: hidden;
6
+ -webkit-overflow-scrolling: touch;
7
+ }
8
+
9
+ /* 长按复制 */
10
+ ._select {
11
+ -webkit-user-select: text;
12
+ user-select: text;
13
+ }
@@ -0,0 +1,247 @@
1
+ /**
2
+ * @fileoverview 递归子组件,用于显示节点树
3
+ */
4
+ Component({
5
+ data: {
6
+ ctrl: {}, // 控制信号
7
+ // #ifdef MP-WEIXIN
8
+ isiOS: wx.getSystemInfoSync().system.includes('iOS')
9
+ // #endif
10
+ },
11
+ properties: {
12
+ childs: Array, // 子节点列表
13
+ opts: Array // 设置 [是否开启懒加载, 加载中占位图, 错误占位图, 是否使用长按菜单]
14
+ },
15
+ options: {
16
+ addGlobalClass: true
17
+ },
18
+ // #ifndef MP-TOUTIAO
19
+ attached () {
20
+ // #ifndef MP-ALIPAY
21
+ this.triggerEvent('add', this, {
22
+ bubbles: true,
23
+ composed: true
24
+ })
25
+ // #endif
26
+ // #ifdef MP-ALIPAY
27
+ this.props.onAdd(this)
28
+ // #endif
29
+ },
30
+ // #endif
31
+ methods: {
32
+ noop () { },
33
+ /**
34
+ * @description 获取标签
35
+ * @param {String} path 路径
36
+ */
37
+ getNode (path) {
38
+ try {
39
+ const nums = path.split('_')
40
+ let node = this.properties.childs[nums[0]]
41
+ for (let i = 1; i < nums.length; i++) {
42
+ node = node.children[nums[i]]
43
+ }
44
+ return node
45
+ } catch {
46
+ return {
47
+ text: '',
48
+ attrs: {},
49
+ children: []
50
+ }
51
+ }
52
+ },
53
+ /**
54
+ * @description 播放视频事件
55
+ * @param {Event} e
56
+ */
57
+ play (e) {
58
+ const i = e.target.dataset.i
59
+ const node = this.getNode(i)
60
+ this.root.triggerEvent('play', {
61
+ source: node.name,
62
+ attrs: {
63
+ ...node.attrs,
64
+ src: node.src[this.data.ctrl[i] || 0]
65
+ }
66
+ })
67
+ if (this.root.properties.pauseVideo) {
68
+ let flag = false
69
+ const id = e.target.id
70
+ for (let i = this.root._videos.length; i--;) {
71
+ if (this.root._videos[i].id === id) {
72
+ flag = true
73
+ } else {
74
+ this.root._videos[i].pause() // 自动暂停其他视频
75
+ }
76
+ }
77
+ // 将自己加入列表
78
+ if (!flag) {
79
+ const ctx = wx.createVideoContext(id
80
+ // #ifndef MP-BAIDU
81
+ , this
82
+ // #endif
83
+ )
84
+ ctx.id = id
85
+ if (this.root.playbackRate) {
86
+ ctx.playbackRate(this.root.playbackRate)
87
+ }
88
+ this.root._videos.push(ctx)
89
+ }
90
+ }
91
+ },
92
+
93
+ /**
94
+ * @description 图片点击事件
95
+ * @param {Event} e
96
+ */
97
+ imgTap (e) {
98
+ const node = this.getNode(e.target.dataset.i)
99
+ // 父级中有链接
100
+ if (node.a) return this.linkTap(node.a)
101
+ if (node.attrs.ignore) return
102
+ this.root.triggerEvent('imgtap', node.attrs)
103
+ if (this.root.properties.previewImg) {
104
+ const current =
105
+ // #ifndef MP-ALIPAY
106
+ this.root.imgList[node.i]
107
+ // #endif
108
+ // #ifdef MP-ALIPAY
109
+ node.i // eslint-disable-line
110
+ // #endif
111
+ // 自动预览图片
112
+ wx.previewImage({
113
+ // #ifdef MP-WEIXIN
114
+ showmenu: this.root.properties.showImgMenu,
115
+ // #endif
116
+ // #ifdef MP-ALIPAY
117
+ enablesavephoto: this.root.properties.showImgMenu,
118
+ enableShowPhotoDownload: this.root.properties.showImgMenu,
119
+ // #endif
120
+ current,
121
+ urls: this.root.imgList
122
+ })
123
+ }
124
+ },
125
+
126
+ /**
127
+ * @description 图片加载完成事件
128
+ * @param {Event} e
129
+ */
130
+ imgLoad (e) {
131
+ const i = e.target.dataset.i
132
+ const node = this.getNode(i)
133
+ let val
134
+ if (!node.w) {
135
+ val = e.detail.width
136
+ } else if ((this.properties.opts[1] && !this.data.ctrl[i]) || this.data.ctrl[i] === -1) {
137
+ // 加载完毕,取消加载中占位图
138
+ val = 1
139
+ }
140
+ if (val
141
+ // #ifdef MP-TOUTIAO
142
+ && val !== this.data.ctrl[i] // eslint-disable-line
143
+ // #endif
144
+ ) {
145
+ this.setData({
146
+ ['ctrl.' + i]: val
147
+ })
148
+ }
149
+ this.checkReady()
150
+ },
151
+
152
+ /**
153
+ * @description 检查是否所有图片加载完毕
154
+ */
155
+ checkReady () {
156
+ if (!this.root.properties.lazyLoad) {
157
+ this.root.imgList._unloadimgs -= 1
158
+ if (!this.root.imgList._unloadimgs) {
159
+ setTimeout(() => {
160
+ this.root.getRect().then(rect => {
161
+ this.root.triggerEvent('ready', rect)
162
+ }).catch(() => {
163
+ this.root.triggerEvent('ready', {})
164
+ })
165
+ }, 350)
166
+ }
167
+ }
168
+ },
169
+
170
+ /**
171
+ * @description 链接点击事件
172
+ * @param {Event} e
173
+ */
174
+ linkTap (e) {
175
+ const node = e.currentTarget ? this.getNode(e.currentTarget.dataset.i) : {}
176
+ const attrs = node.attrs || e
177
+ const href = attrs.href
178
+ this.root.triggerEvent('linktap', Object.assign({
179
+ innerText: this.root.getText(node.children || []) // 链接内的文本内容
180
+ }, attrs))
181
+ if (href) {
182
+ if (href[0] === '#') {
183
+ // 跳转锚点
184
+ this.root.navigateTo(href.substring(1)).catch(() => { })
185
+ } else if (href.split('?')[0].includes('://')) {
186
+ // 复制外部链接
187
+ if (this.root.properties.copyLink) {
188
+ wx.setClipboardData({
189
+ data: href,
190
+ success: () =>
191
+ wx.showToast({
192
+ title: '链接已复制'
193
+ })
194
+ })
195
+ }
196
+ } else {
197
+ // 跳转页面
198
+ wx.navigateTo({
199
+ url: href,
200
+ fail () {
201
+ wx.switchTab({
202
+ url: href,
203
+ fail () { }
204
+ })
205
+ }
206
+ })
207
+ }
208
+ }
209
+ },
210
+
211
+ /**
212
+ * @description 错误事件
213
+ * @param {Event} e
214
+ */
215
+ mediaError (e) {
216
+ const i = e.target.dataset.i
217
+ const node = this.getNode(i)
218
+ if (node.name === 'video' || node.name === 'audio') {
219
+ // 加载其他源
220
+ let index = (this.data.ctrl[i] || 0) + 1
221
+ if (index > node.src.length) {
222
+ index = 0
223
+ }
224
+ if (index < node.src.length) {
225
+ return this.setData({
226
+ ['ctrl.' + i]: index
227
+ })
228
+ }
229
+ } else if (node.name === 'img') {
230
+ // 显示错误占位图
231
+ if (this.properties.opts[2]) {
232
+ this.setData({
233
+ ['ctrl.' + i]: -1
234
+ })
235
+ }
236
+ this.checkReady()
237
+ }
238
+ if (this.root) {
239
+ this.root.triggerEvent('error', {
240
+ source: node.name,
241
+ attrs: node.attrs,
242
+ errMsg: e.detail.errMsg
243
+ })
244
+ }
245
+ }
246
+ }
247
+ })
@@ -0,0 +1,6 @@
1
+ {
2
+ "component": true,
3
+ "usingComponents": {
4
+ "node": "./node"
5
+ }
6
+ }