The fugazi client is extended using components.
There are different types of components, currently:
All components share the same basic descriptor.
Each component has a path which identifies it.
This path is simply a concatenation of all the component names of the ancestors.
For example:
{
"name": "mymodule",
"modules": {
"moduleone": {
"types": {
"typeone": { ... },
"typetwo": { ... }
}
},
"moduletwo": {
"modulethree": {
"types": {
"typeone": { ... }
}
}
}
},
"types": {
"typeone": { ... },
"typetwo": { ... }
}
}Here are the paths for the different components in this example:
mymodulemymodule.moduleonemymodule.moduleone.typeonemymodule.moduleone.typetwo
mymodule.moduletwomymodule.moduletwo.modulethreemymodule.moduletwo.modulethree.typeone
mymodule.typeonemymodule.typetwo