mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-31 01:01:27 +08:00
前端和后端源码,合并到一个git仓库中,方便用户下载,避免前后端不匹配的问题
This commit is contained in:
7
jeecgboot-vue3/src/components/Markdown/index.ts
Normal file
7
jeecgboot-vue3/src/components/Markdown/index.ts
Normal file
@ -0,0 +1,7 @@
|
||||
import { withInstall } from '/@/utils';
|
||||
import markDown from './src/Markdown.vue';
|
||||
import markDownViewer from './src/MarkdownViewer.vue';
|
||||
|
||||
export const MarkDown = withInstall(markDown);
|
||||
export const MarkdownViewer = withInstall(markDownViewer);
|
||||
export * from './src/typing';
|
||||
233
jeecgboot-vue3/src/components/Markdown/src/Markdown.vue
Normal file
233
jeecgboot-vue3/src/components/Markdown/src/Markdown.vue
Normal file
@ -0,0 +1,233 @@
|
||||
<template>
|
||||
<div ref="wrapRef"></div>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import type { Ref } from 'vue';
|
||||
import { defineComponent, ref, unref, nextTick, computed, watch, onBeforeUnmount, onDeactivated } from 'vue';
|
||||
import Vditor from 'vditor';
|
||||
import 'vditor/dist/index.css';
|
||||
import { useLocale } from '/@/locales/useLocale';
|
||||
import { useModalContext } from '../../Modal';
|
||||
import { useRootSetting } from '/@/hooks/setting/useRootSetting';
|
||||
import { onMountedOrActivated } from '/@/hooks/core/onMountedOrActivated';
|
||||
import { getTenantId, getToken } from '/@/utils/auth';
|
||||
import { getFileAccessHttpUrl } from '/@/utils/common/compUtils';
|
||||
|
||||
type Lang = 'zh_CN' | 'en_US' | 'ja_JP' | 'ko_KR' | undefined;
|
||||
|
||||
export default defineComponent({
|
||||
inheritAttrs: false,
|
||||
props: {
|
||||
height: { type: Number, default: 360 },
|
||||
value: { type: String, default: '' },
|
||||
},
|
||||
emits: ['change', 'get', 'update:value'],
|
||||
setup(props, { attrs, emit }) {
|
||||
console.log("---Markdown---初始化---")
|
||||
const wrapRef = ref<ElRef>(null);
|
||||
const vditorRef = ref(null) as Ref<Nullable<Vditor>>;
|
||||
const initedRef = ref(false);
|
||||
|
||||
const modalFn = useModalContext();
|
||||
|
||||
const { getLocale } = useLocale();
|
||||
const { getDarkMode } = useRootSetting();
|
||||
const valueRef = ref(props.value || '');
|
||||
|
||||
watch(
|
||||
[() => getDarkMode.value, () => initedRef.value],
|
||||
([val, inited]) => {
|
||||
if (!inited) {
|
||||
return;
|
||||
}
|
||||
const theme = val === 'dark' ? 'dark' : 'classic';
|
||||
instance.getVditor()?.setTheme(theme);
|
||||
},
|
||||
{
|
||||
immediate: true,
|
||||
flush: 'post',
|
||||
}
|
||||
);
|
||||
|
||||
watch(
|
||||
() => props.value,
|
||||
(v) => {
|
||||
if (v !== valueRef.value) {
|
||||
instance.getVditor()?.setValue(v);
|
||||
}
|
||||
valueRef.value = v;
|
||||
}
|
||||
);
|
||||
|
||||
const getCurrentLang = computed((): 'zh_CN' | 'en_US' | 'ja_JP' | 'ko_KR' => {
|
||||
let lang: Lang;
|
||||
switch (unref(getLocale)) {
|
||||
case 'en':
|
||||
lang = 'en_US';
|
||||
break;
|
||||
case 'ja':
|
||||
lang = 'ja_JP';
|
||||
break;
|
||||
case 'ko':
|
||||
lang = 'ko_KR';
|
||||
break;
|
||||
default:
|
||||
lang = 'zh_CN';
|
||||
}
|
||||
return lang;
|
||||
});
|
||||
//update-begin-author:taoyan date:2022-5-24 for: VUEN-1090 markdown 无法上传
|
||||
const uploadUrl = `${window._CONFIG['domianURL']}/sys/common/upload`;
|
||||
const token = getToken();
|
||||
const tenantId = getTenantId() ? getTenantId() : '0';
|
||||
function formatResult(files, responseText): string {
|
||||
let data: any = JSON.parse(responseText);
|
||||
// {"success":true,"message":"markdown/aa_1653391146501.png","code":0,"result":null,"timestamp":1653391146501}'
|
||||
let filename = files[0].name as string;
|
||||
let result = {
|
||||
msg: '',
|
||||
code: 0,
|
||||
data: {
|
||||
errFiles: [''],
|
||||
succMap: {},
|
||||
},
|
||||
};
|
||||
if (data.success) {
|
||||
result.data.errFiles = [];
|
||||
result.data.succMap = {
|
||||
[data.message]: getFileAccessHttpUrl(data.message),
|
||||
};
|
||||
} else {
|
||||
result.code = 1;
|
||||
result.msg = data.message;
|
||||
result.data.errFiles = [filename];
|
||||
}
|
||||
return JSON.stringify(result);
|
||||
}
|
||||
//update-end-author:taoyan date:2022-5-24 for: VUEN-1090 markdown 无法上传
|
||||
function init() {
|
||||
const wrapEl = unref(wrapRef) as HTMLElement;
|
||||
if (!wrapEl) return;
|
||||
const bindValue = { ...attrs, ...props };
|
||||
const insEditor = new Vditor(wrapEl, {
|
||||
theme: getDarkMode.value === 'dark' ? 'dark' : 'classic',
|
||||
lang: unref(getCurrentLang),
|
||||
// update-begin--author:liaozhiyang---date:20240520---for:【TV360X-146】Markdown组件去掉录音选项
|
||||
toolbar: [
|
||||
'emoji',
|
||||
'headings',
|
||||
'bold',
|
||||
'italic',
|
||||
'strike',
|
||||
'link',
|
||||
'|',
|
||||
'list',
|
||||
'ordered-list',
|
||||
'check',
|
||||
'outdent',
|
||||
'indent',
|
||||
'|',
|
||||
'quote',
|
||||
'line',
|
||||
'code',
|
||||
'inline-code',
|
||||
'insert-before',
|
||||
'insert-after',
|
||||
'|',
|
||||
'upload',
|
||||
// 'record',
|
||||
'table',
|
||||
'|',
|
||||
'undo',
|
||||
'redo',
|
||||
'|',
|
||||
'fullscreen',
|
||||
'edit-mode',
|
||||
{
|
||||
name: 'more',
|
||||
toolbar: ['both', 'code-theme', 'content-theme', 'export', 'outline', 'preview', 'devtools', 'info', 'help'],
|
||||
},
|
||||
],
|
||||
// update-end--author:liaozhiyang---date:20240520---for:【TV360X-146】Markdown组件去掉录音选项
|
||||
mode: 'sv',
|
||||
// cdn: 'https://cdn.jsdelivr.net/npm/vditor@3.9.6',
|
||||
cdn: 'https://unpkg.com/vditor@3.10.1',
|
||||
fullscreen: {
|
||||
index: 520,
|
||||
},
|
||||
preview: {
|
||||
actions: [],
|
||||
},
|
||||
//update-begin-author:taoyan date:2022-5-24 for: VUEN-1090 markdown 无法上传
|
||||
upload: {
|
||||
accept: 'image/*',
|
||||
url: uploadUrl,
|
||||
fieldName: 'file',
|
||||
extraData: { biz: 'markdown' },
|
||||
setHeaders() {
|
||||
return {
|
||||
'X-Access-Token': token as string,
|
||||
'X-Tenant-Id': tenantId,
|
||||
};
|
||||
},
|
||||
format(files, response) {
|
||||
return formatResult(files, response);
|
||||
},
|
||||
},
|
||||
//update-end-author:taoyan date:2022-5-24 for: VUEN-1090 markdown 无法上传
|
||||
input: (v) => {
|
||||
valueRef.value = v;
|
||||
emit('update:value', v);
|
||||
emit('change', v);
|
||||
},
|
||||
after: () => {
|
||||
nextTick(() => {
|
||||
modalFn?.redoModalHeight?.();
|
||||
insEditor.setValue(valueRef.value);
|
||||
vditorRef.value = insEditor;
|
||||
initedRef.value = true;
|
||||
emit('get', instance);
|
||||
});
|
||||
},
|
||||
blur: () => {
|
||||
//unref(vditorRef)?.setValue(props.value);
|
||||
},
|
||||
...bindValue,
|
||||
cache: {
|
||||
enable: false,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
const instance = {
|
||||
getVditor: (): Vditor => vditorRef.value!,
|
||||
};
|
||||
|
||||
function destroy() {
|
||||
const vditorInstance = unref(vditorRef);
|
||||
if (!vditorInstance) return;
|
||||
try {
|
||||
vditorInstance?.destroy?.();
|
||||
} catch (error) {}
|
||||
vditorRef.value = null;
|
||||
initedRef.value = false;
|
||||
}
|
||||
|
||||
onMountedOrActivated(init);
|
||||
|
||||
onBeforeUnmount(destroy);
|
||||
onDeactivated(destroy);
|
||||
return {
|
||||
wrapRef,
|
||||
...instance,
|
||||
};
|
||||
},
|
||||
});
|
||||
</script>
|
||||
<style lang="less" scoped>
|
||||
// update-begin--author:liaozhiyang---date:20240527---for:【TV360X-318】解决markdown控件禁用状态放大按钮还可以点击
|
||||
:deep(.vditor-menu--disabled) {
|
||||
pointer-events: none;
|
||||
}
|
||||
// update-end--author:liaozhiyang---date:20240527---for:【TV360X-318】解决markdown控件禁用状态放大按钮还可以点击
|
||||
</style>
|
||||
130
jeecgboot-vue3/src/components/Markdown/src/MarkdownViewer.vue
Normal file
130
jeecgboot-vue3/src/components/Markdown/src/MarkdownViewer.vue
Normal file
@ -0,0 +1,130 @@
|
||||
<template>
|
||||
<!-- <div v-html="getHtmlData" :class="$props.class" class="markdown-viewer markdown-body"></div> -->
|
||||
<!-- update-begin--author:liaozhiyang---date:20231201---for:【issues/872】MarkdownViewer组件无样式 -->
|
||||
<div class="preview" :class="[{ preview_dark: isDarkTheme }]">
|
||||
<div v-html="getHtmlData" :class="$props.class" class="markdown-viewer vditor-reset"></div>
|
||||
</div>
|
||||
<!-- update-begin--author:liaozhiyang---date:20231201---for:【issues/872】MarkdownViewer组件无样式 -->
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { computed, watch, ref } from 'vue';
|
||||
import showdown from 'showdown';
|
||||
import 'vditor/dist/index.css';
|
||||
import { useRootSetting } from '/@/hooks/setting/useRootSetting';
|
||||
import { ThemeEnum } from '/@/enums/appEnum';
|
||||
|
||||
const converter = new showdown.Converter();
|
||||
converter.setOption('tables', true);
|
||||
converter.setOption('emoji', true);
|
||||
const props = defineProps({
|
||||
value: { type: String },
|
||||
class: { type: String },
|
||||
});
|
||||
const getHtmlData = computed(() => converter.makeHtml(props.value || ''));
|
||||
|
||||
// update-begin--author:liaozhiyang---date:20231213---for:【issues/918】MarkdownViewer加上暗黑主题
|
||||
const isDarkTheme = ref(false);
|
||||
const { getDarkMode } = useRootSetting();
|
||||
watch(
|
||||
() => getDarkMode.value,
|
||||
(value) => {
|
||||
isDarkTheme.value = value === ThemeEnum.DARK;
|
||||
},
|
||||
{ immediate: true }
|
||||
);
|
||||
// update-end--author:liaozhiyang---date:20231213---for:【issues/918】MarkdownViewer加上暗黑主题
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
.markdown-viewer {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.preview {
|
||||
width: 100%;
|
||||
}
|
||||
.preview_dark {
|
||||
.vditor-reset {
|
||||
color: #d1d5da;
|
||||
}
|
||||
.vditor-reset a,
|
||||
.vditor-ir__link {
|
||||
color: #4285f4;
|
||||
}
|
||||
|
||||
.vditor-reset h1,
|
||||
.vditor-reset h2 {
|
||||
padding-bottom: 0.3em;
|
||||
border-bottom: 1px solid #d1d5da;
|
||||
}
|
||||
.vditor-reset hr {
|
||||
background-color: #d1d5da;
|
||||
}
|
||||
.vditor-reset blockquote {
|
||||
padding: 0 1em;
|
||||
color: #b9b9b9;
|
||||
border-left: 0.25em solid #d1d5da;
|
||||
}
|
||||
.vditor-reset iframe {
|
||||
border: 1px solid #141414;
|
||||
}
|
||||
.vditor-reset table tr {
|
||||
background-color: #2f363d;
|
||||
}
|
||||
.vditor-reset table td,
|
||||
.vditor-reset table th {
|
||||
border: 1px solid #dfe2e5;
|
||||
}
|
||||
.vditor-reset table tbody tr:nth-child(2n) {
|
||||
background-color: #24292e;
|
||||
}
|
||||
.vditor-reset code:not(.hljs):not(.highlight-chroma) {
|
||||
background-color: rgba(66, 133, 244, 0.36);
|
||||
}
|
||||
.vditor-reset .language-abc svg,
|
||||
.vditor-reset .language-abc path {
|
||||
fill: currentColor;
|
||||
color: #d1d5da;
|
||||
}
|
||||
.language-graphviz polygon {
|
||||
fill: rgba(66, 133, 244, 0.36);
|
||||
}
|
||||
.vditor-reset kbd {
|
||||
color: #d1d5da;
|
||||
background-color: #2f363d;
|
||||
border: 1px solid #141414;
|
||||
box-shadow: inset 0 -1px 0 #141414;
|
||||
}
|
||||
.vditor-copy svg {
|
||||
color: #b9b9b9;
|
||||
}
|
||||
.vditor-speech {
|
||||
background-color: #1d2125;
|
||||
border: 1px solid #141414;
|
||||
color: #b9b9b9;
|
||||
}
|
||||
.vditor-speech--current,
|
||||
.vditor-speech:hover {
|
||||
color: #fff;
|
||||
}
|
||||
.vditor-linkcard a {
|
||||
background-color: #1d2125;
|
||||
}
|
||||
.vditor-linkcard a:visited .vditor-linkcard__abstract {
|
||||
color: hsla(0, 0%, 72.5%, 0.36);
|
||||
}
|
||||
.vditor-linkcard__title {
|
||||
color: #d1d5da;
|
||||
}
|
||||
.vditor-linkcard__abstract {
|
||||
color: #b9b9b9;
|
||||
}
|
||||
.vditor-linkcard__site {
|
||||
color: #fff;
|
||||
}
|
||||
.vditor-linkcard__image {
|
||||
background-color: hsla(0, 0%, 72.5%, 0.36);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
4
jeecgboot-vue3/src/components/Markdown/src/typing.ts
Normal file
4
jeecgboot-vue3/src/components/Markdown/src/typing.ts
Normal file
@ -0,0 +1,4 @@
|
||||
import Vditor from 'vditor';
|
||||
export interface MarkDownActionType {
|
||||
getVditor: () => Vditor;
|
||||
}
|
||||
Reference in New Issue
Block a user