Skip to content

Commit 1461c6d

Browse files
committed
Remove dependency to tss.server.Project for CEM cache
1 parent 3954063 commit 1461c6d

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

lib/custom-elements-languageserver-core/src/cem/cem-cache.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -80,27 +80,27 @@ export class CEMCollection {
8080

8181
const CEM_COLLECTION_CACHE = new Map<string, CEMCollection>();
8282

83-
export function getCEMData(project: tss.server.Project, projectBasePath: string): CEMCollection {
84-
const existingCollection = getCEMFromCache(project);
83+
export function getCEMData(projectBasePath: string): CEMCollection {
84+
const existingCollection = getCEMFromCache(projectBasePath);
8585
if (existingCollection) {
8686
return existingCollection;
8787
}
8888

8989
const cemCollection = new CEMCollection(projectBasePath);
90-
setToCEMCache(project, cemCollection);
90+
setToCEMCache(projectBasePath, cemCollection);
9191
return cemCollection;
9292
}
9393

94-
function getCEMFromCache(project: tss.server.Project) {
95-
return CEM_COLLECTION_CACHE.get(project.getCurrentDirectory());
94+
function getCEMFromCache(projectBasePath: string) {
95+
return CEM_COLLECTION_CACHE.get(projectBasePath);
9696
}
9797

9898
function getCEMFromCacheByPath(projectDirectory: string) {
9999
return CEM_COLLECTION_CACHE.get(projectDirectory);
100100
}
101101

102-
function setToCEMCache(project: tss.server.Project, cemCollection: CEMCollection) {
103-
CEM_COLLECTION_CACHE.set(project.getCurrentDirectory(), cemCollection);
102+
function setToCEMCache(projectBasePath: string, cemCollection: CEMCollection) {
103+
CEM_COLLECTION_CACHE.set(projectBasePath, cemCollection);
104104
}
105105

106106
export function refreshCEMData(projectBasePath: string) {

lib/custom-elements-languageserver-core/src/handlers/completion.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export function getCompletionEntries(request: CustomElementsLanguageServiceReque
1212

1313
const actionContext = resolveActionContext(htmlLanguageService, document, position);
1414

15-
const cemCollection = getCEMData(project, projectBasePath);
15+
const cemCollection = getCEMData(projectBasePath);
1616
let cemCompletions: tss.CompletionEntry[] = [];
1717

1818
if (!cemCollection) {

lib/custom-elements-languageserver-core/src/handlers/diagnostics/import-diagnostics.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function getImportDiagnostics(request: CustomElementsLanguageServiceReque
3131
// Might lead to some false negatives.
3232
const sourceFileNames = associatedFiles;
3333

34-
const cemCollection = getCEMData(project, projectBasePath);
34+
const cemCollection = getCEMData(projectBasePath);
3535
if (!cemCollection.hasData()) {
3636
return [];
3737
}

lib/custom-elements-languageserver-core/src/handlers/go-to-definition.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function getGoToDefinitionEntries(request: CustomElementsLanguageServiceR
2828
const { document, position, htmlLanguageService, projectBasePath, project } = request;
2929

3030
const actionContext = resolveActionContext(htmlLanguageService, document, position);
31-
const cemCollection = getCEMData(project, projectBasePath);
31+
const cemCollection = getCEMData(projectBasePath);
3232

3333
if (!cemCollection.hasData()) {
3434
return [...definitionInfos];

lib/custom-elements-languageserver-core/src/handlers/quickinfo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { CustomElementsLanguageServiceRequest } from "../request.js";
1414
export function getQuickInfo(request: CustomElementsLanguageServiceRequest): tss.QuickInfo | undefined {
1515
const { document, position, htmlLanguageService, projectBasePath, project } = request;
1616
const actionContext = resolveActionContext(htmlLanguageService, document, position);
17-
const cemCollection = getCEMData(project, projectBasePath);
17+
const cemCollection = getCEMData(projectBasePath);
1818

1919
if (!cemCollection.hasData()) {
2020
return undefined;

lib/server/src/handlers/references.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function getReferencesAtPosition(referenceParams: ReferenceParams) {
2323
return [];
2424
}
2525

26-
const cemCollection = getCEMData(project, basePath);
26+
const cemCollection = getCEMData(basePath);
2727
if (!cemCollection.hasData()) {
2828
return [];
2929
}

usage-testing-project/src/both.jsx

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { createSignal, onCleanup } from "solid-js";
22
import { render } from "solid-js/web";
33
import "@shoelace-style/shoelace/dist/components/card/card.js";
4-
import "@shoelace-style/shoelace/dist/components/button/button.d.js";
54

65
const template = html`
76
<example-project></example-project>

0 commit comments

Comments
 (0)