forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatures.ts
24 lines (23 loc) · 976 Bytes
/
features.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { Observable } from 'rxjs'
import { HoverMerged } from '../../../shared/src/api/client/types/hover'
import { ExtensionsControllerProps } from '../../../shared/src/extensions/controller'
import { FileSpec, UIPositionSpec, RepoSpec, ResolvedRevSpec } from '../../../shared/src/util/url'
import { MaybeLoadingResult } from '@sourcegraph/codeintellify'
/**
* Fetches hover information for the given location.
*
* @param ctx the location
* @returns hover for the location
*/
export function getHover(
ctx: RepoSpec & ResolvedRevSpec & FileSpec & UIPositionSpec,
{ extensionsController }: ExtensionsControllerProps
): Observable<MaybeLoadingResult<HoverMerged | null>> {
return extensionsController.services.textDocumentHover.getHover({
textDocument: { uri: `git://${ctx.repoName}?${ctx.commitID}#${ctx.filePath}` },
position: {
character: ctx.position.character - 1,
line: ctx.position.line - 1,
},
})
}