-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathYamlEditor.tsx
174 lines (155 loc) · 4.5 KB
/
YamlEditor.tsx
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
* Copyright 2024 CodeRabbit AI Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React, { useState, useEffect } from "react"
import AceEditor from "react-ace"
import "ace-builds/src-noconflict/theme-github"
import "ace-builds/src-noconflict/ext-language_tools"
import "ace-builds/webpack-resolver"
import "ace-builds/src-noconflict/mode-yaml"
import jsYaml from "js-yaml"
import Ajv from "ajv"
const ajv = new Ajv({ allErrors: true })
import Schema from "../../../static/schema/schema.v2.json"
const validate = ajv.compile(Schema.definitions.schema)
const initialValue = `# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
language: "en-US"
early_access: false
reviews:
profile: "chill"
request_changes_workflow: false
high_level_summary: true
poem: true
review_status: true
collapse_walkthrough: false
auto_review:
enabled: true
drafts: false
chat:
auto_reply: true
`
export default function YamlEditor() {
const [value, setValue] = useState(initialValue)
const [annotations, setAnnotations] = useState([])
useEffect(() => {
setValue(initialValue)
validateAndSetAnnotations(initialValue)
}, [])
function validateAndSetAnnotations(yaml) {
try {
const doc = jsYaml.load(yaml, { strict: true })
const isValid = validate(doc)
if (!isValid && validate.errors) {
setAnnotations(
validate.errors.map(err => {
const instancePathArr = err?.instancePath?.split("/")
const key =
instancePathArr && instancePathArr[instancePathArr.length - 1]
return {
row: err.instancePath ? getLineNumber(yaml, err.instancePath) : 0,
column: 0,
text: `${key}: ${err.message} ${
err?.params?.allowedValues
? `Allowed values: ${err.params.allowedValues.join(", ")}`
: ""
}`,
type: "error",
}
}),
)
} else {
setAnnotations([])
}
} catch (err) {
const instancePathArr = err?.instancePath?.split("/")
const key = instancePathArr && instancePathArr[instancePathArr.length - 1]
setAnnotations([
{
row: err.instancePath ? getLineNumber(yaml, err.instancePath) : 0,
column: 0,
text:
`${key}: ${err.message} ${
err?.params?.allowedValues
? `Allowed values: ${err.params.allowedValues.join(", ")}`
: ""
}` || "YAML parsing error",
type: "error",
},
])
}
}
function getLineNumber(yaml, instancePath) {
const lines = yaml.split("\n")
const pathParts = instancePath.split("/").filter(Boolean)
let currentObj = jsYaml.load(yaml)
let lineNumber = 0
const lastPathPart = pathParts[pathParts.length - 1]
const lastPathPartIndex = pathParts.length - 1
for (let i = 0; i < lines.length; i++) {
if (lines[i].trim().startsWith(pathParts[0] + ":")) {
// Found the top-level field
lineNumber = i
currentObj = currentObj[pathParts[0]]
for (let j = 1; j < lastPathPartIndex; j++) {
// Go through the nested fields
for (let k = lineNumber + 1; k < lines.length; k++) {
if (lines[k].trim().startsWith(pathParts[j] + ":")) {
lineNumber = k
currentObj = currentObj[pathParts[j]]
break
}
}
}
// look for the last path part with array syntax as well as object syntax
for (let l = lineNumber + 1; l < lines.length; l++) {
if (lines[l].trim().startsWith(`- ${lastPathPart}:`)) {
lineNumber = l
break
} else if (lines[l].trim().startsWith(lastPathPart + ":")) {
lineNumber = l
break
}
}
break
}
}
return lineNumber
}
function onChange(newValue) {
setValue(newValue)
validateAndSetAnnotations(newValue)
}
return (
<div className="m4">
<AceEditor
mode="yaml"
theme="github"
onChange={onChange}
value={value}
name="yaml-editor"
editorProps={{ $blockScrolling: true }}
setOptions={{
useWorker: false,
showPrintMargin: false,
showGutter: true,
}}
annotations={annotations}
width="100%"
height="400px"
/>
<br />
</div>
)
}