index.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. <template>
  2. <div :class="{fullscreen:fullscreen}" class="tinymce-container" :style="{width:containerWidth}">
  3. <textarea :id="tinymceId" class="tinymce-textarea" />
  4. <!-- <div class="editor-custom-btn-container">
  5. <editorImage color="#1890ff" class="editor-upload-btn" @successCBK="imageSuccessCBK" />
  6. </div> -->
  7. </div>
  8. </template>
  9. <script>
  10. /**
  11. * docs:
  12. * https://panjiachen.github.io/vue-element-admin-site/feature/component/rich-editor.html#tinymce
  13. */
  14. // import editorImage from './components/EditorImage'
  15. import plugins from './plugins'
  16. import toolbar from './toolbar'
  17. import load from './dynamicLoadScript'
  18. // why use this cdn, detail see https://github.com/PanJiaChen/tinymce-all-in-one
  19. const tinymceCDN = '//cdn.jsdelivr.net/npm/tinymce-all-in-one@4.9.3/tinymce.min.js'
  20. export default {
  21. name: 'Tinymce',
  22. // components: { editorImage },
  23. props: {
  24. id: {
  25. type: String,
  26. default: function() {
  27. return 'vue-tinymce-' + +new Date() + ((Math.random() * 1000).toFixed(0) + '')
  28. }
  29. },
  30. value: {
  31. type: String,
  32. default: ''
  33. },
  34. toolbar: {
  35. type: Array,
  36. required: false,
  37. default() {
  38. return []
  39. }
  40. },
  41. menubar: {
  42. type: String,
  43. default: 'file edit insert view format table'
  44. },
  45. height: {
  46. type: [Number, String],
  47. required: false,
  48. default: 360
  49. },
  50. width: {
  51. type: [Number, String],
  52. required: false,
  53. default: 'auto'
  54. }
  55. },
  56. data() {
  57. return {
  58. hasChange: false,
  59. hasInit: false,
  60. tinymceId: this.id,
  61. fullscreen: false,
  62. languageTypeList: {
  63. 'en': 'en',
  64. 'zh': 'zh_CN',
  65. 'es': 'es_MX',
  66. 'ja': 'ja'
  67. }
  68. }
  69. },
  70. computed: {
  71. language() {
  72. return this.languageTypeList[this.$store.getters.language]
  73. },
  74. containerWidth() {
  75. const width = this.width
  76. if (/^[\d]+(\.[\d]+)?$/.test(width)) { // matches `100`, `'100'`
  77. return `${width}px`
  78. }
  79. return width
  80. }
  81. },
  82. watch: {
  83. value(val) {
  84. if (!this.hasChange && this.hasInit) {
  85. this.$nextTick(() =>
  86. window.tinymce.get(this.tinymceId).setContent(val || ''))
  87. }
  88. },
  89. language() {
  90. this.destroyTinymce()
  91. this.$nextTick(() => this.initTinymce())
  92. }
  93. },
  94. mounted() {
  95. this.init()
  96. },
  97. activated() {
  98. if (window.tinymce) {
  99. this.initTinymce()
  100. }
  101. },
  102. deactivated() {
  103. this.destroyTinymce()
  104. },
  105. destroyed() {
  106. this.destroyTinymce()
  107. },
  108. methods: {
  109. init() {
  110. // dynamic load tinymce from cdn
  111. load(tinymceCDN, (err) => {
  112. if (err) {
  113. this.$message.error(err.message)
  114. return
  115. }
  116. this.initTinymce()
  117. })
  118. },
  119. initTinymce() {
  120. const _this = this
  121. window.tinymce.init({
  122. language: this.language,
  123. selector: `#${this.tinymceId}`,
  124. height: this.height,
  125. body_class: 'panel-body ',
  126. object_resizing: false,
  127. toolbar: this.toolbar.length > 0 ? this.toolbar : toolbar,
  128. menubar: this.menubar,
  129. plugins: plugins,
  130. end_container_on_empty_block: true,
  131. powerpaste_word_import: 'clean',
  132. code_dialog_height: 450,
  133. code_dialog_width: 1000,
  134. advlist_bullet_styles: 'square',
  135. advlist_number_styles: 'default',
  136. imagetools_cors_hosts: ['www.tinymce.com', 'codepen.io'],
  137. default_link_target: '_blank',
  138. link_title: false,
  139. nonbreaking_force_tab: true, // inserting nonbreaking space &nbsp; need Nonbreaking Space Plugin
  140. init_instance_callback: editor => {
  141. if (_this.value) {
  142. editor.setContent(_this.value)
  143. }
  144. _this.hasInit = true
  145. editor.on('NodeChange Change KeyUp SetContent', () => {
  146. this.hasChange = true
  147. this.$emit('input', editor.getContent())
  148. })
  149. },
  150. setup(editor) {
  151. editor.on('FullscreenStateChanged', (e) => {
  152. _this.fullscreen = e.state
  153. })
  154. },
  155. // it will try to keep these URLs intact
  156. // https://www.tiny.cloud/docs-3x/reference/configuration/Configuration3x@convert_urls/
  157. // https://stackoverflow.com/questions/5196205/disable-tinymce-absolute-to-relative-url-conversions
  158. convert_urls: false
  159. // 整合七牛上传
  160. // images_dataimg_filter(img) {
  161. // setTimeout(() => {
  162. // const $image = $(img);
  163. // $image.removeAttr('width');
  164. // $image.removeAttr('height');
  165. // if ($image[0].height && $image[0].width) {
  166. // $image.attr('data-wscntype', 'image');
  167. // $image.attr('data-wscnh', $image[0].height);
  168. // $image.attr('data-wscnw', $image[0].width);
  169. // $image.addClass('wscnph');
  170. // }
  171. // }, 0);
  172. // return img
  173. // },
  174. // images_upload_handler(blobInfo, success, failure, progress) {
  175. // progress(0);
  176. // const token = _this.$store.getters.token;
  177. // getToken(token).then(response => {
  178. // const url = response.data.qiniu_url;
  179. // const formData = new FormData();
  180. // formData.append('shop-token', response.data.qiniu_token);
  181. // formData.append('key', response.data.qiniu_key);
  182. // formData.append('file', blobInfo.blob(), url);
  183. // upload(formData).then(() => {
  184. // success(url);
  185. // progress(100);
  186. // })
  187. // }).catch(err => {
  188. // failure('出现未知问题,刷新页面,或者联系程序员')
  189. // console.log(err);
  190. // });
  191. // },
  192. })
  193. },
  194. destroyTinymce() {
  195. const tinymce = window.tinymce.get(this.tinymceId)
  196. if (this.fullscreen) {
  197. tinymce.execCommand('mceFullScreen')
  198. }
  199. if (tinymce) {
  200. tinymce.destroy()
  201. }
  202. },
  203. setContent(value) {
  204. window.tinymce.get(this.tinymceId).setContent(value)
  205. },
  206. getContent() {
  207. window.tinymce.get(this.tinymceId).getContent()
  208. },
  209. imageSuccessCBK(arr) {
  210. arr.forEach(v => window.tinymce.get(this.tinymceId).insertContent(`<img class="wscnph" src="${v.url}" >`))
  211. }
  212. }
  213. }
  214. </script>
  215. <style lang="scss" scoped>
  216. .tinymce-container {
  217. position: relative;
  218. line-height: normal;
  219. }
  220. .tinymce-container {
  221. :deep(.mce-fullscreen) {
  222. z-index: 10000;
  223. }
  224. }
  225. .tinymce-textarea {
  226. visibility: hidden;
  227. z-index: -1;
  228. }
  229. .editor-custom-btn-container {
  230. position: absolute;
  231. right: 4px;
  232. top: 4px;
  233. }
  234. .fullscreen .editor-custom-btn-container {
  235. z-index: 10000;
  236. position: fixed;
  237. }
  238. .editor-upload-btn {
  239. display: inline-block;
  240. }
  241. </style>