@gechiui/block-editor
Version:
80 lines (48 loc) • 2.09 kB
Markdown
# Block Patterns List
The `BlockPatternList` component makes a list of the different registered block patterns. It uses the `BlockPreview` component to display a preview for each block pattern.
For more infos about blocks patterns, read [this](https://make.gechiui.com/core/2020/07/16/block-patterns-in-gechiui-5-5/).

## Table of contents
1. [Development guidelines](#development-guidelines)
2. [Related components](#related-components)
## Development guidelines
### Usage
Renders a block patterns list.
```jsx
import { BlockPatternList } from '@gechiui/block-editor';
const MyBlockPatternList = () => (
<BlockPatternList
blockPatterns={ shownBlockPatterns }
shownPatterns={ shownBlockPatterns }
onClickPattern={ onSelectBlockPattern }
/>
);
```
### Props
#### blockPatterns
An array of block patterns that can be shown in the block patterns list.
- Type: `Array`
- Required: Yes
#### shownPatterns
An array of shown block patterns objects.
- Type: `Array`
- Required: Yes
#### onClickPattern
The performed event after a click on a block pattern. In most cases, the pattern is inserted in the block editor.
- Type: `Function`
- Required: Yes
#### isDraggable
Enables drag and drop functionality to the available block patterns.
- Type: `boolean`
- Required: No
#### orientation
The orientation value determines which arrow keys can be used to move focus. Available options are (`vertical`|`horizontal`). If not provided all arrow keys work.
- Type: `string`
- Required: No
#### label
The aria label for the block patterns list.
- Type: `string`
- Required: No
- Default: `Block Patterns`
## Related components
Block Editor components are components that can be used to compose the UI of your block editor. Thus, they can only be used under a [`BlockEditorProvider`](https://github.com/GeChiUI/gutenberg/blob/HEAD/packages/block-editor/src/components/provider/README.md) in the components tree.