@speclynx/apidom-ns-overlay-1
v4.3.1
Published
Overlay Specification 1.x.y namespace for ApiDOM.
Readme
@speclynx/apidom-ns-overlay-1
@speclynx/apidom-ns-overlay-1 contains ApiDOM namespace specific to Overlay 1.x.y specification, supporting the following versions:
Installation
You can install this package via npm CLI by running the following command:
$ npm install @speclynx/apidom-ns-overlay-1Overlay 1.1.0 namespace
Overlay 1.1.0 namespace consists of a number of elements implemented on top of primitive ones.
import { Namespace } from '@speclynx/apidom-datamodel';
import overlay1Namespace from '@speclynx/apidom-ns-overlay-1';
const namespace = new Namespace().use(overlay1Namespace);
const objectElement = new namespace.elements.Object();
const overlayElement = new namespace.elements.Overlay1();When namespace instance is created in this way, it will extend the base namespace with the namespace plugin provided as an argument.
Elements from the namespace can also be used directly by importing them.
import { Overlay1Element, InfoElement } from '@speclynx/apidom-ns-overlay-1';
const infoElement = new InfoElement();
const overlayElement = new Overlay1Element();Predicates
This package exposes predicates for all higher order elements that are part of this namespace.
import { isOverlay1Element, Overlay1Element } from '@speclynx/apidom-ns-overlay-1';
const overlayElement = new Overlay1Element();
isOverlay1Element(overlayElement); // => trueTraversal
Traversing ApiDOM in this namespace is possible by using traverse function from @speclynx/apidom-traverse package,
or by using visit function from @speclynx/apidom-core. Visitor callbacks receive a Path object
which provides access to the current node via path.node along with traversal control methods like path.replaceWith(), path.remove(), path.skip(), and path.stop().
import { traverse } from '@speclynx/apidom-traverse';
import { Overlay1Element } from '@speclynx/apidom-ns-overlay-1';
const element = new Overlay1Element();
const visitor = {
Overlay1Element(path) {
console.dir(path.node);
},
};
traverse(element, visitor);Refractors
Refractor is a special layer inside the namespace that can transform either JavaScript structures or generic ApiDOM structures into structures built from elements of this namespace.
Refracting JavaScript structures:
import { refractInfo } from '@speclynx/apidom-ns-overlay-1';
const object = {
title: 'my title',
description: 'my description',
version: '0.1.0',
};
refractInfo(object); // => InfoElement({ title, description, version })Refracting generic ApiDOM structures:
import { ObjectElement } from '@speclynx/apidom-datamodel';
import { refractInfo } from '@speclynx/apidom-ns-overlay-1';
const objectElement = new ObjectElement({
title: 'my title',
description: 'my description',
version: '0.1.0',
});
refractInfo(objectElement); // => InfoElement({ title = 'my title', description = 'my description', version = '0.1.0' })Refractor plugins
Refractors can accept plugins as a second argument of the refract function.
import { ObjectElement } from '@speclynx/apidom-datamodel';
import { refractInfo } from '@speclynx/apidom-ns-overlay-1';
const objectElement = new ObjectElement({
title: 'my title',
description: 'my description',
version: '0.1.0',
});
const plugin = ({ predicates, namespace }) => ({
name: 'plugin',
pre() {
console.dir('runs before traversal');
},
visitor: {
InfoElement(path) {
path.node.version = '2.0.0';
},
},
post() {
console.dir('runs after traversal');
},
});
refractInfo(objectElement, { plugins: [plugin] }); // => InfoElement({ title = 'my title', description = 'my description', version = '2.0.0' })You can define as many plugins as needed to enhance the resulting namespaced ApiDOM structure. If multiple plugins with the same visitor method are defined, they run in parallel (just like in Babel).
Replace Empty Element plugin
This plugin is specific to YAML 1.2 format, which allows defining key-value pairs with empty key, empty value, or both. If the value is not provided in YAML format, this plugin compensates for this missing value with the most appropriate semantic element type.
import { parse } from '@speclynx/apidom-parser-adapter-yaml-1-2';
import { refractorPluginReplaceEmptyElement, refractOverlay1 } from '@speclynx/apidom-ns-overlay-1';
const yamlDefinition = `
overlay: 1.1.0
info:
`;
const apiDOM = await parse(yamlDefinition);
const overlayElement = refractOverlay1(apiDOM.result, {
plugins: [refractorPluginReplaceEmptyElement()],
});
// =>
// (Overlay1Element
// (MemberElement
// (StringElement)
// (StringElement))
// (MemberElement
// (StringElement)
// (InfoElement)))
// => without the plugin the result would be as follows:
// (Overlay1Element
// (MemberElement
// (StringElement)
// (StringElement))
// (MemberElement
// (StringElement)
// (StringElement)))Implementation progress
Only fully implemented specification objects should be checked here.
