From 7de94e2ea37803216e5afe9d40e7121c87a5344e Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: 星期四, 24 四月 2025 14:21:14 +0800
Subject: [PATCH] 富文本复制粘贴图片上传至url

---
 src/components/Editor/index.vue |  171 +++++++++++++++++++++++++++++++++++++++++++++++---------
 1 files changed, 142 insertions(+), 29 deletions(-)

diff --git a/src/components/Editor/index.vue b/src/components/Editor/index.vue
index ef3a832..c5e2185 100644
--- a/src/components/Editor/index.vue
+++ b/src/components/Editor/index.vue
@@ -1,18 +1,44 @@
 <template>
+  <div>
+    <el-upload
+      :action="uploadUrl"
+      :before-upload="handleBeforeUpload"
+      :on-success="handleUploadSuccess"
+      :on-error="handleUploadError"
+      name="file"
+      :show-file-list="false"
+      :headers="headers"
+      class="editor-img-uploader"
+      v-if="type == 'url'"
+    >
+      <i ref="uploadRef" class="editor-img-uploader"></i>
+    </el-upload>
+  </div>
   <div class="editor">
-      <quill-editor
-        v-model:content="content"
-        contentType="html"
-        @textChange="(e) => $emit('update:modelValue', content)"
-        :options="options"
-        :style="styles"
-      />
+    <quill-editor
+      ref="quillEditorRef"
+      v-model:content="content"
+      contentType="html"
+      @textChange="(e) => $emit('update:modelValue', content)"
+      :options="options"
+      :style="styles"
+    />
   </div>
 </template>
 
 <script setup>
