xiaoyi
20 小时以前 9637c9dd2994f73def8b906411545617016553c5
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
<script lang="ts" setup>
import type { Nullable } from '../../../../types/src';
 
import type { CodeEditorProps } from './types';
 
import {
  nextTick,
  onMounted,
  onUnmounted,
  ref,
  unref,
  watch,
  watchEffect,
} from 'vue';
 
import { usePreferences } from '../../../../preferences/src';
 
import { useDebounceFn, useWindowSize } from '@vueuse/core';
import CodeMirror from 'codemirror';
 
import { MODE } from './types';
 
// modes
import 'codemirror/mode/javascript/javascript';
import 'codemirror/mode/css/css';
import 'codemirror/mode/htmlmixed/htmlmixed';
 
// css
import './codemirror.css';
import 'codemirror/theme/idea.css';
import 'codemirror/theme/material-palenight.css';
 
const props = withDefaults(defineProps<CodeEditorProps>(), {
  mode: MODE.JSON,
  value: '',
  readonly: false,
  bordered: false,
  autoFormat: true,
});
 
const emit = defineEmits(['change']);
 
const { isDark } = usePreferences();
const { width, height } = useWindowSize();
 
const el = ref();
let editor: Nullable<CodeMirror.Editor>;
 
const debounceRefresh = useDebounceFn(refresh, 100);
 
watch(
  () => props.value,
  async (value) => {
    await nextTick();
    const oldValue = editor?.getValue();
    if (value !== oldValue) editor?.setValue(value || '');
  },
  { flush: 'post' },
);
 
watchEffect(() => {
  editor?.setOption('mode', props.mode);
});
 
watch(
  () => isDark.value,
  async () => {
    setTheme();
  },
  {
    immediate: true,
  },
);
 
watch(
  () => [width.value, height.value],
  async () => {
    debounceRefresh();
  },
);
 
function setTheme() {
  unref(editor)?.setOption(
    'theme',
    isDark.value ? 'material-palenight' : 'idea',
  );
}
 
function refresh() {
  editor?.refresh();
}
 
async function init() {
  const addonOptions = {
    autoCloseBrackets: true,
    autoCloseTags: true,
    foldGutter: true,
    gutters: ['CodeMirror-linenumbers'],
  };
 
  editor = CodeMirror(el.value!, {
    value: '',
    mode: props.mode,
    readOnly: props.readonly,
    tabSize: 2,
    theme: 'material-palenight',
    lineWrapping: true,
    lineNumbers: true,
    ...addonOptions,
  });
  editor?.setValue(props.value);
  setTheme();
  editor?.on('change', () => {
    emit('change', editor?.getValue());
  });
}
 
onMounted(async () => {
  await nextTick();
  init();
});
 
onUnmounted(() => {
  editor = null;
});
</script>
 
<template>
  <div
    ref="el"
    class="relative !h-full w-full overflow-hidden"
    :class="{
      'ant-input': props.bordered,
      'css-dev-only-do-not-override-kqecok': props.bordered,
    }"
  ></div>
</template>