Contributing to Meshery UI - Dashboard Widgets
Prerequisite Reading
Mesheryβs dashboard is a composable and extensible interface made up of individual widgets. These widgets allow contributors to surface specific Meshery data or capabilities within a modular layout system.
This guide walks through the process of creating and integrating a custom widget into the Meshery dashboard. Youβll learn about layout configuration, design best practices, and how to register new widgets.
1. Widget Architecture
Widgets are React components located here:
/ui/components/DashboardComponent/widgets/
Each widget is rendered inside a card component (<PlainCard />
, <DesignCard />
, etc.), which is sourced from the Sistent design system.
Widgets can:
- Pull data from APIs (REST, GraphQL, RSS)
- Display static links or interactive components
- Include icons and thumbnails for user familiarity
2. Creating a New Widget
Create a new file inside widgets/
, e.g.:
/ui/components/DashboardComponent/widgets/LatestBlogs.js
Use design system components from @layer5/sistent
:
import { useTheme, PlainCard, BellIcon } from "@layer5/sistent";
const LatestBlogs = (props) => {
const theme = useTheme();
const { data: blogs } = useFetchBlogsQuery(); // fetch data from rtk query
return (
<PlainCard
title="LATEST BLOGS"
icon={<BellIcon {...props.iconsProps} />}
resources={resources}
/>
);
};
export default LatestBlogs;
Use useTheme()
for consistent color tokens across themes.
3. Adding Thumbnails
Thumbnails are image previews of widgets. Place them here:
/ui/components/DashboardComponent/widgets/Thumbnails/
Recommended format: .png
or .svg
Example:
import LatestBlogsThumbnail from "./Thumbnails/LatestBlogs.png";
To verify your thumbnail appears correctly, click on the βEditβ button on the Dashboard. A visual card with your thumbnail and widget title will be listed there, allowing users to add it to their layout.
4. Registering the Widget
Register your widget inside getWidgets.js
:
export const getWidgets = () => ({
LATEST_BLOGS: {
title: "Latest Blogs",
isEnabled: alwaysShown,
component: <LatestBlogs />,
defaultSizing: { w: 3, h: 2 },
thumbnail: LatestBlogsThumbnail?.src,
},
});
title
: Display namecomponent
: JSX elementisEnabled
: Visibility flagdefaultSizing
: Default dimensionsthumbnail
: Path to preview image
5. Adding to Default Layout
To include your widget in the default dashboard layout, add it to LOCAL_PROVIDER_LAYOUT
in:
/ui/components/DashboardComponent/defaultLayout.js
Under each screen size key (e.g. sm
, xs
, xxs
):
{
h: 2,
i: 'LATEST_BLOGS',
moved: false,
static: false,
w: 3,
x: 0,
y: 0,
}
Mesheryβs dashboard uses breakpoints to adapt widget layout across devices. Each breakpoint (sm, xs, xxs) represents different screen widths. For example:
sm: tablets and desktops
xs: large phones
xxs: small phones
Define the widgetβs position (x, y) and size (w, h) in each breakpoint for responsive behavior. The code for it can be found here.
Note: Layouts for Remote Providers are dynamically generated based on user configuration and stored remotely. Local providers use a predefined layout (LOCAL_PROVIDER_LAYOUT
). Widgets must be added to both if you want consistent behavior across environments.
Meshery stores user layout preferences either in local storage or via the providerβs backend, depending on login state.
This is how your widget would appear in the dashboard:
6. Best Practices
- Naming: Use uppercase keys (e.g.
MY_DESIGNS
) for clarity - Icons: Use consistent design system icons (e.g.,
CatalogIcon
,DesignIcon
) - Themes: Use
useTheme()
to access tokens - Responsiveness: Define layout for multiple viewports (
sm
,xs
,xxs
) - Reusability: Break logic into reusable hooks when needed
- Thumbnails: Always include a visual thumbnail
- Permissions: If your widget accesses protected resources, ensure user has correct provider login state or roles.
7. Other Examples
Widget | File | Data Source | UI Component |
---|---|---|---|
Latest Blogs | LatestBlogs.js | RSS Feed | PlainCard |
Help Center | HelpCenterWidget.js | Static Links | PlainCard |
My Designs | MyDesignsWidget.js | REST Api | DesignCard |
Note: MyDesignsWidget
demonstrates integration with RTK Query hooks like useGetLoggedInUserQuery()
and useGetUserDesignsQuery()
.
Have a look at existing Widgets here.
8. Publishing
Once your widget is working:
- Ensure it appears in the widget selector UI
- Validate layout and responsiveness
- Submit a PR with the new component, layout entry, and thumbnail. Here is a PR that adds Latest Blogs widget to Meshery Dashboard.
- Add your widget in the Meshery Extensions Catalog if appropriate
Suggested Reading
- Build & Release (CI) - Details of Meshery's build and release strategy.
- Contributing to Meshery Adapters - How to contribute to Meshery Adapters
- Contributing to Meshery CLI End-to-End Tests - How to contribute to Meshery Command Line Interface end-to-end testing with BATS.
- Contributing to Meshery CLI - How to contribute to Meshery Command Line Interface.
- Contributing to Meshery Docker Extension - How to contribute to Meshery Docker Extension
- Meshery Documentation Structure and Organization - Audience, high-Level outline & information architecture for Meshery Documentation
- Contributing to Meshery Docs - How to contribute to Meshery Docs.
- How to write MeshKit compatible errors - How to declare errors in Meshery components.
- Contributing to Meshery using git - How to contribute to Meshery using git
- Meshery CLI Contributing Guidelines - Design principles and code conventions.
- Contributing to Model Components - How to contribute to Meshery Model Components
- Contributing to Model Relationships - How to contribute to Meshery Models Relationships, Policies...
- Contributing to Models Quick Start - A no-fluff guide to creating your own Meshery Models quickly.
- Contributing to Models - How to contribute to Meshery Models, Components, Relationships, Policies...
- Contributing to Meshery Policies - How to contribute to Meshery Policies
- Contributing to Meshery Schemas - How to contribute to Meshery Schemas
- Contributing to Meshery Server Events - Guide is to help backend contributors send server events using Golang.
- Contributing to Meshery UI - Notification Center - How to contribute to the Notification Center in Meshery's web-based UI.
- Contributing to Meshery UI - Sistent - How to contribute to the Meshery's web-based UI using sistent design system.
- Contributing to Meshery UI End-to-End Tests - How to contribute to end-to-end testing in Meshery UI using Playwright.
- Contributing to Meshery UI - How to contribute to Meshery UI (web-based user interface).
- Contributing to Meshery Server - How to contribute to Meshery Server
- Setting up Meshery Development Environment on Windows - How to set up Meshery Development Environment on Windows
- End-to-End Test Status - Status reports of Meshery's various test results.