mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 14:10:27 +08:00
优化 cl-editor-monaco 加载
This commit is contained in:
parent
d380613ba1
commit
2f56336564
@ -229,7 +229,8 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="code">
|
<div class="code">
|
||||||
<cl-editor-monaco
|
<cl-editor
|
||||||
|
name="cl-editor-monaco"
|
||||||
:ref="setRefs('editor')"
|
:ref="setRefs('editor')"
|
||||||
v-model="activeCode.content"
|
v-model="activeCode.content"
|
||||||
height="100%"
|
height="100%"
|
||||||
@ -291,7 +292,6 @@ import { assign, isEmpty } from "lodash-es";
|
|||||||
import { useMenu, useAi } from "../hooks";
|
import { useMenu, useAi } from "../hooks";
|
||||||
import { config, isDev } from "/@/config";
|
import { config, isDev } from "/@/config";
|
||||||
import { useForm } from "@cool-vue/crud";
|
import { useForm } from "@cool-vue/crud";
|
||||||
import * as monaco from "monaco-editor";
|
|
||||||
import { sleep, storage } from "/@/cool/utils";
|
import { sleep, storage } from "/@/cool/utils";
|
||||||
import dayjs from "dayjs";
|
import dayjs from "dayjs";
|
||||||
import type { CodeItem, EpsColumn } from "../types";
|
import type { CodeItem, EpsColumn } from "../types";
|
||||||
@ -303,17 +303,6 @@ const ai = useAi();
|
|||||||
const Form = useForm();
|
const Form = useForm();
|
||||||
const { copy } = useClipboard();
|
const { copy } = useClipboard();
|
||||||
|
|
||||||
// 编辑器样式
|
|
||||||
monaco.editor.defineTheme("ai-code--dark", {
|
|
||||||
base: "vs-dark",
|
|
||||||
inherit: true,
|
|
||||||
rules: [],
|
|
||||||
colors: {
|
|
||||||
"editor.background": "#0f151e",
|
|
||||||
"editor.inactiveSelectionBackground": "#0f151e"
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// 表单
|
// 表单
|
||||||
const form = reactive({
|
const form = reactive({
|
||||||
entity: "",
|
entity: "",
|
||||||
|
@ -15,6 +15,7 @@ export default (): ModuleConfig => {
|
|||||||
],
|
],
|
||||||
|
|
||||||
components: [
|
components: [
|
||||||
|
// 依赖偏大,现用于“ai编码页面”,如不需要请注释组件
|
||||||
// 代码编辑器 https://www.npmjs.com/package/monaco-editor
|
// 代码编辑器 https://www.npmjs.com/package/monaco-editor
|
||||||
() => import("./components/monaco.vue")
|
() => import("./components/monaco.vue")
|
||||||
]
|
]
|
||||||
|
@ -1 +1,2 @@
|
|||||||
export * from "./utils/declare";
|
export * from "./utils/declare";
|
||||||
|
export * from "./utils/theme";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { editor } from "monaco-editor";
|
import { editor } from "monaco-editor";
|
||||||
|
|
||||||
editor.defineTheme("default", {
|
defineTheme("default", {
|
||||||
base: "vs",
|
base: "vs",
|
||||||
inherit: true,
|
inherit: true,
|
||||||
rules: [
|
rules: [
|
||||||
@ -348,3 +348,17 @@ editor.defineTheme("default", {
|
|||||||
"editor.selectionHighlightBorder": "#fafbfc"
|
"editor.selectionHighlightBorder": "#fafbfc"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
defineTheme("ai-code--dark", {
|
||||||
|
base: "vs-dark",
|
||||||
|
inherit: true,
|
||||||
|
rules: [],
|
||||||
|
colors: {
|
||||||
|
"editor.background": "#0f151e",
|
||||||
|
"editor.inactiveSelectionBackground": "#0f151e"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
export function defineTheme(name: string, data: editor.IStandaloneThemeData) {
|
||||||
|
editor.defineTheme(name, data);
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user