Spotlight
Command center for your application
Source
Docs
Package
License
Installation
After installation import package styles at the root of your application:
Usage
Spotlight
component can be used as a search or as a command center of your application.
It is used as a search on mantine.dev website, you can trigger it with Ctrl + K
shortcut.
Spotlight
is based on Modal component and supports most of its props.
Actions
@mantine/spotlight
package exports an object with actions that can be used to control the spotlight:
These actions can be passed to event listeners or used anywhere in your application (not limited to React components):
You can also import actions directly from the @mantine/spotlight
package, if you prefer this syntax:
Spotlight store
spotlight
object documented above uses the default store, it works fine if you have only one spotlight
in your application. In case you need multiple spotlights, you need to create your own store for each of them:
Keyboard shortcuts
Spotlight
uses use-hotkeys hook to handle keyboard shortcuts.
By default, Ctrl + K
and Cmd + K
shortcuts are used to open spotlight, you can change them
with shortcut
prop:
Limit prop
Use limit
prop to limit the maximum number of actions that can be displayed at a time.
Usually, 5–7 actions is a good number. limit
prop is crucial for performance in case
you have a lot of actions, it will prevent the spotlight from rendering all of them at once.
The example below renders 3000 actions, but only 7 of them are displayed at a time:
Scrollable actions list
By default, Spotlight
actions list is not scrollable. If you have a lot of actions that
you need to display at a time, set scrollable
and maxHeight
props. Note that there are
caveats with both approaches:
- When the
scrollable
prop is not set, actions list height is not limited and the spotlight body will grow to fit all actions. This can result in a very long spotlight body that will overflow the viewport. To prevent this, uselimit
prop to define the maximum number of actions that can be displayed at a time. Usually, 5–7 actions is a good number. - When the
scrollable
prop is set, actions list height will always equal to the value ofmaxHeight
prop (it will not shrink if there are not enough actions to fill the space). When there are more actions than can fit into the list, it will become scrollable. Scrolling logic is handled by ScrollArea component.
In other words, if you want the actions list to shrink, do not set scrollable
prop and use limit
prop. If you want the actions list to always have a fixed height, set scrollable
and maxHeight
props.
Actions groups
Spotlight
supports actions groups, you can use them to group actions by category:
Compound components
If you need more control over spotlight rendering and logic, use compound components. Available components:
Spotlight.Root
– root component, should be used as a wrapper for all other components, accepts all props to customize logicSpotlight.Search
– search inputSpotlight.ActionsList
– list of actions, required to wrap all actions and actions groupsSpotlight.Action
– action buttonSpotlight.ActionsGroup
- group of actionsSpotlight.Empty
– empty state (nothing found)
For example, with compound components pattern you can customize actions contents:
Fixed elements offset
Spotlight
component uses react-remove-scroll
package to lock scroll. To properly size these elements
add a className
to them (documentation):