Skip to content

Commit b227106

Browse files
imolorheacao
authored andcommitted
applied snippetCompletion to property completions
1 parent 977d4f7 commit b227106

File tree

2 files changed

+20
-13
lines changed

2 files changed

+20
-13
lines changed

.changeset/breezy-knives-tell.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"codemirror-json-schema": minor
3+
---
4+
5+
Applied `snippetCompletion` to property completions

src/json-completion.ts

+15-13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import {
22
Completion,
33
CompletionContext,
44
CompletionResult,
5+
snippetCompletion,
56
} from "@codemirror/autocomplete";
67
import { syntaxTree } from "@codemirror/language";
78
import { SyntaxNode } from "@lezer/common";
@@ -72,10 +73,6 @@ export class JSONCompletion {
7273
} else {
7374
const word = ctx.matchBefore(/[A-Za-z0-9._]*/);
7475
const overwriteStart = ctx.pos - currentWord.length;
75-
// if (overwriteStart > 0 && text[overwriteStart - 1] === '"') {
76-
// overwriteStart--;
77-
// debug.log('xxx', 'overwriteStart--', overwriteStart);
78-
// }
7976
debug.log(
8077
"xxx",
8178
"overwriteStart after",
@@ -163,6 +160,14 @@ export class JSONCompletion {
163160
);
164161
return result;
165162
}
163+
private applySnippetCompletion(completion: Completion) {
164+
return snippetCompletion(
165+
typeof completion.apply !== "string"
166+
? completion.label
167+
: completion.apply,
168+
completion
169+
);
170+
}
166171

167172
private getPropertyCompletions(
168173
schema: JSONSchema7,
@@ -204,7 +209,7 @@ export class JSONCompletion {
204209
detail: typeStr,
205210
info: description,
206211
};
207-
collector.add(completion);
212+
collector.add(this.applySnippetCompletion(completion));
208213
}
209214
});
210215
}
@@ -219,7 +224,7 @@ export class JSONCompletion {
219224
apply: this.getInsertTextForProperty(label, addValue),
220225
type: "property",
221226
};
222-
collector.add(completion);
227+
collector.add(this.applySnippetCompletion(completion));
223228
}
224229
});
225230
}
@@ -231,7 +236,7 @@ export class JSONCompletion {
231236
apply: this.getInsertTextForProperty(label, addValue),
232237
type: "property",
233238
};
234-
collector.add(completion);
239+
collector.add(this.applySnippetCompletion(completion));
235240
}
236241
}
237242
});
@@ -245,7 +250,7 @@ export class JSONCompletion {
245250
// just use the unquoted key as the label, which is nicer
246251
// and gives us more control.
247252
// If no property value is present, then we add the colon as well.
248-
// TODO: Use snippetCompletion to handle insert value + position cursor e.g. "key": "#{}"
253+
// Use snippetCompletion to handle insert value + position cursor e.g. "key": "#{}"
249254
// doc: https://codemirror.net/docs/ref/#autocomplete.snippetCompletion
250255
// idea: https://discuss.codemirror.net/t/autocomplete-cursor-position-in-apply-function/4088/3
251256
private getInsertTextForProperty(
@@ -329,13 +334,10 @@ export class JSONCompletion {
329334
}
330335
}
331336
if (!value || nValueProposals > 1) {
332-
value = "$1";
337+
value = "#{}";
333338
}
334339

335-
// TODO: Use this instead to handle insert value + position cursor e.g. "key": "#{}" when using snippetCompletion
336-
// return resultText + value;
337-
338-
return resultText;
340+
return resultText + value;
339341
}
340342

341343
private getInsertTextForGuessedValue(

0 commit comments

Comments
 (0)