This package contains code for the frontend of the TinyStacks OpsConsole project. If you are looking for a quick way to run the OpsConsole, please look at the Ops CLI for installation and usage instructions.
npm i;
npm run dev;In order for this to work, you need to have the API running locally on port 8000.
This frontend package is built on React, Redux, and Next.js. It uses component libraries from Chakra and rsuite.
After launching the Ops Console Frontend and navigating to any root path, the GetConsoles api is requested. This returns a Console object that includes providers, dependencies, widgets, dahboards, and console details.
There are 2 main paths:
/: This route uses the requested console to list all available dashboards as links./[dashboard-route]: This route fetches all widgets and renders them in a dashboard view.
When a /[dashboard-route] request is made, a few things happen with regards to widgets
- A full widget render tree is created. This includes widgets directly and transitively referenced by the selected dashboard
- The getWidget API is recursively requested for each widget in the render tree, leaf-widgets-first. Ops-API processes these requests by calling getData on each widget and returning a serialized populated widget object to the frontend
- The frontend deserializes each widget by calling Widget.fromJson.
- Each widget's render function is invoked and layed out according to the dashboard. Note that only widgets directly and trasitively referenced by the selected dashboard are requested and rendered. Other widgets will not call getData until they are in context of a requested dashboard
Please see the README.md in ops-core.
For an overview of plugins, please see PLUGINS.md in ops-core.
Please see DEVELOPING_PLUGINS.md in ops-core.