packages/grafana-ui/src/components/EmptyState/EmptyState.mdx
import { ArgTypes } from '@storybook/addon-docs/blocks'; import { EmptyState } from './EmptyState';
The EmptyState component consists of a message and optionally an image, button, and additional information.
Use an empty state to communicate to the user that there is no data to display and provide instructions for what to do next. Example use cases:
There are different variants to handle the most common empty state use cases. These variants provide a specific default message and image.
variant="call-to-action"Use when there is no data to display and you want to encourage the user to take an action. Usually either to complete some initial configuration, or to create an item.
If there is already a primary call to action button visible (e.g. in the page header), this should be hidden whilst the empty state is shown to avoid duplicate primary actions on the page.
import { EmptyState, LinkButton, TextLink } from '@grafana/ui';
<EmptyState
variant="call-to-action"
message="You haven't created any playlists yet"
button={
<LinkButton icon="plus" href="playlists/new" size="lg">
Create playlist
</LinkButton>
}
>
You can use playlists to cycle dashboards on TVs without user control.{' '}
<TextLink external href="<externalDocsLink>">
Learn more.
</TextLink>
</EmptyState>;
For scenarios where there is no single button that can be clicked to create the item, you can omit the button prop. Instead, provide additional information to help the user understand how to create the specific resource.
import { EmptyState, TextLink } from '@grafana/ui';
<EmptyState variant="call-to-action" message="You haven't created any library panels yet">
Create a library panel from any existing dashboard panel through the panel context menu.{' '}
<TextLink external href="<externalDocsLink>">
Learn more.
</TextLink>
</EmptyState>;
variant="not-found"Use in place of content when a search query or filter returns no results.
There are sensible defaults for the image, so in most cases all you need to provide is a message.
import { EmptyState } from '@grafana/ui';
<EmptyState variant="not-found" message="No playlists found" />;
If the empty state is rendered as you are typing in a search box, use the role="alert" prop to announce the empty state to screen readers. Verify that the use case makes sense, as this approach may be very disruptive if used the wrong way.
variant="completed"For when a user has completed all tasks on a page, such as reading all their notifications.
import { EmptyState } from '@grafana/ui';
<EmptyState variant="completed" message="You're all caught up" />;
For all variants you can:
import { Button, EmptyState, TextLink } from '@grafana/ui';
<EmptyState
variant="not-found"
button={<Button variant="secondary" onClick={clearSearchQuery} />}
image={<AnyReactNode />}
message="No playlists found"
variant="not-found"
>
Optionally provide some additional information here. Maybe even a link to{' '}
<TextLink href="<externalDocsLink>" external>
documentation.
</TextLink>
</EmptyState>;