47 lines
2.1 KiB
JavaScript
47 lines
2.1 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Red Hat, Inc. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
import { CodeLens, Range } from 'vscode-languageserver-types';
|
|
import { YamlCommands } from '../../commands';
|
|
import { yamlDocumentsCache } from '../parser/yaml-documents';
|
|
import { getSchemaUrls } from '../utils/schemaUrls';
|
|
import { convertErrorToTelemetryMsg } from '../utils/objects';
|
|
import { getSchemaTitle } from '../utils/schemaUtils';
|
|
export class YamlCodeLens {
|
|
constructor(schemaService, telemetry) {
|
|
this.schemaService = schemaService;
|
|
this.telemetry = telemetry;
|
|
}
|
|
async getCodeLens(document) {
|
|
const result = [];
|
|
try {
|
|
const yamlDocument = yamlDocumentsCache.getYamlDocument(document);
|
|
let schemaUrls = new Map();
|
|
for (const currentYAMLDoc of yamlDocument.documents) {
|
|
const schema = await this.schemaService.getSchemaForResource(document.uri, currentYAMLDoc);
|
|
if (schema?.schema) {
|
|
// merge schemas from all docs to avoid duplicates
|
|
schemaUrls = new Map([...getSchemaUrls(schema?.schema), ...schemaUrls]);
|
|
}
|
|
}
|
|
for (const urlToSchema of schemaUrls) {
|
|
const lens = CodeLens.create(Range.create(0, 0, 0, 0));
|
|
lens.command = {
|
|
title: getSchemaTitle(urlToSchema[1], urlToSchema[0]),
|
|
command: YamlCommands.JUMP_TO_SCHEMA,
|
|
arguments: [urlToSchema[0]],
|
|
};
|
|
result.push(lens);
|
|
}
|
|
}
|
|
catch (err) {
|
|
this.telemetry?.sendError('yaml.codeLens.error', { error: convertErrorToTelemetryMsg(err) });
|
|
}
|
|
return result;
|
|
}
|
|
resolveCodeLens(param) {
|
|
return param;
|
|
}
|
|
}
|
|
//# sourceMappingURL=yamlCodeLens.js.map
|