80 lines
3.5 KiB
JavaScript
80 lines
3.5 KiB
JavaScript
(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", "vscode-uri", "path"], factory);
|
|
}
|
|
})(function (require, exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isAnyOfAllOfOneOfType = exports.isPrimitiveType = exports.getSchemaTitle = exports.getSchemaRefTypeTitle = exports.getSchemaTypeName = void 0;
|
|
const vscode_uri_1 = require("vscode-uri");
|
|
const path = require("path");
|
|
function getSchemaTypeName(schema) {
|
|
const closestTitleWithType = schema.type && schema.closestTitle;
|
|
if (schema.title) {
|
|
return schema.title;
|
|
}
|
|
if (schema.$id) {
|
|
return getSchemaRefTypeTitle(schema.$id);
|
|
}
|
|
if (schema.$ref || schema._$ref) {
|
|
return getSchemaRefTypeTitle(schema.$ref || schema._$ref);
|
|
}
|
|
return Array.isArray(schema.type)
|
|
? schema.type.join(' | ')
|
|
: closestTitleWithType
|
|
? schema.type.concat('(', schema.closestTitle, ')')
|
|
: schema.type || schema.closestTitle; //object
|
|
}
|
|
exports.getSchemaTypeName = getSchemaTypeName;
|
|
/**
|
|
* Get type name from reference url
|
|
* @param $ref reference to the same file OR to the another component OR to the section in another component:
|
|
* `schema-name.schema.json` -> schema-name
|
|
* `custom-scheme://shared-schema.json#/definitions/SomeType` -> SomeType
|
|
* `custom-scheme://schema-name.schema.json` -> schema-name
|
|
* `shared-schema.schema.json#/definitions/SomeType` -> SomeType
|
|
* `file:///Users/user/Documents/project/schemas/schema-name.schema.json` -> schema-name
|
|
* `#/definitions/SomeType` -> SomeType
|
|
* `#/definitions/io.k8s.api.apps.v1.DaemonSetSpec` => io.k8s.api.apps.v1.DaemonSetSpec
|
|
* `file:///default_schema_id.yaml` => default_schema_id.yaml
|
|
* test: https://regex101.com/r/ZpuXxk/1
|
|
*/
|
|
function getSchemaRefTypeTitle($ref) {
|
|
const match = $ref.match(/^(?:.*\/)?(.*?)(?:\.schema\.json)?$/);
|
|
let type = !!match && match[1];
|
|
if (!type) {
|
|
type = 'typeNotFound';
|
|
console.error(`$ref (${$ref}) not parsed properly`);
|
|
}
|
|
return type;
|
|
}
|
|
exports.getSchemaRefTypeTitle = getSchemaRefTypeTitle;
|
|
function getSchemaTitle(schema, url) {
|
|
const uri = vscode_uri_1.URI.parse(url);
|
|
let baseName = path.basename(uri.fsPath);
|
|
if (!path.extname(uri.fsPath)) {
|
|
baseName += '.json';
|
|
}
|
|
if (Object.getOwnPropertyDescriptor(schema, 'name')) {
|
|
return Object.getOwnPropertyDescriptor(schema, 'name').value + ` (${baseName})`;
|
|
}
|
|
else if (schema.title) {
|
|
return schema.description ? schema.title + ' - ' + schema.description + ` (${baseName})` : schema.title + ` (${baseName})`;
|
|
}
|
|
return baseName;
|
|
}
|
|
exports.getSchemaTitle = getSchemaTitle;
|
|
function isPrimitiveType(schema) {
|
|
return schema.type !== 'object' && !isAnyOfAllOfOneOfType(schema);
|
|
}
|
|
exports.isPrimitiveType = isPrimitiveType;
|
|
function isAnyOfAllOfOneOfType(schema) {
|
|
return !!(schema.anyOf || schema.allOf || schema.oneOf);
|
|
}
|
|
exports.isAnyOfAllOfOneOfType = isAnyOfAllOfOneOfType;
|
|
});
|
|
//# sourceMappingURL=schemaUtils.js.map
|