Skip to content

Commit d4cfe11

Browse files
authored
improve autocompletion with support for allOf, anyOf, oneOf (#30)
* improve autocompletion with support for allOf, anyOf, oneOf * script to replace process.env.NODE_ENV just in case * remove mode option for hover, no longer needed
1 parent 0bbe122 commit d4cfe11

13 files changed

+283
-300
lines changed

.changeset/brown-candles-promise.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"codemirror-json-schema": minor
3+
---
4+
5+
improve autocompletion with support for allOf, anyOf, oneOf

docs/modules/index.md

+46-51
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,15 @@
1212

1313
### Utilities
1414

15-
- [getJsonPointerAt](index.md#getjsonpointerat)
1615
- [getJsonPointers](index.md#getjsonpointers)
1716
- [jsonPointerForPosition](index.md#jsonpointerforposition)
1817
- [parseJSONDocument](index.md#parsejsondocument)
1918
- [parseJSONDocumentState](index.md#parsejsondocumentstate)
2019

20+
### Functions
21+
22+
- [getJsonPointerAt](index.md#getjsonpointerat)
23+
2124
### Type Aliases
2225

2326
- [CursorData](index.md#cursordata)
@@ -61,7 +64,7 @@ provides a JSON schema enabled autocomplete extension for codemirror
6164

6265
#### Defined in
6366

64-
[json-completion.ts:820](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/json-completion.ts#L820)
67+
[json-completion.ts:749](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/json-completion.ts#L749)
6568

6669
---
6770

@@ -98,7 +101,7 @@ provides a JSON schema enabled tooltip extension for codemirror
98101

99102
#### Defined in
100103

101-
[json-hover.ts:39](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/json-hover.ts#L39)
104+
[json-hover.ts:38](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/json-hover.ts#L38)
102105

103106
---
104107

@@ -133,37 +136,10 @@ Helper for simpler class instantiaton
133136

134137
#### Defined in
135138

136-
[json-validation.ts:35](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/json-validation.ts#L35)
139+
[json-validation.ts:35](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/json-validation.ts#L35)
137140

138141
## Utilities
139142

140-
### getJsonPointerAt
141-
142-
**getJsonPointerAt**(`docText`, `node`, `mode?`): `string`
143-
144-
get a JSON4/5 pointer for a given node in the editor
145-
146-
adapted from https://discuss.codemirror.net/t/json-pointer-at-cursor-seeking-implementation-critique/4793/3
147-
this could be useful for other things later!
148-
149-
#### Parameters
150-
151-
| Name | Type | Default value |
152-
| :-------- | :------------------------------ | :------------ |
153-
| `docText` | `Text` | `undefined` |
154-
| `node` | `SyntaxNode` | `undefined` |
155-
| `mode` | [`JSONMode`](index.md#jsonmode) | `"json4"` |
156-
157-
#### Returns
158-
159-
`string`
160-
161-
#### Defined in
162-
163-
[utils/jsonPointers.ts:37](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/utils/jsonPointers.ts#L37)
164-
165-
---
166-
167143
### getJsonPointers
168144

169145
**getJsonPointers**(`state`, `mode?`): [`JSONPointersMap`](index.md#jsonpointersmap)
@@ -183,32 +159,31 @@ retrieve a Map of all the json pointers in a document
183159

184160
#### Defined in
185161

186-
[utils/jsonPointers.ts:98](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/utils/jsonPointers.ts#L98)
162+
[utils/jsonPointers.ts:56](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/utils/jsonPointers.ts#L56)
187163

188164
---
189165

190166
### jsonPointerForPosition
191167

192-
**jsonPointerForPosition**(`state`, `pos`, `side`, `mode?`): `string`
168+
**jsonPointerForPosition**(`state`, `pos`, `side?`): `string`
193169

194170
retrieve a JSON pointer for a given position in the editor
195171

196172
#### Parameters
197173

198-
| Name | Type | Default value |
199-
| :------ | :------------------------------ | :------------ |
200-
| `state` | `EditorState` | `undefined` |
201-
| `pos` | `number` | `undefined` |
202-
| `side` | `Side` | `undefined` |
203-
| `mode` | [`JSONMode`](index.md#jsonmode) | `"json4"` |
174+
| Name | Type | Default value |
175+
| :------ | :------------ | :------------ |
176+
| `state` | `EditorState` | `undefined` |
177+
| `pos` | `number` | `undefined` |
178+
| `side` | `Side` | `-1` |
204179

205180
#### Returns
206181

207182
`string`
208183

209184
#### Defined in
210185

211-
[utils/jsonPointers.ts:81](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/utils/jsonPointers.ts#L81)
186+
[utils/jsonPointers.ts:44](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/utils/jsonPointers.ts#L44)
212187

213188
---
214189

@@ -235,7 +210,7 @@ Mimics the behavior of `json-source-map`'s `parseJSONDocument` function using co
235210

236211
#### Defined in
237212

238-
[utils/parseJSONDocument.ts:23](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/utils/parseJSONDocument.ts#L23)
213+
[utils/parseJSONDocument.ts:23](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/utils/parseJSONDocument.ts#L23)
239214

240215
---
241216

@@ -262,7 +237,28 @@ Return parsed data and json pointers for a given codemirror EditorState
262237

263238
#### Defined in
264239

265-
[utils/parseJSONDocument.ts:9](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/utils/parseJSONDocument.ts#L9)
240+
[utils/parseJSONDocument.ts:9](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/utils/parseJSONDocument.ts#L9)
241+
242+
## Functions
243+
244+
### getJsonPointerAt
245+
246+
**getJsonPointerAt**(`docText`, `node`): `string`
247+
248+
#### Parameters
249+
250+
| Name | Type |
251+
| :-------- | :----------- |
252+
| `docText` | `Text` |
253+
| `node` | `SyntaxNode` |
254+
255+
#### Returns
256+
257+
`string`
258+
259+
#### Defined in
260+
261+
[utils/jsonPointers.ts:12](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/utils/jsonPointers.ts#L12)
266262

267263
## Type Aliases
268264

@@ -279,7 +275,7 @@ Return parsed data and json pointers for a given codemirror EditorState
279275

280276
#### Defined in
281277

282-
[json-hover.ts:12](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/json-hover.ts#L12)
278+
[json-hover.ts:12](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/json-hover.ts#L12)
283279

284280
---
285281

@@ -289,7 +285,7 @@ Return parsed data and json pointers for a given codemirror EditorState
289285

290286
#### Defined in
291287

292-
[json-hover.ts:14](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/json-hover.ts#L14)
288+
[json-hover.ts:14](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/json-hover.ts#L14)
293289

294290
---
295291

@@ -303,12 +299,11 @@ Return parsed data and json pointers for a given codemirror EditorState
303299
| :--------------- | :---------------------------------------------------------------------- |
304300
| `formatHover?` | (`data`: `HoverTexts`) => `HTMLElement` |
305301
| `getHoverTexts?` | (`data`: [`FoundCursorData`](index.md#foundcursordata)) => `HoverTexts` |
306-
| `mode?` | [`JSONMode`](index.md#jsonmode) |
307302
| `parser?` | (`text`: `string`) => `any` |
308303

309304
#### Defined in
310305

311-
[json-hover.ts:18](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/json-hover.ts#L18)
306+
[json-hover.ts:18](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/json-hover.ts#L18)
312307

313308
---
314309

@@ -318,7 +313,7 @@ Return parsed data and json pointers for a given codemirror EditorState
318313

319314
#### Defined in
320315

321-
[utils/jsonPointers.ts:8](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/utils/jsonPointers.ts#L8)
316+
[utils/jsonPointers.ts:8](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/utils/jsonPointers.ts#L8)
322317

323318
---
324319

@@ -335,7 +330,7 @@ Return parsed data and json pointers for a given codemirror EditorState
335330

336331
#### Defined in
337332

338-
[types.ts:4](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/types.ts#L4)
333+
[types.ts:4](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/types.ts#L4)
339334

340335
---
341336

@@ -354,7 +349,7 @@ Return parsed data and json pointers for a given codemirror EditorState
354349

355350
#### Defined in
356351

357-
[types.ts:9](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/types.ts#L9)
352+
[types.ts:9](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/types.ts#L9)
358353

359354
---
360355

@@ -364,7 +359,7 @@ Return parsed data and json pointers for a given codemirror EditorState
364359

365360
#### Defined in
366361

367-
[types.ts:18](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/types.ts#L18)
362+
[types.ts:18](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/types.ts#L18)
368363

369364
---
370365

@@ -381,4 +376,4 @@ Return parsed data and json pointers for a given codemirror EditorState
381376

382377
#### Defined in
383378

384-
[json-validation.ts:24](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/json-validation.ts#L24)
379+
[json-validation.ts:24](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/json-validation.ts#L24)

docs/modules/json5.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Instantiates a JSONHover instance with the JSON5 mode
4949

5050
#### Defined in
5151

52-
[json5-hover.ts:13](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/json5-hover.ts#L13)
52+
[json5-hover.ts:13](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/json5-hover.ts#L13)
5353

5454
---
5555

@@ -84,7 +84,7 @@ Instantiates a JSONValidation instance with the JSON5 mode
8484

8585
#### Defined in
8686

87-
[json5-validation.ts:10](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/json5-validation.ts#L10)
87+
[json5-validation.ts:10](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/json5-validation.ts#L10)
8888

8989
## Utilities
9090

@@ -111,7 +111,7 @@ Mimics the behavior of `json-source-map`'s `parseJSONDocument` function, for jso
111111

112112
#### Defined in
113113

114-
[utils/parseJSON5Document.ts:28](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/utils/parseJSON5Document.ts#L28)
114+
[utils/parseJSON5Document.ts:28](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/utils/parseJSON5Document.ts#L28)
115115

116116
---
117117

@@ -138,4 +138,4 @@ Return parsed data and json5 pointers for a given codemirror EditorState
138138

139139
#### Defined in
140140

141-
[utils/parseJSON5Document.ts:14](https://github.com/acao/codemirror-json-schema/blob/31d3cd5/src/utils/parseJSON5Document.ts#L14)
141+
[utils/parseJSON5Document.ts:14](https://github.com/acao/codemirror-json-schema/blob/dcf7e5c/src/utils/parseJSON5Document.ts#L14)

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
"dependencies": {
4848
"@sagold/json-pointer": "^5.1.1",
4949
"@types/json-schema": "^7.0.12",
50+
"@types/node": "^20.4.2",
5051
"json-schema": "^0.2.3",
5152
"json-schema-library": "^8.0.0"
5253
},
@@ -82,12 +83,14 @@
8283
},
8384
"scripts": {
8485
"dev": "vite ./dev --port 3000",
85-
"build": "tsc && vite build ./dev --outDir ../public --emptyOutDir && pnpm typedoc",
86+
"build": "pnpm tsc && vite build ./dev --outDir ../public --emptyOutDir && pnpm typedoc",
8687
"test": "vitest --dom",
8788
"test:coverage": "vitest run --dom --coverage",
89+
"tsc": "tsc && pnpm replace:env",
8890
"version-packages": "changeset version && pnpm prettier:write CHANGELOG.md && git add package.json pnpm-lock.yaml CHANGELOG.md",
8991
"release": "pnpm build && changeset publish",
9092
"typedoc": "typedoc --out docs src/index.ts src/json5.ts && pnpm prettier:write docs/**/*",
91-
"prettier:write": "prettier --ignore-path .gitignore --write"
93+
"prettier:write": "prettier --ignore-path .gitignore --write",
94+
"replace:env": "sh scripts/replace-env.sh"
9295
}
9396
}

pnpm-lock.yaml

+13-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/replace-env.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
sed -i -e 's/process\.env\.NODE_ENV/\"production\"/g' dist/**/*.js

0 commit comments

Comments
 (0)