0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-20 22:12:38 -05:00
astro/tools/language-server/src/utils.ts

92 lines
2.8 KiB
TypeScript
Raw Normal View History

import { URI } from 'vscode-uri';
import { Position, Range } from 'vscode-languageserver';
import { Node } from 'vscode-html-languageservice';
/** Normalizes a document URI */
export function normalizeUri(uri: string): string {
2021-05-03 12:26:10 -06:00
return URI.parse(uri).toString();
}
/** Turns a URL into a normalized FS Path */
export function urlToPath(stringUrl: string): string | null {
2021-05-03 12:26:10 -06:00
const url = URI.parse(stringUrl);
if (url.scheme !== 'file') {
return null;
}
return url.fsPath.replace(/\\/g, '/');
}
/** Converts a path to a URL */
export function pathToUrl(path: string) {
2021-05-03 12:26:10 -06:00
return URI.file(path).toString();
}
/**
2021-05-03 12:26:10 -06:00
*
* The language service is case insensitive, and would provide
* hover info for Svelte components like `Option` which have
* the same name like a html tag.
*/
export function isPossibleComponent(node: Node): boolean {
2021-05-03 12:26:10 -06:00
return !!node.tag?.[0].match(/[A-Z]/);
}
/**
2021-05-03 12:26:10 -06:00
*
* The language service is case insensitive, and would provide
* hover info for Svelte components like `Option` which have
* the same name like a html tag.
*/
export function isPossibleClientComponent(node: Node): boolean {
2021-05-03 12:26:10 -06:00
return isPossibleComponent(node) && (node.tag?.indexOf(':') ?? -1) > -1;
}
/** Flattens an array */
export function flatten<T>(arr: T[][]): T[] {
2021-05-03 12:26:10 -06:00
return arr.reduce((all, item) => [...all, ...item], []);
}
/** Clamps a number between min and max */
export function clamp(num: number, min: number, max: number): number {
2021-05-03 12:26:10 -06:00
return Math.max(min, Math.min(max, num));
}
export function isNotNullOrUndefined<T>(val: T | undefined | null): val is T {
return val !== undefined && val !== null;
}
/** Checks if a position is inside range */
export function isInRange(positionToTest: Position, range: Range): boolean {
2021-05-03 12:26:10 -06:00
return isBeforeOrEqualToPosition(range.end, positionToTest) && isBeforeOrEqualToPosition(positionToTest, range.start);
}
/** */
export function isBeforeOrEqualToPosition(position: Position, positionToTest: Position): boolean {
2021-05-03 12:26:10 -06:00
return positionToTest.line < position.line || (positionToTest.line === position.line && positionToTest.character <= position.character);
}
/**
* Debounces a function but cancels previous invocation only if
* a second function determines it should.
*
* @param fn The function with it's argument
* @param determineIfSame The function which determines if the previous invocation should be canceld or not
* @param miliseconds Number of miliseconds to debounce
*/
2021-05-03 12:26:10 -06:00
export function debounceSameArg<T>(fn: (arg: T) => void, shouldCancelPrevious: (newArg: T, prevArg?: T) => boolean, miliseconds: number): (arg: T) => void {
let timeout: any;
let prevArg: T | undefined;
2021-05-03 12:26:10 -06:00
return (arg: T) => {
if (shouldCancelPrevious(arg, prevArg)) {
clearTimeout(timeout);
}
2021-05-03 12:26:10 -06:00
prevArg = arg;
timeout = setTimeout(() => {
fn(arg);
prevArg = undefined;
}, miliseconds);
};
}