-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathRepl.vue
144 lines (126 loc) · 3.37 KB
/
Repl.vue
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
138
139
140
141
142
143
144
<template>
<div ref="vcv" class="vue-repl">
<SplitPane :layout="flexDirection">
<!-- output render -->
<template :slot="outputSlot">
<Output :showCompileOutput="props.showCompileOutput" :ssr="!!props.ssr" />
</template>
<!-- code editor -->
<template :slot="editorSlot">
<Editor />
</template>
</SplitPane>
</div>
</template>
<script setup lang="ts">
import { computed, provide, toRef } from "vue";
import SplitPane from "./SplitPane.vue";
import Editor from "./editor/Editor.vue";
import Output from "./output/Output.vue";
import { Store, ReplStore, SFCOptions } from "./store";
export interface Props {
store?: Store;
editor?: string;
autoResize?: boolean;
showCompileOutput?: boolean;
showImportMap?: boolean;
clearConsole?: boolean;
sfcOptions?: SFCOptions;
layout?: string;
ssr?: boolean;
}
const props = withDefaults(defineProps<Props>(), {
store: () => new ReplStore(),
editor: "monaco", // monaco || codemirror
autoResize: true,
showCompileOutput: true,
showImportMap: true,
clearConsole: true,
layout: "left",
ssr: false,
// showCode: false,
// debounceDelay: 300,
// minHeight: 300,
});
const viewLayout = computed(() =>
["top", "right", "left"].indexOf(props.layout) > -1
? props.layout
: "top"
);
const flexDirection = computed(() =>
viewLayout.value === "top" ? "vertical" : "horizontal"
);
const editorSlot = computed(() =>
viewLayout.value == "right" ? "left" : "right"
);
const outputSlot = computed(() =>
viewLayout.value == "right" ? "right" : "left"
);
// const calcHeight = computed(() => {
// let heightSetting = "";
// if (props.height && props.height >= 0) {
// let vcvHeight =
// props.height <= props.minHeight ? props.minHeight : props.height;
// heightSetting += ` height:${vcvHeight}px;`;
// }
// return heightSetting;
// });
props.store.options = props.sfcOptions;
props.store.init();
// provide(/* 注入名 */ 'message', /* 值 */ 'hello!')
provide("store", props.store);
provide("editor", props.editor);
provide("autoresize", props.autoResize);
provide("import-map", toRef(props, "showImportMap"));
provide("clear-console", toRef(props, "clearConsole"));
</script>
<style scoped>
.vue-repl {
--bg: #fff;
--bg-soft: #f8f8f8;
--border: #ddd;
--text-light: #888;
--font-code: Menlo, Monaco, Consolas, 'Courier New', monospace;
--color-branding: #42b883;
--color-branding-dark: #416f9c;
--header-height: 38px;
font-size: 13px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 0;
overflow: hidden;
background-color: var(--bg-soft);
/* border: 1px solid var(--border);
border-radius: 4px;*/
/* transition: 0.3s linear border-color; */
/* transition: box-shadow 0.2s ease-out; */
}
.dark .vue-repl {
--bg: #1a1a1a;
--bg-soft: #242424;
--border: #383838;
--text-light: #aaa;
--color-branding: #42d392;
--color-branding-dark: #89ddff;
}
:deep(button) {
border: none;
outline: none;
cursor: pointer;
margin: 0;
background-color: transparent;
}
/* .vue-repl:hover {
border: 1px solid var(--border-hover);
box-shadow: 0 0 0 2px var(--border-hover-shadow);
} */
.editor-container {
height: 100%;
overflow: hidden;
position: relative;
}
.vcv-icon {
font-size: 14px;
color: var(--text-light);
}
</style>