-import { QuillEditor } from '@vueup/vue-quill';
-import '@vueup/vue-quill/dist/vue-quill.snow.css';
+import axios from 'axios';
+import { QuillEditor } from "@vueup/vue-quill";
+import "@vueup/vue-quill/dist/vue-quill.snow.css";
+import { getToken } from "@/utils/auth";
+
+const { proxy } = getCurrentInstance();
+
+const quillEditorRef = ref();
+const uploadUrl = ref(import.meta.env.VITE_APP_BASE_API + "/common/upload"); // 涓婁紶鐨勫浘鐗囨湇鍔″櫒鍦板潃
+const headers = ref({
+  Authorization: "Bearer " + getToken()
+});
 
 const props = defineProps({
   /* 缂栬緫鍣ㄧ殑鍐呭 */
@@ -34,6 +60,16 @@
     type: Boolean,
     default: false,
   },
+  /* 涓婁紶鏂囦欢澶у皬闄愬埗(MB) */
+  fileSize: {
+    type: Number,
+    default: 5,
+  },
+  /* 绫诲瀷锛坆ase64鏍煎紡銆乽rl鏍煎紡锛� */
+  type: {
+    type: String,
+    default: "url",
+  }
 });
 
 const options = ref({
@@ -43,21 +79,20 @@
   modules: {
     // 宸ュ叿鏍忛厤缃�
     toolbar: [
-      ["bold", "italic", "underline", "strike"],       // 鍔犵矖 鏂滀綋 涓嬪垝绾� 鍒犻櫎绾�
-      ["blockquote", "code-block"],                    // 寮曠敤  浠g爜鍧�
-      [{ list: "ordered" }, { list: "bullet" }],       // 鏈夊簭銆佹棤搴忓垪琛�
-      [{ indent: "-1" }, { indent: "+1" }],            // 缂╄繘
-      [{ size: ["small", false, "large", "huge"] }],   // 瀛椾綋澶у皬
-      [{ header: [1, 2, 3, 4, 5, 6, false] }],         // 鏍囬
-      [{ color: [] }, { background: [] }],             // 瀛椾綋棰滆壊銆佸瓧浣撹儗鏅鑹�
-      [{ align: [] }],                                 // 瀵归綈鏂瑰紡
-      ["clean"],                                       // 娓呴櫎鏂囨湰鏍煎紡
-      ["link", "image", "video"]                       // 閾炬帴銆佸浘鐗囥�佽棰�
+      ["bold", "italic", "underline", "strike"],      // 鍔犵矖 鏂滀綋 涓嬪垝绾� 鍒犻櫎绾�
+      ["blockquote", "code-block"],                   // 寮曠敤  浠g爜鍧�
+      [{ list: "ordered" }, { list: "bullet" }],      // 鏈夊簭銆佹棤搴忓垪琛�
+      [{ indent: "-1" }, { indent: "+1" }],           // 缂╄繘
+      [{ size: ["small", false, "large", "huge"] }],  // 瀛椾綋澶у皬
+      [{ header: [1, 2, 3, 4, 5, 6, false] }],        // 鏍囬
+      [{ color: [] }, { background: [] }],            // 瀛椾綋棰滆壊銆佸瓧浣撹儗鏅鑹�
+      [{ align: [] }],                                // 瀵归綈鏂瑰紡
+      ["clean"],                                      // 娓呴櫎鏂囨湰鏍煎紡
+      ["link", "image", "video"]                      // 閾炬帴銆佸浘鐗囥�佽棰�
     ],
   },
-  placeholder: '璇疯緭鍏ュ唴瀹�',
-  readOnly: props.readOnly,
-  theme: 'snow'
+  placeholder: "璇疯緭鍏ュ唴瀹�",
+  readOnly: props.readOnly
 });
 
 const styles = computed(() => {
@@ -69,19 +104,101 @@
     style.height = `${props.height}px`;
   }
   return style;
-})
+});
 
 const content = ref("");
 watch(() => props.modelValue, (v) => {
-  if (v !== content) {
-    content.value = v === undefined ? "<p></p>" : v;
+  if (v !== content.value) {
+    content.value = v == undefined ? "<p></p>" : v;
   }
 }, { immediate: true });
 
+// 濡傛灉璁剧疆浜嗕笂浼犲湴鍧�鍒欒嚜瀹氫箟鍥剧墖涓婁紶浜嬩欢
+onMounted(() => {
+  if (props.type == 'url') {
+    let quill = quillEditorRef.value.getQuill();
+    let toolbar = quill.getModule("toolbar");
+    toolbar.addHandler("image", (value) => {
+      if (value) {
+        proxy.$refs.uploadRef.click();
+      } else {
+        quill.format("image", false);
+      }
+    });
+    quill.root.addEventListener('paste', handlePasteCapture, true);
+  }
+});
 
+// 涓婁紶鍓嶆牎妫�鏍煎紡鍜屽ぇ灏�
+function handleBeforeUpload(file) {
+  const type = ["image/jpeg", "image/jpg", "image/png", "image/svg"];
+  const isJPG = type.includes(file.type);
+  //妫�楠屾枃浠舵牸寮�
+  if (!isJPG) {
+    proxy.$modal.msgError(`鍥剧墖鏍煎紡閿欒!`);
+    return false;
+  }
+  // 鏍℃鏂囦欢澶у皬
+  if (props.fileSize) {
+    const isLt = file.size / 1024 / 1024 < props.fileSize;
+    if (!isLt) {
+      proxy.$modal.msgError(`涓婁紶鏂囦欢澶у皬涓嶈兘瓒呰繃 ${props.fileSize} MB!`);
+      return false;
+    }
+  }
+  return true;
+}
+
+// 涓婁紶鎴愬姛澶勭悊
+function handleUploadSuccess(res, file) {
+  // 濡傛灉涓婁紶鎴愬姛
+  if (res.code == 200) {
+    // 鑾峰彇瀵屾枃鏈疄渚�
+    let quill = toRaw(quillEditorRef.value).getQuill();
+    // 鑾峰彇鍏夋爣浣嶇疆
+    let length = quill.selection.savedRange.index;
+    // 鎻掑叆鍥剧墖锛宺es.url涓烘湇鍔″櫒杩斿洖鐨勫浘鐗囬摼鎺ュ湴鍧�
+    quill.insertEmbed(length, "image", import.meta.env.VITE_APP_BASE_API + res.fileName);
+    // 璋冩暣鍏夋爣鍒版渶鍚�
+    quill.setSelection(length + 1);
+  } else {
+    proxy.$modal.msgError("鍥剧墖鎻掑叆澶辫触");
+  }
+}
+
+// 涓婁紶澶辫触澶勭悊
+function handleUploadError() {
+  proxy.$modal.msgError("鍥剧墖鎻掑叆澶辫触");
+}
+
+// 澶嶅埗绮樿创鍥剧墖澶勭悊
+function handlePasteCapture(e) {
+  const clipboard = e.clipboardData || window.clipboardData;
+  if (clipboard && clipboard.items) {
+    for (let i = 0; i < clipboard.items.length; i++) {
+      const item = clipboard.items[i];
+      if (item.type.indexOf('image') !== -1) {
+        e.preventDefault();
+        const file = item.getAsFile();
+        insertImage(file);
+      }
+    }
+  }
+}
+
+function insertImage(file) {
+  const formData = new FormData();
+  formData.append("file", file);
+  axios.post(uploadUrl.value, formData, { headers: { "Content-Type": "multipart/form-data", Authorization: headers.value.Authorization } }).then(res => {
+    handleUploadSuccess(res.data);
+  })
+}
 </script>
 
 <style>
+.editor-img-uploader {
+  display: none;
+}
 .editor, .ql-toolbar {
   white-space: pre-wrap !important;
   line-height: normal !important;
@@ -97,11 +214,9 @@
   content: "淇濆瓨";
   padding-right: 0px;
 }
-
 .ql-snow .ql-tooltip[data-mode="video"]::before {
   content: "璇疯緭鍏ヨ棰戝湴鍧�:";
 }
-
 .ql-snow .ql-picker.ql-size .ql-picker-label::before,
 .ql-snow .ql-picker.ql-size .ql-picker-item::before {
   content: "14px";
@@ -118,7 +233,6 @@
 .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]::before {
   content: "32px";
 }
-
 .ql-snow .ql-picker.ql-header .ql-picker-label::before,
 .ql-snow .ql-picker.ql-header .ql-picker-item::before {
   content: "鏂囨湰";
@@ -147,7 +261,6 @@
 .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
   content: "鏍囬6";
 }
-
 .ql-snow .ql-picker.ql-font .ql-picker-label::before,
 .ql-snow .ql-picker.ql-font .ql-picker-item::before {
   content: "鏍囧噯瀛椾綋";

--
Gitblit v1.9.3