Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(blade): add Breadcrumb API #2027

Merged
merged 6 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
206 changes: 206 additions & 0 deletions packages/blade/src/components/Breadcrumb/_decisions/decisions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,206 @@
# Breadcrumb Decisions <!-- omit in toc -->

Breadcrumbs are used for navigating through or to show a user’s location in an application.

<img width="426" alt="Breadcrumb Thumbnail" src="./breadcrumb-thumbnail.png" />

- [Design](#design)
- [Anatomy](#anatomy)
- [Basic Usage](#basic-usage)
- [API](#api)
- [Breadcrumb](#breadcrumb)
- [BreadcrumbItem](#breadcrumbitem)
- [Examples](#examples)
- [Show Last Separator](#show-last-separator)
- [Usage with Routing Libraries](#usage-with-routing-libraries)
- [Accessibility](#accessibility)
- [Open Questions](#open-questions)
- [References](#references)

## Design

[Figma Link](https://www.figma.com/file/jubmQL9Z8V7881ayUD95ps/Blade-DSL?type=design&node-id=81454-67196&mode=design&t=6sCjPO2iUqIMuPHT-0) to all variants of the Breadcrumb component

## Anatomy

<img src="./breadcrumb-anatomy.png" width="100%" alt="Anatomy of breadcrumbs" />

## Basic Usage

```jsx
<Breadcrumb size="small" color="primary">
<BreadcrumbItem href="/">Home</BreadcrumbItem>
<BreadcrumbItem href="/dashboard">Dashboard</BreadcrumbItem>
<BreadcrumbItem href="/settlements" isCurrentPage>Settlements</BreadcrumbItem>
</Breadcrumb>
```

## API

### Breadcrumb

```ts
type BreadcrumbProps = StyledPropsBlade & {
/**
* Size of the Breadcrumb
*
* @default medium
*/
size?: 'small' | 'medium' | 'large';
/**
* Color of the Breadcrumb
*
* @default neutral
*/
color?: 'neutral' | 'primary' | 'white';
/**
* Content of the Breadcrumb, accepts BreadcrumbItem
*/
children: React.ReactNode;
/**
* Whether to show the last separator
*/
showLastSeparator?: boolean;
};
```

### BreadcrumbItem

```ts
type BreadcrumbItemProps = {
/**
* Href of the BreadcrumbItem
*/
href: string;
/**
* Function to be called on click of the BreadcrumbItem,
*
* This can be used to integrate with routing libraries like `react-router-dom`
*/
onClick?: (event: React.MouseEvent<HTMLAnchorElement>) => void;
/**
* Whether the BreadcrumbItem is the current page,
* Sets the aria-current attribute to `page`
*
* @default false
*/
isCurrentPage?: boolean;
/**
* Content of the BreadcrumbItem
*/
children: string;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to the design there can be cases where the first item shows only an icon. Can we make this optional in case icon prop is supplied?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right, this will be optional. I'll change this.

/**
* Icon to be shown before the BreadcrumbItem
*/
icon?: IconComponent;
};
```

### Examples

#### Show Last Separator

The show last separator prop can be used to show or hide the last separator in the Breadcrumb component, this can be useful when the Breadcrumb is used in a page title.

```jsx
const App = () => {
return (
<Box>
<Breadcrumb showLastSeparator marginBottom="spacing.3">
<BreadcrumbItem href="/help">Help</BreadcrumbItem>
<BreadcrumbItem href="/support-tickets">Support Tickets</BreadcrumbItem>
</Breadcrumb>
<Box display="flex" gap="spacing.3">
<Heading>Settlements related</Heading>
<Badge color="notice">OPEN</Badge>
</Box>
</Box>
)
}
```

<img src="./example-last-separator.png" width="380" alt="Example with last separator" />

### Usage with Routing Libraries

The `onClick` prop can be used to integrate with routing libraries like `react-router-dom`.

```jsx
import { Link } from 'react-router-dom';
import { Breadcrumb, BreadcrumbItem } from "@razorpay/blade/components";
import {
useHref,
useLinkClickHandler,
} from "react-router-dom";

const RouterBreadcrumbItem = React.forwardRef(
(
{
onClick,
replace = false,
state,
target,
to,
...rest
},
ref
) => {
const href = useHref(to);
const handleClick = useLinkClickHandler(to, {
replace,
state,
target,
});

return (
<BreadcrumbItem
{...rest}
href={href}
onClick={(event) => {
onClick?.(event);
if (!event.defaultPrevented) {
handleClick(event);
}
}}
ref={ref}
target={target}
/>
);
}
);

const App = () => {
return (
<Breadcrumb>
<RouterBreadcrumbItem to="/">
Home
</RouterBreadcrumbItem>
<RouterBreadcrumbItem to="/dashboard">
Dashboard
</RouterBreadcrumbItem>
<RouterBreadcrumbItem to="/settlements" isCurrentPage>
Settlements
</RouterBreadcrumbItem>
</Breadcrumb>
)
}
```

## Accessibility

Breadcrumb follows the WAI-ARIA Pattern for [Breadcrumbs Navigation](https://www.w3.org/WAI/ARIA/apg/patterns/breadcrumb/examples/breadcrumb/).

- The Breadcrumb component uses the `nav` element to denote a navigation landmark.
- The BreadcrumbItem component uses the `a` element to denote a link.
- The BreadcrumbItem component sets the `aria-current` attribute to `page` when the `isCurrentPage` prop is set to `true`.

## Open Questions

- N/A

## References

- [Paste](https://paste.twilio.design/components/breadcrumb)
- [ChakraUI](https://chakra-ui.com/docs/components/breadcrumb/usage)
- [Mantine](https://mantine.dev/core/breadcrumbs/)
- [Reshaped](https://reshaped.so/docs/components/breadcrumbs)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading