Contributing to Meshery UI - Dashboard Widgets

Prerequisite Reading

  1. Contributing to Meshery UI

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 name
  • component: JSX element
  • isEnabled: Visibility flag
  • defaultSizing: Default dimensions
  • thumbnail: 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