123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379 |
- <template>
- <div>
- <el-upload
- :action="uploadUrl"
- :on-error="handleUploadError"
- name="file"
- :show-file-list="false"
- :headers="headers"
- style="display: none"
- ref="upload"
- :http-request="imageChange"
- >
- </el-upload>
- <div class="editor" ref="editor" :style="styles"></div>
- </div>
- </template>
- <script>
- import Quill from "quill";
- import "quill/dist/quill.core.css";
- import "quill/dist/quill.snow.css";
- import "quill/dist/quill.bubble.css";
- import { getToken } from "@/utils/auth";
- import ImageResize from "quill-image-resize-module";
- export default {
- name: "Editor",
- props: {
- /* 编辑器的内容 */
- value: {
- type: String,
- default: "",
- },
- /* 高度 */
- height: {
- type: Number,
- default: null,
- },
- /* 最小高度 */
- minHeight: {
- type: Number,
- default: null,
- },
- /* 最大高度 */
- maxHeight: {
- type: Number,
- default: null,
- },
- /* 只读 */
- readOnly: {
- type: Boolean,
- default: false,
- },
- // /* 上传地址 */
- uploadStatus: {
- type: Number,
- default: null,
- },
- },
- data() {
- return {
- datas: {},
- uploadUrl: "",
- headers: {
- AuthorizationToken: "Bearer " + getToken(),
- },
- Quill: null,
- currentValue: "",
- options: {
- theme: "snow",
- bounds: document.body,
- debug: "warn",
- modules: {
- clipboard: {
- // 粘贴版,处理粘贴时候带图片
- matchers: [[Node.ELEMENT_NODE, this.handleCustomMatcher]],
- },
- // 工具栏配置
- toolbar: [
- ["bold", "italic", "underline", "strike"], // 加粗 斜体 下划线 删除线
- ["blockquote", "code-block"], // 引用 代码块
- [{ 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"], // 链接、图片
- ],
- imageResize: {
- displayStyles: {
- backgroundColor: "black",
- border: "none",
- color: "white",
- },
- modules: ["Resize", "DisplaySize", "Toolbar"],
- },
- },
- placeholder: "请输入内容",
- readOnly: this.readOnly,
- },
- };
- },
- computed: {
- styles() {
- let style = {};
- if (this.minHeight) {
- style.minHeight = `${this.minHeight}px`;
- }
- if (this.maxHeight) {
- style.maxHeight = `${this.maxHeight}px`;
- }
- if (this.height) {
- style.height = `${this.height}px`;
- }
- return style;
- },
- },
- watch: {
- value: {
- handler(val) {
- if (val !== this.currentValue) {
- this.currentValue = val === null ? "" : val;
- if (this.Quill) {
- this.Quill.pasteHTML(this.currentValue);
- }
- }
- },
- immediate: true,
- },
- },
- mounted() {
- Quill.register("modules/imageResize", ImageResize);
- new Promise((resolve, reject) => {
- var datats = {
- imageStatus: this.uploadStatus,
- };
- this.$api.getPolicy(datats).then((res) => {
- this.datas = res.data.resultContent;
- console.log(res.data.resultContent.host)
- this.uploadUrl = res.data.resultContent.host;
- resolve();
- });
- }).then(() => {
- this.init();
- });
- },
- beforeDestroy() {
- this.Quill = null;
- },
- methods: {
- handleCustomMatcher(node, Delta) {
- console.log("handleCustomMatcher")
- let ops = [];
- Delta.ops.forEach((op) => {
- if (op.insert && typeof op.insert === "string") {
- // 如果粘贴了图片,这里会是一个对象,所以可以这样处理
- ops.push({
- insert: op.insert,
- });
- } else {
- if (op.insert.image.includes("data:image")) {
- /**
- * 粘贴图片
- */
- let arr = op.insert.image.split(",");
- let mime = arr[0].match(/:(.*?);/)[1];
- let bytes = atob(arr[1]);
- let n = bytes.length;
- let ia = new Uint8Array(n);
- while (n--) {
- ia[n] = bytes.charCodeAt(n);
- }
- let arry = new File([ia], "随机名称", { type: mime });
- this.imageChange({
- file: arry,
- });
- } else {
- ops.push({
- insert: op.insert,
- });
- }
- }
- });
- Delta.ops = ops;
- return Delta;
- },
- base64ToFile(base64, fileName) {
- console.log("base64ToFile")
- return new Promise((resolve, reject) => {
- let arr = base64.split(",");
- let mime = arr[0].match(/:(.*?);/)[1];
- let bytes = atob(arr[1]);
- let n = bytes.length;
- let ia = new Uint8Array(n);
- while (n--) {
- ia[n] = bytes.charCodeAt(n);
- }
- let arry = new File([ia], fileName, { type: mime });
- this.$upload.upload(arry, 2).then((res) => {
- resolve(this.$methodsTools.splitImgHost(res));
- });
- });
- },
- init() {
- console.log("init")
- const editor = this.$refs.editor;
- this.Quill = new Quill(editor, this.options);
- // 如果设置了上传地址则自定义图片上传事件
- if (this.uploadUrl) {
- let toolbar = this.Quill.getModule("toolbar");
- toolbar.addHandler("image", (value) => {
- this.uploadType = "image";
- if (value) {
- // document.querySelector(".avatar-uploader input").click();
- this.$refs.upload.$children[0].$refs.input.click();
- } else {
- this.quill.format("image", false);
- }
- });
- toolbar.addHandler("video", (value) => {
- this.uploadType = "video";
- if (value) {
- this.$refs.upload.$children[0].$refs.input.click();
- } else {
- this.quill.format("video", false);
- }
- });
- }
- this.Quill.enable(false);
- this.Quill.pasteHTML(this.currentValue);
- // this.$nextTick(function() {
- // this.Quill.blur();
- // this.Quill.enable(true);
- // });
- this.Quill.on("text-change", (delta, oldDelta, source) => {
- const html = this.$refs.editor.children[0].innerHTML;
- const text = this.Quill.getText();
- const quill = this.Quill;
- this.currentValue = html;
- this.$emit("input", html);
- this.$emit("on-change", { html, text, quill });
- this.$emit("on-text-change", delta, oldDelta, source);
- });
- this.Quill.on("selection-change", (range, oldRange, source) => {
- this.$emit("on-selection-change", range, oldRange, source);
- });
- this.Quill.on("editor-change", (eventName, ...args) => {
- this.$emit("on-editor-change", eventName, ...args);
- });
- editor.onclick = () => {
- this.Quill.enable(true);
- this.Quill.focus();
- };
- },
- imageChange(param, type) {
- console.log("imageChange")
- this.$upload
- .upload(param.file, this.uploadStatus)
- .then((res) => {
- let quill = this.Quill;
- // 获取光标所在位置
- let length = quill.getSelection().index;
- // 插入图片 res.url为服务器返回的图片地址
- quill.insertEmbed(
- length,
- "image",
- this.$methodsTools.splitImgHost(res)
- );
- // 调整光标到最后
- quill.setSelection(length + 1);
- })
- .catch((err) => {
- console.log(err);
- });
- },
- handleUploadError() {
- this.$message.error("图片插入失败");
- },
- },
- };
- </script>
- <style>
- .editor,
- .ql-toolbar {
- white-space: pre-wrap !important;
- line-height: normal !important;
- }
- .ql-toolbar.ql-snow {
- border-top-left-radius: 8px;
- border-top-right-radius: 8px;
- }
- .ql-container {
- border-bottom-left-radius: 8px;
- border-bottom-right-radius: 8px;
- overflow: auto;
- }
- .quill-img {
- display: none;
- }
- .ql-snow .ql-tooltip[data-mode="link"]::before {
- content: "请输入链接地址:";
- }
- .ql-snow .ql-tooltip.ql-editing a.ql-action::after {
- border-right: 0px;
- 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";
- }
- .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="small"]::before,
- .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]::before {
- content: "10px";
- }
- .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="large"]::before,
- .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]::before {
- content: "18px";
- }
- .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="huge"]::before,
- .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: "文本";
- }
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
- content: "标题1";
- }
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
- content: "标题2";
- }
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
- content: "标题3";
- }
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
- content: "标题4";
- }
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
- content: "标题5";
- }
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
- .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: "标准字体";
- }
- .ql-snow .ql-picker.ql-font .ql-picker-label[data-value="serif"]::before,
- .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]::before {
- content: "衬线字体";
- }
- .ql-snow .ql-picker.ql-font .ql-picker-label[data-value="monospace"]::before,
- .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]::before {
- content: "等宽字体";
- }
- .ql-toolbar {
- background-color: #eee !important;
- }
- </style>
|