forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dev docs] Add recently viewed docs (elastic#195001)
## Summary Add Recently Viewed dev docs --------- Co-authored-by: Tim Sullivan <[email protected]> Co-authored-by: Clint Andrew Hall <[email protected]>
- Loading branch information
1 parent
4899e80
commit 129c0a1
Showing
4 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 66 additions & 0 deletions
66
dev_docs/shared_ux/chrome_recently_accessed/chrome_recently_accessed.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
--- | ||
id: kibDevDocsChromeRecentlyAccessed | ||
slug: /kibana-dev-docs/chrome/recently-accessed | ||
title: Chrome Recently Viewed | ||
description: How to use chrome's recently accessed service to add your links to the recently viewed list in the side navigation. | ||
date: 2024-10-04 | ||
tags: ['kibana', 'dev', 'contributor', 'chrome', 'navigation', 'shared-ux'] | ||
--- | ||
|
||
## Introduction | ||
|
||
The <DocLink id="kibKbnCoreChromeBrowserPluginApi" section="def-public.ChromeRecentlyAccessed" text="ChromeRecentlyAccessed" /> service allows applications to register recently visited objects. These items are displayed in the "Recently Viewed" section of a side navigation menu, providing users with quick access to their previously visited resources. This service includes methods for adding, retrieving, and subscribing to the recently accessed history. | ||
|
||
![Recently viewed section in the sidenav](./chrome_recently_accessed.png) | ||
|
||
## Guidelines | ||
|
||
The <DocLink id="kibKbnCoreChromeBrowserPluginApi" section="def-public.ChromeRecentlyAccessed" text="ChromeRecentlyAccessed" /> service should be used thoughtfully to provide users with easy access to key resources they've interacted with. Unlike browser history, this feature is for important items that users may want to revisit. | ||
|
||
### DOs | ||
|
||
- Register important resources that users may want to revisit. Like a dashboard, a saved search, or another specific object. | ||
- Update the link when the state of the current resource changes. For example, if a user changes the time range while on a dashboard, update the recently viewed link to reflect the latest viewed state where possible. See below for instructions on how to update the link when state changes. | ||
|
||
### DON'Ts | ||
|
||
- Don't register every page view. | ||
- Don't register temporary or transient states as individual items. | ||
- Prevent overloading. Keep the list focused on high-value resources. | ||
- Don't add a recently viewed object without first speaking to relevant Product Managers. | ||
|
||
## Usage | ||
|
||
To register an item with the `ChromeRecentlyAccessed` service, provide a unique `id`, a `label`, and a `link`. The `id` is used to identify and deduplicate the item, the `label` is displayed in the "Recently Viewed" list and the `link` is used to navigate to the item when selected. | ||
|
||
```ts | ||
const link = '/app/map/1234'; | ||
const label = 'Map 1234'; | ||
const id = 'map-1234'; | ||
|
||
coreStart.chrome.recentlyAccessed.add(link, label, id); | ||
``` | ||
|
||
To update the link when state changes, add another item with the same `id`. This will replace the existing item in the "Recently Viewed" list. | ||
|
||
```ts | ||
const link = '/app/map/1234'; | ||
const label = 'Map 1234'; | ||
|
||
coreStart.chrome.recentlyAccessed.add(`/app/map/1234`, label, id); | ||
|
||
// User changes the time range and we want to update the link in the "Recently Viewed" list | ||
coreStart.chrome.recentlyAccessed.add( | ||
`/app/map/1234?timeRangeFrom=now-30m&timeRangeTo=now`, | ||
label, | ||
id | ||
); | ||
``` | ||
|
||
## Implementation details | ||
|
||
The <DocLink id="kibKbnCoreChromeBrowserPluginApi" section="def-public.ChromeRecentlyAccessed" text="ChromeRecentlyAccessed" /> services is based on <DocLink id="kibKbnRecentlyAccessedPluginApi" text="@kbn/recently-accessed"/> package. This package provides a `RecentlyAccessedService` that uses browser local storage to manage records of recently accessed objects. Internally it implements the queue with a maximum length of 20 items. When the queue is full, the oldest item is removed. | ||
Applications can create their own instance of `RecentlyAccessedService` to manage their own list of recently accessed items scoped to their application. | ||
|
||
- <DocLink id="kibKbnCoreChromeBrowserPluginApi" section="def-public.ChromeRecentlyAccessed" text="ChromeRecentlyAccessed" /> is a service available via `coreStart.chrome.recentlyAccessed` and should be used to add items to chrome's sidenav. | ||
- <DocLink id="kibKbnRecentlyAccessedPluginApi" text="@kbn/recently-accessed"/> is package that `ChromeRecentlyAccessed` is using internally and the package can be used to create your own instance and manage your own list of recently accessed items that is independent for chrome's sidenav. |
Binary file added
BIN
+123 KB
dev_docs/shared_ux/chrome_recently_accessed/chrome_recently_accessed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters