48 lines
2.2 KiB
JavaScript
48 lines
2.2 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.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
(function (factory) {
|
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
var v = factory(require, exports);
|
|
if (v !== undefined) module.exports = v;
|
|
}
|
|
else if (typeof define === "function" && define.amd) {
|
|
define(["require", "exports", "../../commands", "vscode-uri"], factory);
|
|
}
|
|
})(function (require, exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.registerCommands = void 0;
|
|
const commands_1 = require("../../commands");
|
|
const vscode_uri_1 = require("vscode-uri");
|
|
function registerCommands(commandExecutor, connection) {
|
|
commandExecutor.registerCommand(commands_1.YamlCommands.JUMP_TO_SCHEMA, async (uri) => {
|
|
if (!uri) {
|
|
return;
|
|
}
|
|
// if uri points to local file of its a windows path
|
|
if (!uri.startsWith('file') && !/^[a-z]:[\\/]/i.test(uri)) {
|
|
const origUri = vscode_uri_1.URI.parse(uri);
|
|
const customUri = vscode_uri_1.URI.from({
|
|
scheme: 'json-schema',
|
|
authority: origUri.authority,
|
|
path: origUri.path.endsWith('.json') ? origUri.path : origUri.path + '.json',
|
|
fragment: uri,
|
|
});
|
|
uri = customUri.toString();
|
|
}
|
|
// test if uri is windows path, ie starts with 'c:\' and convert to URI
|
|
if (/^[a-z]:[\\/]/i.test(uri)) {
|
|
const winUri = vscode_uri_1.URI.file(uri);
|
|
uri = winUri.toString();
|
|
}
|
|
const result = await connection.window.showDocument({ uri: uri, external: false, takeFocus: true });
|
|
if (!result) {
|
|
connection.window.showErrorMessage(`Cannot open ${uri}`);
|
|
}
|
|
});
|
|
}
|
|
exports.registerCommands = registerCommands;
|
|
});
|
|
//# sourceMappingURL=yamlCommands.js.map
|