As per the vocabulary, the Registry is designed as a storage place for apps outside of ui-dashboard to register resources. These will then become available to dashboard for the purposes of dynamic interactions between different frontend apps.
...
Code Block |
---|
const setUpRegistry = (registry) => { // License Resource const licenseReg = registry.registerResource('license'); licenseReg.addViewAllsetViewResources('/licenses'); licenseReg.addViewTemplatesetViewResource(license => `/licenses/${license.id}`); // Lookup plugin licenseReg.addLookupComponent(LicenseLookup); }; |
...
A RegistryResource is a class containing information about a particular resource of the registry. It has fields that are technically publically available, but they should only be accessed through the requisite getters and setters.
Once https://github.com/tc39/proposal-private-methods#private-methods-and-fields or equivalent become available and supported, these fields should be made private. This class contains the following methods with which to interact with it:
Warning |
---|
The templating parts below are not yet implemented and are likely to change as the project iterates forwards. |
...