Skip to content
This repository was archived by the owner on Mar 6, 2022. It is now read-only.

Commit 465edc1

Browse files
committed
Add support for sort text
1 parent 89eae53 commit 465edc1

File tree

7 files changed

+60
-8
lines changed

7 files changed

+60
-8
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"phly/phly-event-dispatcher": "^1.0",
1616
"phpactor/code-transform": "^0.4.0",
1717
"phpactor/code-transform-extension": "^0.2.1",
18-
"phpactor/completion": "~0.4.2",
18+
"phpactor/completion": "~0.4.3",
1919
"phpactor/completion-extension": "~0.2.2",
2020
"phpactor/completion-worse-extension": "^0.2.0",
2121
"phpactor/console-extension": "~0.1",

lib/LanguageServerCompletion/Handler/CompletionHandler.php

+12-2
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,14 @@ public function completion(CompletionParams $params, CancellationToken $token):
111111
: InsertTextFormat::PLAIN_TEXT
112112
;
113113
}
114-
115-
$items[] = CompletionItem::fromArray([
114+
115+
$items[] = $i = CompletionItem::fromArray([
116116
'label' => $name,
117117
'kind' => PhpactorToLspCompletionType::fromPhpactorType($suggestion->type()),
118118
'detail' => $this->formatShortDescription($suggestion),
119119
'documentation' => $suggestion->documentation(),
120120
'insertText' => $insertText,
121+
'sortText' => $this->sortText($suggestion),
121122
'textEdit' => $this->textEdit($suggestion, $textDocument),
122123
'command' => $this->command($textDocument->uri, $byteOffset, $suggestion),
123124
'insertTextFormat' => $insertTextFormat
@@ -191,4 +192,13 @@ private function formatShortDescription(Suggestion $suggestion): string
191192

192193
return $prefix . $suggestion->shortDescription();
193194
}
195+
196+
private function sortText(Suggestion $suggestion): ?string
197+
{
198+
if (null === $suggestion->priority()) {
199+
return null;
200+
}
201+
202+
return sprintf('%04s-%s', $suggestion->priority(), $suggestion->name());
203+
}
194204
}

lib/LanguageServerCompletion/Util/PhpactorToLspCompletionType.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ public static function fromPhpactorType(?string $suggestionType): ?int
4545
case Suggestion::TYPE_REFERENCE:
4646
return CompletionItemKind::REFERENCE;
4747
case Suggestion::TYPE_CONSTANT:
48-
return 21; // not currently in the LSP protocol library
48+
return CompletionItemKind::CONSTANT;
49+
case Suggestion::TYPE_FIELD:
50+
return CompletionItemKind::FIELD;
4951
default:
5052
return null;
5153
endswitch;

lib/LanguageServerWorseReflection/Workspace/WorkspaceIndex.php

+1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ private function updateDocument(TextDocument $textDocument): void
105105

106106
asyncCall(function () {
107107
yield delay($this->updateInterval);
108+
108109
$this->waiting = false;
109110

110111
if (null === $this->documentToUpdate) {

tests/LanguageServerCompletion/Unit/Handler/CompletionHandlerTest.php

+38
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,44 @@ public function testHandleSuggestionsWithSnippetsWhenClientDoesNotSupportIt()
193193
$this->assertFalse($response->result->isIncomplete);
194194
}
195195

196+
public function testHandleSuggestionsWithProiority(): void
197+
{
198+
$tester = $this->create([
199+
Suggestion::createWithOptions('hello', [
200+
'type' => Suggestion::TYPE_METHOD,
201+
'label' => 'hello',
202+
'priority' => Suggestion::PRIORITY_HIGH
203+
]),
204+
Suggestion::createWithOptions('goodbye', [
205+
'type' => Suggestion::TYPE_METHOD,
206+
'snippet' => 'goodbye()',
207+
'priority' => Suggestion::PRIORITY_LOW
208+
]),
209+
Suggestion::createWithOptions('$var', [
210+
'type' => Suggestion::TYPE_VARIABLE,
211+
]),
212+
], false);
213+
214+
$response = $tester->requestAndWait(
215+
'textDocument/completion',
216+
[
217+
'textDocument' => ProtocolFactory::textDocumentIdentifier(self::EXAMPLE_URI),
218+
'position' => ProtocolFactory::position(0, 0)
219+
]
220+
);
221+
222+
$this->assertEquals([
223+
self::completionItem('hello', 2, [
224+
'sortText' => '0064-hello',
225+
]),
226+
self::completionItem('goodbye', 2, [
227+
'sortText' => '0255-goodbye',
228+
]),
229+
self::completionItem('var', 6),
230+
], $response->result->items);
231+
$this->assertFalse($response->result->isIncomplete);
232+
}
233+
196234
private static function completionItem(
197235
string $label,
198236
?int $type,

tests/LanguageServerCompletion/Unit/Util/PhpactorToLspCompletionTypeTest.php

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ class PhpactorToLspCompletionTypeTest extends TestCase
1212
public function testConverts()
1313
{
1414
$reflection = new ReflectionClass(Suggestion::class);
15-
foreach ($reflection->getConstants() as $constantValue) {
16-
$this->assertNotNull(PhpactorToLspCompletionType::fromPhpactorType($constantValue));
15+
foreach ($reflection->getConstants() as $name => $constantValue) {
16+
if (0 !== strpos($name, 'TYPE')) {
17+
continue;
18+
}
19+
$this->assertNotNull(PhpactorToLspCompletionType::fromPhpactorType($constantValue), $constantValue);
1720
}
1821
}
1922
}

tests/LanguageServerWorseReflection/Benchmark/WorkspaceIndexBench.php

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Phpactor\Extension\LanguageServerWorseReflection\Tests\Benchmark;
44

5-
use PhpBench\Benchmark\Metadata\Annotations\Executor;
65
use PhpBench\Benchmark\Metadata\Annotations\OutputTimeUnit;
76
use PhpBench\Benchmark\Metadata\Annotations\Revs;
87
use Phpactor\Extension\LanguageServerCompletion\Tests\IntegrationTestCase;
@@ -13,7 +12,6 @@
1312
/**
1413
* @BeforeMethods({"setUp"})
1514
* @OutputTimeUnit("milliseconds")
16-
* @Executor("local")
1715
*/
1816
class WorkspaceIndexBench extends IntegrationTestCase
1917
{

0 commit comments

Comments
 (0)