| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- <script lang="ts" setup>
- import { PropType } from 'vue'
- import { Editor, Toolbar } from '@wangeditor/editor-for-vue'
- import { i18nChangeLanguage, IDomEditor, IEditorConfig } from '@wangeditor/editor'
- import { propTypes } from '@/utils/propTypes'
- import { isNumber } from '@/utils/is'
- import { ElMessage } from 'element-plus'
- import { useLocaleStore } from '@/store/modules/locale'
- import { getRefreshToken, getTenantId } from '@/utils/auth'
- import { getUploadUrl } from '@/components/UploadFile/src/useUpload'
- defineOptions({ name: 'Editor' })
- type InsertFnType = (url: string, alt: string, href: string) => void
- const localeStore = useLocaleStore()
- const currentLocale = computed(() => localeStore.getCurrentLocale)
- i18nChangeLanguage(unref(currentLocale).lang)
- const props = defineProps({
- editorId: propTypes.string.def('wangeEditor-1'),
- height: propTypes.oneOfType([Number, String]).def('500px'),
- editorConfig: {
- type: Object as PropType<Partial<IEditorConfig>>,
- default: () => undefined
- },
- readonly: propTypes.bool.def(false),
- modelValue: propTypes.string.def('')
- })
- const emit = defineEmits(['change', 'update:modelValue'])
- // 编辑器实例,必须用 shallowRef
- const editorRef = shallowRef<IDomEditor>()
- const valueHtml = ref('')
- watch(
- () => props.modelValue,
- (val: string) => {
- if (!val) {
- val = ''
- }
- if (val === unref(valueHtml)) return
- valueHtml.value = val
- },
- {
- immediate: true
- }
- )
- // 监听
- watch(
- () => valueHtml.value,
- (val: string) => {
- emit('update:modelValue', val)
- }
- )
- const handleCreated = (editor: IDomEditor) => {
- editorRef.value = editor
- }
- // 编辑器配置
- const editorConfig = computed((): IEditorConfig => {
- return Object.assign(
- {
- placeholder: '请输入内容...',
- readOnly: props.readonly,
- customAlert: (s: string, t: string) => {
- switch (t) {
- case 'success':
- ElMessage.success(s)
- break
- case 'info':
- ElMessage.info(s)
- break
- case 'warning':
- ElMessage.warning(s)
- break
- case 'error':
- ElMessage.error(s)
- break
- default:
- ElMessage.info(s)
- break
- }
- },
- autoFocus: false,
- scroll: true,
- MENU_CONF: {
- ['uploadImage']: {
- server: getUploadUrl(),
- // 单个文件的最大体积限制,默认为 2M
- maxFileSize: 5 * 1024 * 1024,
- // 最多可上传几个文件,默认为 100
- maxNumberOfFiles: 10,
- // 选择文件时的类型限制,默认为 ['image/*'] 。如不想限制,则设置为 []
- allowedFileTypes: ['image/*'],
- // 自定义增加 http header
- headers: {
- Accept: '*',
- Authorization: 'Bearer ' + getRefreshToken(), // 使用 getRefreshToken() 方法,而不使用 getAccessToken() 方法的原因:Editor 无法方便的刷新访问令牌
- 'tenant-id': getTenantId()
- },
- // 超时时间,默认为 10 秒
- timeout: 15 * 1000, // 15 秒
- // form-data fieldName,后端接口参数名称,默认值wangeditor-uploaded-image
- fieldName: 'file',
- // 上传之前触发
- onBeforeUpload(file: File) {
- // console.log(file)
- return file
- },
- // 上传进度的回调函数
- onProgress(progress: number) {
- // progress 是 0-100 的数字
- console.log('progress', progress)
- },
- onSuccess(file: File, res: any) {
- console.log('onSuccess', file, res)
- },
- onFailed(file: File, res: any) {
- alert(res.message)
- console.log('onFailed', file, res)
- },
- onError(file: File, err: any, res: any) {
- alert(err.message)
- console.error('onError', file, err, res)
- },
- // 自定义插入图片
- customInsert(res: any, insertFn: InsertFnType) {
- insertFn(res.data, 'image', res.data)
- }
- },
- ['uploadVideo']: {
- server: getUploadUrl(),
- // 单个文件的最大体积限制,默认为 10M
- maxFileSize: 10 * 1024 * 1024,
- // 最多可上传几个文件,默认为 100
- maxNumberOfFiles: 10,
- // 选择文件时的类型限制,默认为 ['video/*'] 。如不想限制,则设置为 []
- allowedFileTypes: ['video/*'],
- // 自定义增加 http header
- headers: {
- Accept: '*',
- Authorization: 'Bearer ' + getRefreshToken(), // 使用 getRefreshToken() 方法,而不使用 getAccessToken() 方法的原因:Editor 无法方便的刷新访问令牌
- 'tenant-id': getTenantId()
- },
- // 超时时间,默认为 30 秒
- timeout: 15 * 1000, // 15 秒
- // form-data fieldName,后端接口参数名称,默认值wangeditor-uploaded-image
- fieldName: 'file',
- // 上传之前触发
- onBeforeUpload(file: File) {
- // console.log(file)
- return file
- },
- // 上传进度的回调函数
- onProgress(progress: number) {
- // progress 是 0-100 的数字
- console.log('progress', progress)
- },
- onSuccess(file: File, res: any) {
- console.log('onSuccess', file, res)
- },
- onFailed(file: File, res: any) {
- alert(res.message)
- console.log('onFailed', file, res)
- },
- onError(file: File, err: any, res: any) {
- alert(err.message)
- console.error('onError', file, err, res)
- },
- // 自定义插入图片
- customInsert(res: any, insertFn: InsertFnType) {
- insertFn(res.data, 'mp4', res.data)
- }
- }
- },
- uploadImgShowBase64: true
- },
- props.editorConfig || {}
- )
- })
- const editorStyle = computed(() => {
- return {
- height: isNumber(props.height) ? `${props.height}px` : props.height
- }
- })
- // 回调函数
- const handleChange = (editor: IDomEditor) => {
- emit('change', editor)
- }
- // 组件销毁时,及时销毁编辑器
- onBeforeUnmount(() => {
- const editor = unref(editorRef.value)
- // 销毁,并移除 editor
- editor?.destroy()
- })
- const getEditorRef = async (): Promise<IDomEditor> => {
- await nextTick()
- return unref(editorRef.value) as IDomEditor
- }
- defineExpose({
- getEditorRef
- })
- </script>
- <template>
- <div class="border-1 border-solid border-[var(--tags-view-border-color)] z-10">
- <!-- 工具栏 -->
- <Toolbar
- :editor="editorRef"
- :editorId="editorId"
- class="border-0 b-b-1 border-solid border-[var(--tags-view-border-color)]"
- />
- <!-- 编辑器 -->
- <Editor
- v-model="valueHtml"
- :defaultConfig="editorConfig"
- :editorId="editorId"
- :style="editorStyle"
- @on-change="handleChange"
- @on-created="handleCreated"
- />
- </div>
- </template>
- <style src="@wangeditor/editor/dist/css/style.css"></style>
|