raml-outline
This is a central place for RAML outline.
Getting Started
import ramlOutline = require("raml-outline")
var astProvider = {
getASTRoot() {
...
},
getSelectedNode() {
...
}
}
ramlOutline.setASTProvider(astProvider);
ramlOutline.initialize();
var ResourcesCategory = "ResourcesCategory"
var SchemasAndTypesCategory = "SchemasAndTypesCategory"
var ResourceTypesAndTraitsCategory = "ResourceTypesAndTraitsCategory"
var OtherCategory = "OtherCategory"
function isResource(node) {
...
}
function isSchemaOrType(node) {
...
}
function isResourceTypeOrTrait(node) {
...
}
function isOther(node) {
...
}
ramlOutline.addCategoryFilter(ResourcesCategory, isResource);
ramlOutline.addCategoryFilter(SchemasAndTypesCategory, isSchemaOrType);
ramlOutline.addCategoryFilter(ResourceTypesAndTraitsCategory, isResourceTypeOrTrait);
ramlOutline.addCategoryFilter(OtherCategory, isOther);
ramlOutline.addDecoration(ramlOutline.NodeType.ATTRIBUTE, {
icon: UI.Icon.ARROW_SMALL_LEFT,
textStyle: UI.TextClasses.NORMAL
});
ramlOutline.addDecoration(ramlOutline.NodeType.RESOURCE, {
icon: UI.Icon.PRIMITIVE_SQUARE,
textStyle: UI.TextClasses.HIGHLIGHT
});
...
var resourceCategoryOutline = ramlOutline.getStructure(ResourcesCategory).toJSON()
Code highlights
Outline core
setASTProvider
method sets AST provider to feed outline with parser data.
addCategoryFilter
method creates new category, provided the name and a node filtering method.
addDecorator
method sets up a new decorator, being able to provide icon and text style for the node.
addLabelProvider
method sets up a new label provider, being able to provide label and type text for the node.
setVisibilityFilter
method sets up a way to filter out nodes, which should not be visible.
setContentProvider
method sets up a way to convert AST tree to outline tree. Not recommended to override the default content provider.
setKeyProvider
if set, will be asked to provide an unique key for each node.
getStructure
method returns outline tree for the specified category, or in general.
getStructureForAllCategories
method returns the map from category name to the category sub-tree.
Defaults
Defaults module simplify outline usage by not making the user to implement decorators, label providers etc.
Defaults module provide outline with default label provider, key provider, visibility filter, and decorator, which is based on simplified decorations.
Besides setting AST provider, user should set up categories if needed, and add static decorations for node types like this:
ramlOutline.addDecoration(ramlOutline.NodeType.ATTRIBUTE, {
icon: UI.Icon.ARROW_SMALL_LEFT,
textStyle: UI.TextClasses.NORMAL
});
ramlOutline.addDecoration(ramlOutline.NodeType.RESOURCE, {
icon: UI.Icon.PRIMITIVE_SQUARE,
textStyle: UI.TextClasses.HIGHLIGHT
});
Here, node type is one of the supported node types list, and icon and textStyle are arbitrary strings, which will then be put into the respective node fields.