-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
138 lines (136 loc) · 2.89 KB
/
App.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
<template>
<div class="json-warper">
<div class="color-select">
<span v-for="(value, key) in keyCOlor" :key="key" class="color-options">
<span>{{ key }}:</span>
<input v-model="keyCOlor[key]" type="color" />
</span>
</div>
<SimpleJson
:json="json"
:disabled="false"
:extend-all="false"
:extend-level="1"
:config="config"
@change="handleJsonChange"
>
<!-- <template #type-switch="{ nodeValue, allowType }">
<span @click="handleClick(nodeValue, allowType)">切换</span>
</template> -->
<template #node-value="{ nodeValue }">
<!-- 自定义类型 -->
<input
v-if="nodeValue.type === 'color'"
v-model="nodeValue.value"
class="input"
type="color"
/>
<input
v-if="nodeValue.type === 'date'"
v-model="nodeValue.value"
type="Date"
/>
</template>
</SimpleJson>
</div>
</template>
<script setup lang="tsx">
import { ref } from 'vue';
import { deepAnalysisJson, deepReductionJson } from '../package/index';
import { jsonData } from './data';
import type { Ref } from 'vue';
import type { JsonEditorConfig } from '../package/index';
const json = ref(deepAnalysisJson(jsonData));
const keyCOlor = ref({
string: '#3490de',
number: '#00b8a9',
array: '#ffde7d',
object: '#f6416c',
boolean: '#a82ffc',
date: '#3d84a8',
color: '#e84545',
});
const config: Ref<JsonEditorConfig> = ref({
keyColor: keyCOlor.value,
allowType: [
{
type: 'boolean',
desc: '布尔值',
},
{
type: 'number',
desc: '数字',
},
{
type: 'string',
desc: '字符串',
},
{
type: 'array',
desc: '数组',
},
{
type: 'object',
desc: '对象',
},
{
type: 'color',
desc: '颜色',
default: '#94B49F',
slot: true,
},
{
type: 'date',
desc: '时间',
default: '2022-02-23',
slot: true,
},
],
appendOperate: [
// {
// key: 'custom',
// title: 'mock',
// className: 'json-custom-icon',
// text: 'mock',
// clickEvent: () => {
// return new Promise((resolve) =>
// resolve({
// type: 'color',
// value: '#65C18C',
// })
// );
// },
// },
],
});
const handleJsonChange = (val: any) => {
console.log(json.value);
json.value = val;
console.log(deepReductionJson(json.value));
};
// const handleClick = (nodeValue, allowType) => {
// nodeValue.type = 'date';
// };
</script>
<style lang="less" scoped>
.json-warper {
padding: 40px;
}
.json-editor-example {
padding: 0 40px;
}
:deep(.json-custom-icon) {
margin-left: 5px;
cursor: pointer;
color: green;
}
.input {
height: 20px;
}
.color-select {
margin-bottom: 20px;
.color-options {
margin-right: 10px;
}
}
</style>