@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.
- package/.code.yml +17 -0
- package/.eslintignore +6 -0
- package/.stylelintrc.json +40 -0
- package/CHANGELOG.md +5 -0
- package/README.md +12 -0
- package/adapter-vue-web.ts +73 -0
- package/adapter-vue.ts +10 -0
- package/assets/audio-before-delete.svg +4 -0
- package/assets/audio-blue.png +0 -0
- package/assets/audio-bubble-blue.svg +3 -0
- package/assets/audio-bubble-red.svg +3 -0
- package/assets/audio-delete.svg +10 -0
- package/assets/audio.svg +6 -0
- package/assets/back.svg +16 -0
- package/assets/background_mobile.png +0 -0
- package/assets/camera-uni.png +0 -0
- package/assets/close-quote-icon.svg +3 -0
- package/assets/customer_avatar.png +0 -0
- package/assets/customer_avatar_mobile.png +0 -0
- package/assets/dialog-close.png +0 -0
- package/assets/double-arrow.svg +1 -0
- package/assets/download.svg +6 -0
- package/assets/emoji.png +0 -0
- package/assets/face-uni.png +0 -0
- package/assets/face.png +0 -0
- package/assets/file-h5.png +0 -0
- package/assets/files.png +0 -0
- package/assets/form-dialog-bg.png +0 -0
- package/assets/icon-arrow-left.svg +7 -0
- package/assets/icon-close.svg +6 -0
- package/assets/iconRight.svg +3 -0
- package/assets/icon_form.png +0 -0
- package/assets/icon_form_filled.png +0 -0
- package/assets/icon_question.png +0 -0
- package/assets/icon_refresh.png +0 -0
- package/assets/icon_success.png +0 -0
- package/assets/imRobotGuess.svg +4 -0
- package/assets/image-uni.png +0 -0
- package/assets/image.png +0 -0
- package/assets/keyboard_icon.png +0 -0
- package/assets/loading.png +0 -0
- package/assets/more-uni.png +0 -0
- package/assets/more_tools.png +0 -0
- package/assets/msg-audio.svg +1 -0
- package/assets/msg-copy.svg +30 -0
- package/assets/msg-del.svg +33 -0
- package/assets/msg-quote.svg +8 -0
- package/assets/msg-revoke.svg +29 -0
- package/assets/radio-check.png +0 -0
- package/assets/radio-uncheck.png +0 -0
- package/assets/radio.svg +6 -0
- package/assets/refresh.svg +4 -0
- package/assets/rotate-left.svg +7 -0
- package/assets/rotate-right.svg +7 -0
- package/assets/star.png +0 -0
- package/assets/starLine.png +0 -0
- package/assets/translate.svg +12 -0
- package/assets/video-play.png +0 -0
- package/assets/video-uni.png +0 -0
- package/assets/video.png +0 -0
- package/assets/zoom-in.svg +9 -0
- package/assets/zoom-out.svg +9 -0
- package/components/CustomerServiceChat/chat-header/index-web.vue +141 -0
- package/components/CustomerServiceChat/emoji-config/custom-emoji.ts +15 -0
- package/components/CustomerServiceChat/emoji-config/default-emoji.ts +114 -0
- package/components/CustomerServiceChat/emoji-config/index.ts +140 -0
- package/components/CustomerServiceChat/emoji-config/locales/en.ts +66 -0
- package/components/CustomerServiceChat/emoji-config/locales/zh_cn.ts +66 -0
- package/components/CustomerServiceChat/index-web.vue +250 -0
- package/components/CustomerServiceChat/message-input/index-web.vue +214 -0
- package/components/CustomerServiceChat/message-input/index.ts +2 -0
- package/components/CustomerServiceChat/message-input/message-input-button.vue +95 -0
- package/components/CustomerServiceChat/message-input/message-input-editor-web.vue +884 -0
- package/components/CustomerServiceChat/message-input/message-input-file-web.ts +38 -0
- package/components/CustomerServiceChat/message-input/message-input-quote/index.vue +204 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-dialog-mobile/emoji-dialog-mobile.vue +145 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/emoji-picker-dialog.vue +180 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/index.ts +2 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/index.vue +90 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/style/h5.scss +26 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/style/index.scss +4 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/style/web.scss +55 -0
- package/components/CustomerServiceChat/message-input-toolbar/file-upload/index.ts +2 -0
- package/components/CustomerServiceChat/message-input-toolbar/file-upload/index.vue +77 -0
- package/components/CustomerServiceChat/message-input-toolbar/image-upload/index.ts +2 -0
- package/components/CustomerServiceChat/message-input-toolbar/image-upload/index.vue +185 -0
- package/components/CustomerServiceChat/message-input-toolbar/index-web.vue +191 -0
- package/components/CustomerServiceChat/message-input-toolbar/index.ts +2 -0
- package/components/CustomerServiceChat/message-input-toolbar/style/uni.scss +111 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/index.vue +149 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/color.scss +6 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/h5.scss +20 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/index.scss +5 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/uni.scss +36 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/web.scss +19 -0
- package/components/CustomerServiceChat/message-input-toolbar/video-upload/index.ts +2 -0
- package/components/CustomerServiceChat/message-input-toolbar/video-upload/index.vue +146 -0
- package/components/CustomerServiceChat/message-list/index-web.vue +712 -0
- package/components/CustomerServiceChat/message-list/link/index.ts +23 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-audio-web.vue +223 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-bubble-web.vue +504 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-custom.vue +5 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-face.vue +45 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-file.vue +151 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-image-web.vue +97 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-location.vue +34 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-quote/index-web.vue +286 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-quote/interface.ts +60 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-record/index.vue +139 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-text.vue +94 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-timestamp.vue +76 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-video-web.vue +319 -0
- package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/index.ts +9 -0
- package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/message-customer/index.ts +5 -0
- package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/message-customer/message-customer-service.vue +22 -0
- package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/message-plugin-layout-web.vue +133 -0
- package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/message-plugin-web.vue +83 -0
- package/components/CustomerServiceChat/message-list/message-elements/read-status/index.vue +193 -0
- package/components/CustomerServiceChat/message-list/message-elements/simple-message-list/index.vue +462 -0
- package/components/CustomerServiceChat/message-list/message-elements/simple-message-list/message-container.vue +105 -0
- package/components/CustomerServiceChat/message-list/message-elements/video-play.vue +59 -0
- package/components/CustomerServiceChat/message-list/message-tool/index-web.vue +312 -0
- package/components/CustomerServiceChat/message-list/message-tool/message-revoked.vue +63 -0
- package/components/CustomerServiceChat/message-list/scroll-button/index.vue +201 -0
- package/components/CustomerServiceChat/message-list/style/color.scss +32 -0
- package/components/CustomerServiceChat/message-list/style/h5.scss +16 -0
- package/components/CustomerServiceChat/message-list/style/index.scss +11 -0
- package/components/CustomerServiceChat/message-list/style/web.scss +180 -0
- package/components/CustomerServiceChat/style/common.scss +59 -0
- package/components/CustomerServiceChat/style/h5.scss +51 -0
- package/components/CustomerServiceChat/style/index.scss +12 -0
- package/components/CustomerServiceChat/style/uni.scss +13 -0
- package/components/CustomerServiceChat/style/web.scss +46 -0
- package/components/CustomerServiceChat/style/wx.scss +5 -0
- package/components/CustomerServiceChat/utils/conversationDraft.ts +86 -0
- package/components/CustomerServiceChat/utils/sendMessage.ts +140 -0
- package/components/common/Avatar/index.vue +148 -0
- package/components/common/BottomPopup/index.ts +3 -0
- package/components/common/BottomPopup/index.vue +160 -0
- package/components/common/BottomPopup/style/h5.scss +62 -0
- package/components/common/BottomPopup/style/index.scss +3 -0
- package/components/common/BottomPopup/style/modal.scss +5 -0
- package/components/common/Dialog/index.ts +3 -0
- package/components/common/Dialog/index.vue +120 -0
- package/components/common/Dialog/style/color.scss +43 -0
- package/components/common/Dialog/style/dialog.scss +4 -0
- package/components/common/Dialog/style/h5.scss +56 -0
- package/components/common/Dialog/style/web.scss +61 -0
- package/components/common/Drawer/index.vue +164 -0
- package/components/common/Icon.vue +83 -0
- package/components/common/ImagePreviewer/image-item-web.vue +42 -0
- package/components/common/ImagePreviewer/index-web.vue +682 -0
- package/components/common/ImagePreviewer/index.ts +3 -0
- package/components/common/Overlay/index.vue +126 -0
- package/components/common/ProgressMessage/index.vue +95 -0
- package/components/common/RadioSelect/index.vue +59 -0
- package/components/common/RichText/LICENSE +21 -0
- package/components/common/RichText/README.md +244 -0
- package/components/common/RichText/dist/mp-alipay/index.acss +1 -0
- package/components/common/RichText/dist/mp-alipay/index.axml +1 -0
- package/components/common/RichText/dist/mp-alipay/index.js +8 -0
- package/components/common/RichText/dist/mp-alipay/index.json +1 -0
- package/components/common/RichText/dist/mp-alipay/node/node.acss +1 -0
- package/components/common/RichText/dist/mp-alipay/node/node.axml +1 -0
- package/components/common/RichText/dist/mp-alipay/node/node.js +1 -0
- package/components/common/RichText/dist/mp-alipay/node/node.json +1 -0
- package/components/common/RichText/dist/mp-alipay/parser.js +1 -0
- package/components/common/RichText/dist/mp-baidu/index.css +1 -0
- package/components/common/RichText/dist/mp-baidu/index.js +8 -0
- package/components/common/RichText/dist/mp-baidu/index.json +1 -0
- package/components/common/RichText/dist/mp-baidu/index.swan +1 -0
- package/components/common/RichText/dist/mp-baidu/node/node.css +1 -0
- package/components/common/RichText/dist/mp-baidu/node/node.js +1 -0
- package/components/common/RichText/dist/mp-baidu/node/node.json +1 -0
- package/components/common/RichText/dist/mp-baidu/node/node.swan +1 -0
- package/components/common/RichText/dist/mp-baidu/parser.js +1 -0
- package/components/common/RichText/dist/mp-qq/index.js +8 -0
- package/components/common/RichText/dist/mp-qq/index.json +1 -0
- package/components/common/RichText/dist/mp-qq/index.qml +1 -0
- package/components/common/RichText/dist/mp-qq/index.qss +1 -0
- package/components/common/RichText/dist/mp-qq/node/node.js +1 -0
- package/components/common/RichText/dist/mp-qq/node/node.json +1 -0
- package/components/common/RichText/dist/mp-qq/node/node.qml +1 -0
- package/components/common/RichText/dist/mp-qq/node/node.qss +1 -0
- package/components/common/RichText/dist/mp-qq/parser.js +1 -0
- package/components/common/RichText/dist/mp-toutiao/index.js +8 -0
- package/components/common/RichText/dist/mp-toutiao/index.json +1 -0
- package/components/common/RichText/dist/mp-toutiao/index.ttml +1 -0
- package/components/common/RichText/dist/mp-toutiao/index.ttss +1 -0
- package/components/common/RichText/dist/mp-toutiao/node/node.js +1 -0
- package/components/common/RichText/dist/mp-toutiao/node/node.json +1 -0
- package/components/common/RichText/dist/mp-toutiao/node/node.ttml +1 -0
- package/components/common/RichText/dist/mp-toutiao/node/node.ttss +1 -0
- package/components/common/RichText/dist/mp-toutiao/parser.js +1 -0
- package/components/common/RichText/dist/mp-weixin/index.js +8 -0
- package/components/common/RichText/dist/mp-weixin/index.json +1 -0
- package/components/common/RichText/dist/mp-weixin/index.wxml +1 -0
- package/components/common/RichText/dist/mp-weixin/index.wxss +1 -0
- package/components/common/RichText/dist/mp-weixin/node/node.js +1 -0
- package/components/common/RichText/dist/mp-weixin/node/node.json +1 -0
- package/components/common/RichText/dist/mp-weixin/node/node.wxml +1 -0
- package/components/common/RichText/dist/mp-weixin/node/node.wxss +1 -0
- package/components/common/RichText/dist/mp-weixin/parser.js +1 -0
- package/components/common/RichText/dist/uni-app/components/mp-html/mp-html.vue +498 -0
- package/components/common/RichText/dist/uni-app/components/mp-html/node/node.vue +587 -0
- package/components/common/RichText/dist/uni-app/components/mp-html/parser.js +1393 -0
- package/components/common/RichText/dist/uni-app/static/app-plus/mp-html/js/handler.js +1 -0
- package/components/common/RichText/dist/uni-app/static/app-plus/mp-html/js/uni.webview.min.js +1 -0
- package/components/common/RichText/dist/uni-app/static/app-plus/mp-html/local.html +1 -0
- package/components/common/RichText/docs/.nojekyll +0 -0
- package/components/common/RichText/docs/index.html +50 -0
- package/components/common/RichText/docs/lib/docsify.min.js +1 -0
- package/components/common/RichText/docs/lib/prism-bash.min.js +1 -0
- package/components/common/RichText/docs/lib/search.min.js +1 -0
- package/components/common/RichText/docs/lib/vue.css +858 -0
- package/components/common/RichText/gulpfile.js +113 -0
- package/components/common/RichText/lint.js +63 -0
- package/components/common/RichText/package.json +74 -0
- package/components/common/RichText/plugins/README.md +2 -0
- package/components/common/RichText/plugins/audio/README.md +25 -0
- package/components/common/RichText/plugins/audio/build.js +11 -0
- package/components/common/RichText/plugins/audio/context.js +7 -0
- package/components/common/RichText/plugins/audio/index.js +34 -0
- package/components/common/RichText/plugins/audio/miniprogram/audio.js +189 -0
- package/components/common/RichText/plugins/audio/miniprogram/audio.json +3 -0
- package/components/common/RichText/plugins/audio/miniprogram/audio.wxml +17 -0
- package/components/common/RichText/plugins/audio/miniprogram/audio.wxss +127 -0
- package/components/common/RichText/plugins/audio/miniprogram/build.js +3 -0
- package/components/common/RichText/plugins/audio/uni-app/audio.vue +269 -0
- package/components/common/RichText/plugins/audio/uni-app/build.js +3 -0
- package/components/common/RichText/plugins/card/README.md +30 -0
- package/components/common/RichText/plugins/card/build.js +14 -0
- package/components/common/RichText/plugins/card/index.js +7 -0
- package/components/common/RichText/plugins/card/miniprogram/build.js +3 -0
- package/components/common/RichText/plugins/card/miniprogram/card.js +26 -0
- package/components/common/RichText/plugins/card/miniprogram/card.json +3 -0
- package/components/common/RichText/plugins/card/miniprogram/card.wxml +9 -0
- package/components/common/RichText/plugins/card/miniprogram/card.wxss +55 -0
- package/components/common/RichText/plugins/card/uni-app/build.js +3 -0
- package/components/common/RichText/plugins/card/uni-app/card.vue +122 -0
- package/components/common/RichText/plugins/editable/README.md +137 -0
- package/components/common/RichText/plugins/editable/config.js +15 -0
- package/components/common/RichText/plugins/editable/miniprogram/build.js +813 -0
- package/components/common/RichText/plugins/editable/miniprogram/index.js +551 -0
- package/components/common/RichText/plugins/editable/uni-app/build.js +744 -0
- package/components/common/RichText/plugins/editable/uni-app/index.js +553 -0
- package/components/common/RichText/plugins/emoji/README.md +15 -0
- package/components/common/RichText/plugins/emoji/index.js +203 -0
- package/components/common/RichText/plugins/highlight/README.md +26 -0
- package/components/common/RichText/plugins/highlight/config.js +5 -0
- package/components/common/RichText/plugins/highlight/index.js +96 -0
- package/components/common/RichText/plugins/highlight/miniprogram/build.js +88 -0
- package/components/common/RichText/plugins/highlight/prism.css +125 -0
- package/components/common/RichText/plugins/highlight/prism.min.js +7 -0
- package/components/common/RichText/plugins/highlight/uni-app/build.js +88 -0
- package/components/common/RichText/plugins/img-cache/README.md +24 -0
- package/components/common/RichText/plugins/img-cache/build.js +16 -0
- package/components/common/RichText/plugins/img-cache/index.js +138 -0
- package/components/common/RichText/plugins/latex/README.md +16 -0
- package/components/common/RichText/plugins/latex/build.js +14 -0
- package/components/common/RichText/plugins/latex/index.js +77 -0
- package/components/common/RichText/plugins/latex/katex.css +1070 -0
- package/components/common/RichText/plugins/latex/katex.min.js +1 -0
- package/components/common/RichText/plugins/markdown/README.md +17 -0
- package/components/common/RichText/plugins/markdown/index.js +34 -0
- package/components/common/RichText/plugins/markdown/marked.min.js +6 -0
- package/components/common/RichText/plugins/markdown/miniprogram/build.js +70 -0
- package/components/common/RichText/plugins/markdown/uni-app/build.js +68 -0
- package/components/common/RichText/plugins/search/README.md +46 -0
- package/components/common/RichText/plugins/search/miniprogram/index.js +137 -0
- package/components/common/RichText/plugins/search/uni-app/index.js +132 -0
- package/components/common/RichText/plugins/style/README.md +30 -0
- package/components/common/RichText/plugins/style/index.js +129 -0
- package/components/common/RichText/plugins/style/parser.js +175 -0
- package/components/common/RichText/plugins/template/README.md +2 -0
- package/components/common/RichText/plugins/template/build.js +65 -0
- package/components/common/RichText/plugins/template/index.js +67 -0
- package/components/common/RichText/plugins/txv-video/README.md +18 -0
- package/components/common/RichText/plugins/txv-video/build.js +3 -0
- package/components/common/RichText/plugins/txv-video/index.js +46 -0
- package/components/common/RichText/plugins/txv-video/miniprogram/build.js +6 -0
- package/components/common/RichText/plugins/txv-video/uni-app/build.js +3 -0
- package/components/common/RichText/src/miniprogram/index.js +396 -0
- package/components/common/RichText/src/miniprogram/index.json +6 -0
- package/components/common/RichText/src/miniprogram/index.wxml +7 -0
- package/components/common/RichText/src/miniprogram/index.wxss +13 -0
- package/components/common/RichText/src/miniprogram/node/node.js +247 -0
- package/components/common/RichText/src/miniprogram/node/node.json +6 -0
- package/components/common/RichText/src/miniprogram/node/node.wxml +112 -0
- package/components/common/RichText/src/miniprogram/node/node.wxss +164 -0
- package/components/common/RichText/src/miniprogram/parser.js +1269 -0
- package/components/common/RichText/src/uni-app/components/mp-html/mp-html.vue +498 -0
- package/components/common/RichText/src/uni-app/components/mp-html/node/node.vue +585 -0
- package/components/common/RichText/src/uni-app/components/mp-html/parser.js +1393 -0
- package/components/common/RichText/src/uni-app/static/app-plus/mp-html/js/handler.js +254 -0
- package/components/common/RichText/src/uni-app/static/app-plus/mp-html/js/uni.webview.min.js +1 -0
- package/components/common/RichText/src/uni-app/static/app-plus/mp-html/local.html +33 -0
- package/components/common/RichText/tools/config.js +82 -0
- package/components/common/RichText/tools/converter.js +205 -0
- package/components/common/RichText/tools/ifdef.js +115 -0
- package/components/common/RichText/tools/minifier.js +40 -0
- package/components/common/RichText/tools/plugin.js +248 -0
- package/components/common/Toast/index-web.ts +122 -0
- package/components/common/Toast/index-web.vue +178 -0
- package/components/common/Toast/type.ts +8 -0
- package/components/common/common.scss +59 -0
- package/components/customer-icon.vue +56 -0
- package/components/message-branch.vue +120 -0
- package/components/message-customer-service.vue +114 -0
- package/components/message-form/form-branch.vue +68 -0
- package/components/message-form/form-input.vue +242 -0
- package/components/message-form/index.vue +80 -0
- package/components/message-multi-branch/branch-pc.vue +79 -0
- package/components/message-multi-branch/index.vue +60 -0
- package/components/message-multi-form/component-mobile/form-popup.vue +37 -0
- package/components/message-multi-form/component-mobile/input-mobile.vue +102 -0
- package/components/message-multi-form/component-mobile/label-mobile.vue +32 -0
- package/components/message-multi-form/component-mobile/radios-mobile.vue +161 -0
- package/components/message-multi-form/component-pc/input-pc.vue +93 -0
- package/components/message-multi-form/component-pc/label-pc.vue +33 -0
- package/components/message-multi-form/component-pc/radio-pc.vue +98 -0
- package/components/message-multi-form/form-mobile.vue +385 -0
- package/components/message-multi-form/form-pc.vue +184 -0
- package/components/message-multi-form/index.vue +61 -0
- package/components/message-product-card.vue +129 -0
- package/components/message-rating/index.vue +56 -0
- package/components/message-rating/message-rating-number.vue +247 -0
- package/components/message-rating/message-rating-star.vue +237 -0
- package/components/message-rich-text.vue +155 -0
- package/components/message-robot-welcome.vue +181 -0
- package/components/message-stream.vue +109 -0
- package/constant.ts +122 -0
- package/excluded-list.txt +6 -0
- package/index.ts +30 -0
- package/index.vue +60 -0
- package/interface.ts +176 -0
- package/logger/index.ts +12 -0
- package/logger/main.ts +120 -0
- package/package.json +62 -0
- package/script/fileCopy.js +60 -0
- package/script/syncVersion.js +35 -0
- package/server.ts +128 -0
- package/styles/common.scss +116 -0
- package/tsconfig.json +34 -0
- package/typings.d.ts +20 -0
- package/utils/chatStorage.ts +70 -0
- package/utils/copy-web.ts +141 -0
- package/utils/enableSampleTaskStatus.ts +8 -0
- package/utils/env.ts +15 -0
- package/utils/index.ts +59 -0
- package/utils/utils.ts +162 -0
|
@@ -0,0 +1,551 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview editable 插件
|
|
3
|
+
*/
|
|
4
|
+
const config = require('./config')
|
|
5
|
+
const Parser = require('../parser')
|
|
6
|
+
|
|
7
|
+
function Editable (vm) {
|
|
8
|
+
this.vm = vm
|
|
9
|
+
this.editHistory = [] // 历史记录
|
|
10
|
+
this.editI = -1 // 历史记录指针
|
|
11
|
+
vm._mask = [] // 蒙版被点击时进行的操作
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* @description 移动历史记录指针
|
|
15
|
+
* @param {Number} num 移动距离
|
|
16
|
+
*/
|
|
17
|
+
const move = num => {
|
|
18
|
+
const item = this.editHistory[this.editI + num]
|
|
19
|
+
if (item) {
|
|
20
|
+
this.editI += num
|
|
21
|
+
vm.setData({
|
|
22
|
+
[item.key]: item.value
|
|
23
|
+
})
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
vm.undo = () => move(-1) // 撤销
|
|
27
|
+
vm.redo = () => move(1) // 重做
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @description 更新记录
|
|
31
|
+
* @param {String} path 路径
|
|
32
|
+
* @param {*} oldVal 旧值
|
|
33
|
+
* @param {*} newVal 新值
|
|
34
|
+
* @param {Boolean} set 是否更新到视图
|
|
35
|
+
* @private
|
|
36
|
+
*/
|
|
37
|
+
vm._editVal = (path, oldVal, newVal, set) => {
|
|
38
|
+
// 当前指针后的内容去除
|
|
39
|
+
while (this.editI < this.editHistory.length - 1) {
|
|
40
|
+
this.editHistory.pop()
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// 最多存储 30 条操作记录
|
|
44
|
+
while (this.editHistory.length > 30) {
|
|
45
|
+
this.editHistory.pop()
|
|
46
|
+
this.editI--
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const last = this.editHistory[this.editHistory.length - 1]
|
|
50
|
+
if (!last || last.key !== path) {
|
|
51
|
+
if (last) {
|
|
52
|
+
// 去掉上一次的新值
|
|
53
|
+
this.editHistory.pop()
|
|
54
|
+
this.editI--
|
|
55
|
+
}
|
|
56
|
+
// 存入这一次的旧值
|
|
57
|
+
this.editHistory.push({
|
|
58
|
+
key: path,
|
|
59
|
+
value: oldVal
|
|
60
|
+
})
|
|
61
|
+
this.editI++
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// 存入本次的新值
|
|
65
|
+
this.editHistory.push({
|
|
66
|
+
key: path,
|
|
67
|
+
value: newVal
|
|
68
|
+
})
|
|
69
|
+
this.editI++
|
|
70
|
+
|
|
71
|
+
// 更新到视图
|
|
72
|
+
if (set) {
|
|
73
|
+
vm.setData({
|
|
74
|
+
[path]: newVal
|
|
75
|
+
})
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* @description 获取菜单项
|
|
81
|
+
* @private
|
|
82
|
+
*/
|
|
83
|
+
vm._getItem = function (node, up, down) {
|
|
84
|
+
let items
|
|
85
|
+
let i
|
|
86
|
+
if (node === 'color') {
|
|
87
|
+
return config.color
|
|
88
|
+
}
|
|
89
|
+
if (node.name === 'img') {
|
|
90
|
+
items = config.img.slice(0)
|
|
91
|
+
if (!vm.getSrc) {
|
|
92
|
+
i = items.indexOf('换图')
|
|
93
|
+
if (i !== -1) {
|
|
94
|
+
items.splice(i, 1)
|
|
95
|
+
}
|
|
96
|
+
i = items.indexOf('超链接')
|
|
97
|
+
if (i !== -1) {
|
|
98
|
+
items.splice(i, 1)
|
|
99
|
+
}
|
|
100
|
+
i = items.indexOf('预览图')
|
|
101
|
+
if (i !== -1) {
|
|
102
|
+
items.splice(i, 1)
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
i = items.indexOf('禁用预览')
|
|
106
|
+
if (i !== -1 && node.attrs.ignore) {
|
|
107
|
+
items[i] = '启用预览'
|
|
108
|
+
}
|
|
109
|
+
} else if (node.name === 'a') {
|
|
110
|
+
items = config.link.slice(0)
|
|
111
|
+
if (!vm.getSrc) {
|
|
112
|
+
i = items.indexOf('更换链接')
|
|
113
|
+
if (i !== -1) {
|
|
114
|
+
items.splice(i, 1)
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
} else if (node.name === 'video' || node.name === 'audio') {
|
|
118
|
+
items = config.media.slice(0)
|
|
119
|
+
i = items.indexOf('封面')
|
|
120
|
+
if (!vm.getSrc && i !== -1) {
|
|
121
|
+
items.splice(i, 1)
|
|
122
|
+
}
|
|
123
|
+
i = items.indexOf('循环')
|
|
124
|
+
if (node.attrs.loop && i !== -1) {
|
|
125
|
+
items[i] = '不循环'
|
|
126
|
+
}
|
|
127
|
+
i = items.indexOf('自动播放')
|
|
128
|
+
if (node.attrs.autoplay && i !== -1) {
|
|
129
|
+
items[i] = '不自动播放'
|
|
130
|
+
}
|
|
131
|
+
} else if (node.name === 'card') {
|
|
132
|
+
items = config.card.slice(0)
|
|
133
|
+
} else {
|
|
134
|
+
items = config.node.slice(0)
|
|
135
|
+
}
|
|
136
|
+
if (!up) {
|
|
137
|
+
i = items.indexOf('上移')
|
|
138
|
+
if (i !== -1) {
|
|
139
|
+
items.splice(i, 1)
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
if (!down) {
|
|
143
|
+
i = items.indexOf('下移')
|
|
144
|
+
if (i !== -1) {
|
|
145
|
+
items.splice(i, 1)
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
return items
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* @description 显示 tooltip
|
|
153
|
+
* @param {object} obj
|
|
154
|
+
* @private
|
|
155
|
+
*/
|
|
156
|
+
vm._tooltip = function (obj) {
|
|
157
|
+
vm.setData({
|
|
158
|
+
tooltip: {
|
|
159
|
+
top: obj.top,
|
|
160
|
+
items: obj.items
|
|
161
|
+
}
|
|
162
|
+
})
|
|
163
|
+
vm._tooltipcb = obj.success
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* @description 显示滚动条
|
|
168
|
+
* @param {object} obj
|
|
169
|
+
* @private
|
|
170
|
+
*/
|
|
171
|
+
vm._slider = function (obj) {
|
|
172
|
+
vm.setData({
|
|
173
|
+
slider: {
|
|
174
|
+
min: obj.min,
|
|
175
|
+
max: obj.max,
|
|
176
|
+
value: obj.value,
|
|
177
|
+
top: obj.top
|
|
178
|
+
}
|
|
179
|
+
})
|
|
180
|
+
vm._slideringcb = obj.changing
|
|
181
|
+
vm._slidercb = obj.change
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* @description 显示颜色选择
|
|
186
|
+
* @param {object} obj
|
|
187
|
+
* @private
|
|
188
|
+
*/
|
|
189
|
+
vm._color = function (obj) {
|
|
190
|
+
vm.setData({
|
|
191
|
+
color: {
|
|
192
|
+
items: obj.items,
|
|
193
|
+
top: obj.top
|
|
194
|
+
}
|
|
195
|
+
})
|
|
196
|
+
vm._colorcb = obj.success
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* @description 点击蒙版
|
|
201
|
+
* @private
|
|
202
|
+
*/
|
|
203
|
+
vm._maskTap = function () {
|
|
204
|
+
// 隐藏所有悬浮窗
|
|
205
|
+
while (this._mask.length) {
|
|
206
|
+
(this._mask.pop())()
|
|
207
|
+
}
|
|
208
|
+
const data = {}
|
|
209
|
+
if (this.data.tooltip) {
|
|
210
|
+
data.tooltip = null
|
|
211
|
+
}
|
|
212
|
+
if (this.data.slider) {
|
|
213
|
+
data.slider = null
|
|
214
|
+
}
|
|
215
|
+
if (this.data.color) {
|
|
216
|
+
data.color = null
|
|
217
|
+
}
|
|
218
|
+
if (this.data.tooltip || this.data.slider || this.data.color) {
|
|
219
|
+
this.setData(data)
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* @description 插入节点
|
|
225
|
+
* @param {Object} node
|
|
226
|
+
*/
|
|
227
|
+
function insert (node) {
|
|
228
|
+
if (vm._edit) {
|
|
229
|
+
vm._edit.insert(node)
|
|
230
|
+
} else {
|
|
231
|
+
const nodes = vm.data.nodes.slice(0)
|
|
232
|
+
nodes.push(node)
|
|
233
|
+
vm._editVal('nodes', vm.data.nodes, nodes, true)
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* @description 在光标处插入指定 html 内容
|
|
239
|
+
* @param {String} html 内容
|
|
240
|
+
*/
|
|
241
|
+
vm.insertHtml = html => {
|
|
242
|
+
this.inserting = true
|
|
243
|
+
const arr = new Parser(vm).parse(html)
|
|
244
|
+
this.inserting = undefined
|
|
245
|
+
for (let i = 0; i < arr.length; i++) {
|
|
246
|
+
insert(arr[i])
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* @description 在光标处插入图片
|
|
252
|
+
*/
|
|
253
|
+
vm.insertImg = function () {
|
|
254
|
+
vm.getSrc && vm.getSrc('img').then(src => {
|
|
255
|
+
if (typeof src === 'string') {
|
|
256
|
+
src = [src]
|
|
257
|
+
}
|
|
258
|
+
const parser = new Parser(vm)
|
|
259
|
+
for (let i = 0; i < src.length; i++) {
|
|
260
|
+
insert({
|
|
261
|
+
name: 'img',
|
|
262
|
+
attrs: {
|
|
263
|
+
src: parser.getUrl(src[i])
|
|
264
|
+
}
|
|
265
|
+
})
|
|
266
|
+
}
|
|
267
|
+
}).catch(() => { })
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
/**
|
|
271
|
+
* @description 在光标处插入一个链接
|
|
272
|
+
*/
|
|
273
|
+
vm.insertLink = function () {
|
|
274
|
+
vm.getSrc && vm.getSrc('link').then(url => {
|
|
275
|
+
insert({
|
|
276
|
+
name: 'a',
|
|
277
|
+
attrs: {
|
|
278
|
+
href: url
|
|
279
|
+
},
|
|
280
|
+
children: [{
|
|
281
|
+
type: 'text',
|
|
282
|
+
text: url
|
|
283
|
+
}]
|
|
284
|
+
})
|
|
285
|
+
}).catch(() => { })
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* @description 在光标处插入一个表格
|
|
290
|
+
* @param {Number} rows 行数
|
|
291
|
+
* @param {Number} cols 列数
|
|
292
|
+
*/
|
|
293
|
+
vm.insertTable = function (rows, cols) {
|
|
294
|
+
const table = {
|
|
295
|
+
name: 'table',
|
|
296
|
+
attrs: {
|
|
297
|
+
style: 'display:table;width:100%;margin:10px 0;text-align:center;border-spacing:0;border-collapse:collapse;border:1px solid gray'
|
|
298
|
+
},
|
|
299
|
+
children: []
|
|
300
|
+
}
|
|
301
|
+
for (let i = 0; i < rows; i++) {
|
|
302
|
+
const tr = {
|
|
303
|
+
name: 'tr',
|
|
304
|
+
attrs: {},
|
|
305
|
+
children: []
|
|
306
|
+
}
|
|
307
|
+
for (let j = 0; j < cols; j++) {
|
|
308
|
+
tr.children.push({
|
|
309
|
+
name: 'td',
|
|
310
|
+
attrs: {
|
|
311
|
+
style: 'padding:2px;border:1px solid gray'
|
|
312
|
+
},
|
|
313
|
+
children: [{
|
|
314
|
+
type: 'text',
|
|
315
|
+
text: ''
|
|
316
|
+
}]
|
|
317
|
+
})
|
|
318
|
+
}
|
|
319
|
+
table.children.push(tr)
|
|
320
|
+
}
|
|
321
|
+
insert(table)
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* @description 插入视频/音频
|
|
326
|
+
* @param {Object} node
|
|
327
|
+
*/
|
|
328
|
+
function insertMedia (node) {
|
|
329
|
+
if (typeof node.src === 'string') {
|
|
330
|
+
node.src = [node.src]
|
|
331
|
+
}
|
|
332
|
+
const parser = new Parser(vm)
|
|
333
|
+
// 拼接主域名
|
|
334
|
+
for (let i = 0; i < node.src.length; i++) {
|
|
335
|
+
node.src[i] = parser.getUrl(node.src[i])
|
|
336
|
+
}
|
|
337
|
+
insert({
|
|
338
|
+
name: 'div',
|
|
339
|
+
attrs: {
|
|
340
|
+
style: 'text-align:center'
|
|
341
|
+
},
|
|
342
|
+
children: [node]
|
|
343
|
+
})
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* @description 在光标处插入一个视频
|
|
348
|
+
*/
|
|
349
|
+
vm.insertVideo = function () {
|
|
350
|
+
vm.getSrc && vm.getSrc('video').then(src => {
|
|
351
|
+
insertMedia({
|
|
352
|
+
name: 'video',
|
|
353
|
+
attrs: {
|
|
354
|
+
controls: 'T'
|
|
355
|
+
},
|
|
356
|
+
src
|
|
357
|
+
})
|
|
358
|
+
}).catch(() => { })
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* @description 在光标处插入一个音频
|
|
363
|
+
*/
|
|
364
|
+
vm.insertAudio = function () {
|
|
365
|
+
vm.getSrc && vm.getSrc('audio').then(attrs => {
|
|
366
|
+
let src
|
|
367
|
+
if (attrs.src) {
|
|
368
|
+
src = attrs.src
|
|
369
|
+
attrs.src = undefined
|
|
370
|
+
} else {
|
|
371
|
+
src = attrs
|
|
372
|
+
attrs = {}
|
|
373
|
+
}
|
|
374
|
+
attrs.controls = 'T'
|
|
375
|
+
insertMedia({
|
|
376
|
+
name: 'audio',
|
|
377
|
+
attrs,
|
|
378
|
+
src
|
|
379
|
+
})
|
|
380
|
+
}).catch(() => { })
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
/**
|
|
384
|
+
* @description 在光标处插入一段文本
|
|
385
|
+
*/
|
|
386
|
+
vm.insertText = function () {
|
|
387
|
+
insert({
|
|
388
|
+
name: 'p',
|
|
389
|
+
attrs: {},
|
|
390
|
+
children: [{
|
|
391
|
+
type: 'text',
|
|
392
|
+
text: ''
|
|
393
|
+
}]
|
|
394
|
+
})
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
/**
|
|
398
|
+
* @description 清空内容
|
|
399
|
+
*/
|
|
400
|
+
vm.clear = function () {
|
|
401
|
+
vm._maskTap()
|
|
402
|
+
vm._edit = undefined
|
|
403
|
+
vm.setData({
|
|
404
|
+
nodes: [{
|
|
405
|
+
name: 'p',
|
|
406
|
+
attrs: {},
|
|
407
|
+
children: [{
|
|
408
|
+
type: 'text',
|
|
409
|
+
text: ''
|
|
410
|
+
}]
|
|
411
|
+
}]
|
|
412
|
+
})
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
/**
|
|
416
|
+
* @description 获取编辑后的 html
|
|
417
|
+
*/
|
|
418
|
+
vm.getContent = function () {
|
|
419
|
+
let html = '';
|
|
420
|
+
// 递归遍历获取
|
|
421
|
+
(function traversal (nodes, table) {
|
|
422
|
+
for (let i = 0; i < nodes.length; i++) {
|
|
423
|
+
let item = nodes[i]
|
|
424
|
+
if (item.type === 'text') {
|
|
425
|
+
// 编码实体
|
|
426
|
+
html += item.text.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/\n/g, '<br>').replace(/\xa0/g, ' ')
|
|
427
|
+
} else {
|
|
428
|
+
// 还原被转换的 svg
|
|
429
|
+
if (item.name === 'img' && (item.attrs.src || '').includes('data:image/svg+xml;utf8,')) {
|
|
430
|
+
html += item.attrs.src.substr(24).replace(/%23/g, '#').replace('<svg', '<svg style="' + (item.attrs.style || '') + '"')
|
|
431
|
+
continue
|
|
432
|
+
} else if (item.name === 'video' || item.name === 'audio') {
|
|
433
|
+
// 还原 video 和 audio 的 source
|
|
434
|
+
if (item.src.length > 1) {
|
|
435
|
+
item.children = []
|
|
436
|
+
for (let j = 0; j < item.src.length; j++) {
|
|
437
|
+
item.children.push({
|
|
438
|
+
name: 'source',
|
|
439
|
+
attrs: {
|
|
440
|
+
src: item.src[j]
|
|
441
|
+
}
|
|
442
|
+
})
|
|
443
|
+
}
|
|
444
|
+
} else {
|
|
445
|
+
item.attrs.src = item.src[0]
|
|
446
|
+
}
|
|
447
|
+
} else if (item.name === 'div' && (item.attrs.style || '').includes('overflow:auto') && (item.children[0] || {}).name === 'table') {
|
|
448
|
+
// 还原滚动层
|
|
449
|
+
item = item.children[0]
|
|
450
|
+
}
|
|
451
|
+
// 还原 table
|
|
452
|
+
if (item.name === 'table') {
|
|
453
|
+
table = item.attrs
|
|
454
|
+
if ((item.attrs.style || '').includes('display:grid')) {
|
|
455
|
+
item.attrs.style = item.attrs.style.split('display:grid')[0]
|
|
456
|
+
const children = [{
|
|
457
|
+
name: 'tr',
|
|
458
|
+
attrs: {},
|
|
459
|
+
children: []
|
|
460
|
+
}]
|
|
461
|
+
for (let j = 0; j < item.children.length; j++) {
|
|
462
|
+
item.children[j].attrs.style = item.children[j].attrs.style.replace(/grid-[^;]+;*/g, '')
|
|
463
|
+
if (item.children[j].r !== children.length) {
|
|
464
|
+
children.push({
|
|
465
|
+
name: 'tr',
|
|
466
|
+
attrs: {},
|
|
467
|
+
children: [item.children[j]]
|
|
468
|
+
})
|
|
469
|
+
} else {
|
|
470
|
+
children[children.length - 1].children.push(item.children[j])
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
item.children = children
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
html += '<' + item.name
|
|
477
|
+
for (const attr in item.attrs) {
|
|
478
|
+
let val = item.attrs[attr]
|
|
479
|
+
if (!val) continue
|
|
480
|
+
// bool 型省略值
|
|
481
|
+
if (val === 'T' || val === true) {
|
|
482
|
+
html += ' ' + attr
|
|
483
|
+
continue
|
|
484
|
+
} else if (item.name[0] === 't' && attr === 'style' && table) {
|
|
485
|
+
// 取消为了显示 table 添加的 style
|
|
486
|
+
val = val.replace(/;*display:table[^;]*/, '')
|
|
487
|
+
if (table.border) {
|
|
488
|
+
val = val.replace(/border[^;]+;*/g, $ => $.includes('collapse') ? $ : '')
|
|
489
|
+
}
|
|
490
|
+
if (table.cellpadding) {
|
|
491
|
+
val = val.replace(/padding[^;]+;*/g, '')
|
|
492
|
+
}
|
|
493
|
+
if (!val) continue
|
|
494
|
+
}
|
|
495
|
+
html += ' ' + attr + '="' + val.replace(/"/g, '"') + '"'
|
|
496
|
+
}
|
|
497
|
+
html += '>'
|
|
498
|
+
if (item.children) {
|
|
499
|
+
traversal(item.children, table)
|
|
500
|
+
html += '</' + item.name + '>'
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
})(vm.data.nodes)
|
|
505
|
+
|
|
506
|
+
// 其他插件处理
|
|
507
|
+
for (let i = vm.plugins.length; i--;) {
|
|
508
|
+
if (vm.plugins[i].onGetContent) {
|
|
509
|
+
html = vm.plugins[i].onGetContent(html) || html
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
return html
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
Editable.prototype.onUpdate = function (content, config) {
|
|
518
|
+
if (this.vm.properties.editable) {
|
|
519
|
+
this.vm._maskTap()
|
|
520
|
+
config.entities.amp = '&'
|
|
521
|
+
if (!this.inserting) {
|
|
522
|
+
this.vm._edit = undefined
|
|
523
|
+
if (!content) {
|
|
524
|
+
setTimeout(() => {
|
|
525
|
+
this.vm.setData({
|
|
526
|
+
nodes: [{
|
|
527
|
+
name: 'p',
|
|
528
|
+
attrs: {},
|
|
529
|
+
children: [{
|
|
530
|
+
type: 'text',
|
|
531
|
+
text: ''
|
|
532
|
+
}]
|
|
533
|
+
}]
|
|
534
|
+
})
|
|
535
|
+
}, 0)
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
Editable.prototype.onParse = function (node) {
|
|
542
|
+
// 空白单元格可编辑
|
|
543
|
+
if (this.vm.properties.editable && (node.name === 'td' || node.name === 'th') && !this.vm.getText(node.children)) {
|
|
544
|
+
node.children.push({
|
|
545
|
+
type: 'text',
|
|
546
|
+
text: ''
|
|
547
|
+
})
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
module.exports = Editable
|