-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
index.js
227 lines (213 loc) · 5.62 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/**
* External dependencies
*/
import classnames from 'classnames';
/**
* WordPress dependencies
*/
import { useState, forwardRef } from '@wordpress/element';
import {
VisuallyHidden,
Tooltip,
privateApis as componentsPrivateApis,
__experimentalHStack as HStack,
} from '@wordpress/components';
import { useInstanceId } from '@wordpress/compose';
import { __ } from '@wordpress/i18n';
import { Icon, symbol } from '@wordpress/icons';
/**
* Internal dependencies
*/
import { unlock } from '../../lock-unlock';
import BlockPreview from '../block-preview';
import InserterDraggableBlocks from '../inserter-draggable-blocks';
import BlockPatternsPaging from '../block-patterns-paging';
const {
CompositeV2: Composite,
CompositeItemV2: CompositeItem,
useCompositeStoreV2: useCompositeStore,
} = unlock( componentsPrivateApis );
const WithToolTip = ( { showTooltip, title, children } ) => {
if ( showTooltip ) {
return <Tooltip text={ title }>{ children }</Tooltip>;
}
return <>{ children }</>;
};
function BlockPattern( {
id,
isDraggable,
pattern,
onClick,
onHover,
showTooltip,
} ) {
const [ isDragging, setIsDragging ] = useState( false );
const { blocks, viewportWidth } = pattern;
const instanceId = useInstanceId( BlockPattern );
const descriptionId = `block-editor-block-patterns-list__item-description-${ instanceId }`;
return (
<InserterDraggableBlocks
isEnabled={ isDraggable }
blocks={ blocks }
isPattern={ !! pattern }
>
{ ( { draggable, onDragStart, onDragEnd } ) => (
<div
role="listitem"
className="block-editor-block-patterns-list__list-item"
draggable={ draggable }
onDragStart={ ( event ) => {
setIsDragging( true );
if ( onDragStart ) {
onHover?.( null );
onDragStart( event );
}
} }
onDragEnd={ ( event ) => {
setIsDragging( false );
if ( onDragEnd ) {
onDragEnd( event );
}
} }
>
<WithToolTip
showTooltip={ showTooltip && ! pattern.id }
title={ pattern.title }
>
<CompositeItem
id={ id }
onClick={ () => {
onClick( pattern, blocks );
onHover?.( null );
} }
onMouseEnter={ () => {
if ( isDragging ) {
return;
}
onHover?.( pattern );
} }
onMouseLeave={ () => onHover?.( null ) }
render={
<div
role="button"
className={ classnames(
'block-editor-block-patterns-list__item',
{
'block-editor-block-patterns-list__list-item-synced':
pattern.id &&
! pattern.syncStatus,
}
) }
aria-label={ pattern.title }
aria-describedby={
pattern.description
? descriptionId
: undefined
}
/>
}
>
<BlockPreview
blocks={ blocks }
viewportWidth={ viewportWidth }
/>
<HStack className="block-editor-patterns__pattern-details">
{ pattern.id && ! pattern.syncStatus && (
<div className="block-editor-patterns__pattern-icon-wrapper">
<Icon
className="block-editor-patterns__pattern-icon"
icon={ symbol }
/>
</div>
) }
{ ( ! showTooltip || pattern.id ) && (
<div className="block-editor-block-patterns-list__item-title">
{ pattern.title }
</div>
) }
</HStack>
{ !! pattern.description && (
<VisuallyHidden id={ descriptionId }>
{ pattern.description }
</VisuallyHidden>
) }
</CompositeItem>
</WithToolTip>
</div>
) }
</InserterDraggableBlocks>
);
}
function BlockPatternPlaceholder() {
return (
<div className="block-editor-block-patterns-list__item is-placeholder" />
);
}
function BlockPatternsList(
{
isDraggable,
blockPatterns,
shownPatterns,
onHover,
onClickPattern,
orientation,
label = __( 'Block patterns' ),
showTitlesAsTooltip,
pagingProps,
},
ref
) {
const composite = useCompositeStore( {
orientation,
setItems: ( items ) => {
// This is necessary for if/when we filter the block patterns;
// we can potentially remove the currently active item, so we
// check to see if the active item is still present, and if not,
// reset the it to be the first available block.
const currentIds = items.map( ( item ) => item.id );
if ( ! currentIds.includes( activeId ) ) {
// We can't rely on the order of `currentIds` here, because
// `blockPatterns` may not be in the same order the blocks were
// originally registered in. So we filter the blocks by what's
// visible, and take the first item in that list instead.
const firstPattern = blockPatterns.filter( ( pattern ) =>
currentIds.includes( pattern.name )
)[ 0 ];
composite.setActiveId( firstPattern?.name );
}
},
} );
const activeId = composite.useState( 'activeId' );
return (
<Composite
store={ composite }
render={
<div
ref={ ref }
role="list"
className="block-editor-block-patterns-list"
aria-label={ label }
/>
}
>
{ blockPatterns.map( ( pattern ) => {
const isShown = shownPatterns.includes( pattern );
return isShown ? (
<BlockPattern
key={ pattern.name }
id={ pattern.name }
pattern={ pattern }
onClick={ onClickPattern }
onHover={ onHover }
isDraggable={ isDraggable }
showTooltip={ showTitlesAsTooltip }
/>
) : (
<BlockPatternPlaceholder key={ pattern.name } />
);
} ) }
{ pagingProps && <BlockPatternsPaging { ...pagingProps } /> }
</Composite>
);
}
export default forwardRef( BlockPatternsList );