mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-11-10 12:43:37 +08:00
perf: 代码预览
This commit is contained in:
@@ -1,57 +0,0 @@
|
||||
<script setup lang="ts">
|
||||
import "@wangeditor/editor/dist/css/style.css";
|
||||
import { IEditorConfig } from "@wangeditor/editor";
|
||||
import { Editor } from "@wangeditor/editor-for-vue";
|
||||
import {
|
||||
onMounted,
|
||||
onBeforeUnmount,
|
||||
shallowRef,
|
||||
defineProps,
|
||||
defineEmits,
|
||||
ref
|
||||
} from "vue";
|
||||
defineOptions({
|
||||
name: "BaseEditor"
|
||||
});
|
||||
|
||||
const content = defineProps({
|
||||
content: {
|
||||
type: String,
|
||||
default: ""
|
||||
}
|
||||
});
|
||||
const emits = defineEmits(["update:content"]);
|
||||
const mode = "default";
|
||||
// 编辑器实例,必须用 shallowRef
|
||||
const editorRef = shallowRef();
|
||||
|
||||
// 内容 HTML
|
||||
const editorConfig: Partial<IEditorConfig> = { MENU_CONF: {} };
|
||||
|
||||
console.log("content", content.content);
|
||||
const htmlText = ref(content.content);
|
||||
onMounted(() => {});
|
||||
const handleCreated = editor => {
|
||||
// 记录 editor 实例,重要!
|
||||
editorRef.value = editor;
|
||||
};
|
||||
|
||||
// 组件销毁时,也及时销毁编辑器
|
||||
onBeforeUnmount(() => {
|
||||
const editor = editorRef.value;
|
||||
if (editor == null) return;
|
||||
editor.destroy();
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<Editor
|
||||
v-model="htmlText"
|
||||
:defaultConfig="editorConfig"
|
||||
:mode="mode"
|
||||
style="height: 100%; overflow-y: hidden"
|
||||
@onCreated="handleCreated"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
@@ -1,5 +1,5 @@
|
||||
import base from "./base.vue";
|
||||
import code from "./index.vue";
|
||||
|
||||
const Base = base;
|
||||
const Code = code;
|
||||
|
||||
export { Base };
|
||||
export { Code };
|
||||
|
||||
79
src/views/editor/components/index.vue
Normal file
79
src/views/editor/components/index.vue
Normal file
@@ -0,0 +1,79 @@
|
||||
<template>
|
||||
<codemirror
|
||||
v-model="myCode"
|
||||
placeholder="Code goes here..."
|
||||
:style="{ height: '100%' }"
|
||||
:autofocus="true"
|
||||
:indent-with-tab="true"
|
||||
:tab-size="2"
|
||||
:extensions="extensions"
|
||||
@ready="handleReady"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { shallowRef, defineProps, defineEmits, ref, watch } from "vue";
|
||||
import { Codemirror } from "vue-codemirror";
|
||||
import { javascript } from "@codemirror/lang-javascript";
|
||||
import { java } from "@codemirror/lang-java";
|
||||
import { xml } from "@codemirror/lang-xml";
|
||||
import { html } from "@codemirror/lang-html";
|
||||
import { oneDark } from "@codemirror/theme-one-dark";
|
||||
|
||||
defineOptions({
|
||||
name: "Codemirror"
|
||||
});
|
||||
|
||||
const code = defineProps({
|
||||
code: {
|
||||
type: String,
|
||||
default: ""
|
||||
},
|
||||
type: {
|
||||
type: String,
|
||||
default: "java"
|
||||
}
|
||||
});
|
||||
|
||||
const emits = defineEmits(["update:code", "update:type"]);
|
||||
const extensions = ref([]);
|
||||
const myCode = ref(code.code);
|
||||
extensions.value = [java(), oneDark];
|
||||
watch(
|
||||
() => code.type,
|
||||
newValue => {
|
||||
if (newValue === "javascript") {
|
||||
extensions.value[0] = javascript();
|
||||
} else if (newValue === "xml") {
|
||||
extensions.value[0] = xml();
|
||||
} else if (newValue === "html") {
|
||||
extensions.value[0] = html();
|
||||
} else {
|
||||
extensions.value[0] = java();
|
||||
}
|
||||
}
|
||||
);
|
||||
watch(
|
||||
() => code.code,
|
||||
newValue => {
|
||||
myCode.value = newValue;
|
||||
}
|
||||
);
|
||||
// Codemirror EditorView instance ref
|
||||
const view = shallowRef();
|
||||
const handleReady = payload => {
|
||||
view.value = payload.view;
|
||||
};
|
||||
|
||||
// Status is available at all times via Codemirror EditorView
|
||||
const getCodemirrorStates = () => {
|
||||
const state = view.value.state;
|
||||
const ranges = state.selection.ranges;
|
||||
const selected = ranges.reduce((r, range) => r + range.to - range.from, 0);
|
||||
const cursor = ranges[0].anchor;
|
||||
const length = state.doc.length;
|
||||
const lines = state.doc.lines;
|
||||
// more state info ...
|
||||
// return ...
|
||||
};
|
||||
</script>
|
||||
@@ -1,6 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import { ref } from "vue";
|
||||
import { Base } from "./components";
|
||||
import { Code } from "./components";
|
||||
|
||||
defineOptions({
|
||||
name: "Editor"
|
||||
@@ -27,7 +27,7 @@ const activeNames = ref("1");
|
||||
</template>
|
||||
<el-collapse v-model="activeNames" accordion>
|
||||
<el-collapse-item title="基础用法" name="1">
|
||||
<Base v-if="activeNames === '1'" />
|
||||
<Code v-if="activeNames === '1'" />
|
||||
</el-collapse-item>
|
||||
</el-collapse>
|
||||
</el-card>
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script setup lang="ts">
|
||||
import { useDetail } from "./hook";
|
||||
import { onMounted, ref, reactive } from "vue";
|
||||
import { onMounted, ref } from "vue";
|
||||
import { get, type Generator } from "@/api/generator/generator";
|
||||
import { Base } from "@/views/editor/components";
|
||||
import { Code } from "@/views/editor/components";
|
||||
|
||||
defineOptions({
|
||||
name: "TabQueryDetail"
|
||||
@@ -12,31 +12,33 @@ const { initToDetail, getParameter } = useDetail();
|
||||
initToDetail("query");
|
||||
const datas = ref([]);
|
||||
const content = ref("");
|
||||
const type = ref("java");
|
||||
onMounted(() => {
|
||||
get(getParameter.id, 1).then(data => {
|
||||
console.log("data", data);
|
||||
datas.value = data.data;
|
||||
content.value =
|
||||
'<pre><code class="language-java">' +
|
||||
data.data[0].content +
|
||||
"</code></pre>";
|
||||
content.value = data.data[0].content;
|
||||
});
|
||||
});
|
||||
const clickFn = (item: String) => {
|
||||
content.value = '<pre><code class="language-java">' + item + "</code></pre>";
|
||||
const clickFn = (item: Generator) => {
|
||||
if (item.name.indexOf("Xml") > -1) {
|
||||
type.value = "xml";
|
||||
} else if (item.name.indexOf("api") > -1) {
|
||||
type.value = "javascript";
|
||||
} else if (item.name.indexOf("index") > -1) {
|
||||
type.value = "html";
|
||||
} else {
|
||||
type.value = "java";
|
||||
}
|
||||
content.value = item.content;
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<span
|
||||
v-for="(item, index) in datas"
|
||||
:key="index"
|
||||
@click="clickFn(item.content)"
|
||||
>
|
||||
<span v-for="(item, index) in datas" :key="index" @click="clickFn(item)">
|
||||
{{ item.name }}
|
||||
</span>
|
||||
|
||||
<Base v-model:content="content" />
|
||||
<Code v-model:code="content" v-model:type="type" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user