移动系统liao
3 天以前 a737f5caf67b75abec3e89296c4321ea6d31bd9b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<template>
    <div class="editor-container">
        <Toolbar :editor="editorRef" :mode="mode" />
        <Editor :mode="mode" :defaultConfig="state.editorConfig" :style="{ height }" v-model="state.editorVal" @onCreated="handleCreated" @onChange="handleChange" />
    </div>
</template>
 
<script setup lang="ts" name="wngEditor">
// https://www.wangeditor.com/v5/for-frame.html#vue3
import '@wangeditor/editor/dist/css/style.css';
import { reactive, shallowRef, watch, onBeforeUnmount } from 'vue';
import { IDomEditor } from '@wangeditor/editor';
import { Toolbar, Editor } from '@wangeditor/editor-for-vue';
import { ElMessage } from 'element-plus';
import { getAPI } from '/@/utils/axios-utils';
import { SysFileApi } from '/@/api-services/api';
 
// 定义父组件传过来的值
const props = defineProps({
    // 是否禁用
    disable: {
        type: Boolean,
        default: () => false,
    },
    // 内容框默认 placeholder
    placeholder: {
        type: String,
        default: () => '请输入内容...',
    },
    // https://www.wangeditor.com/v5/getting-started.html#mode-%E6%A8%A1%E5%BC%8F
    // 模式,可选 <default|simple>,默认 default
    mode: {
        type: String,
        default: () => 'default',
    },
    // 高度
    height: {
        type: String,
        default: () => '310px',
    },
    // 双向绑定,用于获取 editor.getHtml()
    getHtml: String,
    // 双向绑定,用于获取 editor.getText()
    getText: String,
});
 
// 定义子组件向父组件传值/事件
const emit = defineEmits(['update:getHtml', 'update:getText']);
 
// 定义变量内容
const editorRef = shallowRef();
const state = reactive({
    editorConfig: {
        placeholder: props.placeholder,
        // 菜单配置
        MENU_CONF: {
            uploadImage: {
                fieldName: 'file',
                customUpload(file: File, insertFn: any) {
                    getAPI(SysFileApi).apiSysFileUploadFilePostForm(file).then(({data}) => {
                        if (data.type == 'success' && data.result) {
                            editorRef.value.insertNode({ type: 'image', src: data.result.url, alt: data.result.fileName, href: data.result.url, children: [{ text: '' }] })
                        } else {
                            ElMessage.error('上传失败!')
                        }
                    })
                },
            },
            insertImage: {
                checkImage(src: string, alt: string, href: string): boolean | string | undefined {
                    if (src.indexOf('http') !== 0) {
                        return '图片网址必须以 http/https 开头';
                    }
                    return true;
                },
            },
        },
    },
    editorVal: props.getHtml,
});
 
// 编辑器回调函数
const handleCreated = (editor: IDomEditor) => {
    editorRef.value = editor;
};
// 编辑器内容改变时
const handleChange = (editor: IDomEditor) => {
    emit('update:getHtml', editor.getHtml());
    emit('update:getText', editor.getText());
};
// 页面销毁时
onBeforeUnmount(() => {
    const editor = editorRef.value;
    if (editor == null) return;
    editor.destroy();
});
// 监听是否禁用改变
// https://gitee.com/lyt-top/vue-next-admin/issues/I4LM7I
watch(
    () => props.disable,
    (bool) => {
        const editor = editorRef.value;
        if (editor == null) return;
        bool ? editor.disable() : editor.enable();
    },
    {
        deep: true,
    }
);
// 监听双向绑定值改变,用于回显
watch(
    () => props.getHtml,
    (val) => {
        state.editorVal = val;
    },
    {
        deep: true,
    }
);
 
// 暴露 editorRef
defineExpose({
    ref: editorRef,
});
</script>
<style lang="less">
.editor-container {
    overflow-y: hidden;
    .w-e-bar-item {
        .w-e-select-list {
            height: 150px;
            z-index: 10 !important;
        }
    }
    .w-e-text-container {
        // 文本框里面的层级调低
        //z-index: 3 !important;
    }
    .w-e-toolbar {
        // 给工具栏换行
        flex-wrap: wrap;
        z-index: 4 !important;
    }
    .w-e-menu {
        // 最重要的一句代码
        z-index: auto !important;
        .w-e-droplist {
            // 触发工具栏后的显示框调高
            z-index: 2 !important;
        }
    }
}
</style>