-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathindex.js
More file actions
365 lines (319 loc) · 11.1 KB
/
index.js
File metadata and controls
365 lines (319 loc) · 11.1 KB
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
/**
* External dependencies
*/
import ProControl from '../pro-control'
import { ResetButton } from '../base-control2/reset-button'
import Button from '../button'
import {
useBlockAttributesContext,
useBlockSetAttributesContext,
} from '~stackable/hooks'
import {
getBlockStyleAttributesFilter,
getFilteredAttributes,
isBlockStyleAttributesModified,
currentUserHasCapability,
} from '~stackable/util'
import { i18n, isPro } from 'stackable'
import classnames from 'classnames'
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n'
import {
Dashicon,
Popover,
PanelBody,
Flex,
FlexItem,
} from '@wordpress/components'
import {
Fragment,
useEffect,
useMemo, useRef, useState,
} from '@wordpress/element'
import { useSelect, dispatch } from '@wordpress/data'
import { getBlockType } from '@wordpress/blocks'
import { applyFilters, doAction } from '@wordpress/hooks'
export const BlockStylesControl = props => {
const { blockName } = props
const blockType = getBlockType( blockName )
const blockAttributesFilter = getBlockStyleAttributesFilter( blockName )
const defaultBlockAttributes = useMemo( () => getFilteredAttributes( blockType.attributes, blockAttributesFilter ), [] )
const [ userCanManageOptions, setUserCanManageOptions ] = useState( false )
const [ openProNotice, setOpenProNotice ] = useState( false )
const [ openSaveModal, setOpenSaveModal ] = useState( false )
const [ openPopover, setOpenPopover ] = useState( false )
const [ focusedIndex, setFocusedIndex ] = useState( 0 )
const prevBlockStyleRef = useRef( null )
const buttonRef = useRef( null )
const blockStylesListRef = useRef( null )
const blockStyleButtonsRef = useRef( [] )
const id = useSelect( select => select( 'core' ).getCurrentUser()?.id, [] )
const attributes = useBlockAttributesContext()
const setAttributes = useBlockSetAttributesContext()
const {
blockStyle,
modifiedBlockStyle: isModified,
uniqueId: _uniqueId,
generatedCss: _generatedCss,
...otherAttributes
} = attributes
const mainClasses = classnames( [
'components-panel__body',
'ugb-block-styles-controls',
] )
const proControlClasses = classnames( [
'ugb-pro-control-button__wrapper',
], {
'ugb-pro-control-button--hidden': ! openProNotice,
} )
// Handle keyboard navigation for block style buttons
const handleKeyDown = event => {
// eslint-disable-next-line @wordpress/no-global-active-element
if ( ! blockStyleButtonsRef.current.includes( document.activeElement ) ) {
return
}
if ( event.key === 'ArrowDown' ) {
event.preventDefault()
setFocusedIndex( prevIndex => ( prevIndex + 1 ) % blockStyleButtonsRef.current.length )
} else if ( event.key === 'ArrowUp' ) {
event.preventDefault()
setFocusedIndex( prevIndex => ( prevIndex - 1 + blockStyleButtonsRef.current.length ) % blockStyleButtonsRef.current.length )
}
}
// Update focused block style
useEffect( () => {
if ( blockStyleButtonsRef.current[ focusedIndex ] ) {
blockStyleButtonsRef.current[ focusedIndex ].focus()
}
}, [ focusedIndex ] )
useEffect( () => {
// Reset openProNotice, focusedIndex, and blockStyleButtonsRef when the popover is closed
if ( ! openPopover ) {
setOpenProNotice( false )
setFocusedIndex( -1 )
blockStyleButtonsRef.current = []
return
}
const list = blockStylesListRef.current
if ( ! list ) {
return
}
if ( ! blockStyleButtonsRef.current.length ) {
blockStyleButtonsRef.current = Array.from( list.querySelectorAll( 'button' ) )
}
// Focus on the selected block style button when the popover is opened.
const selected = list.querySelector( '.ugb-block-styles-controls__selected' )
if ( selected && blockStyleButtonsRef.current.length ) {
const index = blockStyleButtonsRef.current.indexOf( selected )
setFocusedIndex( index )
}
list.addEventListener( 'keydown', handleKeyDown )
return () => {
if ( list ) {
list.removeEventListener( 'keydown', handleKeyDown )
}
}
}, [ openPopover ] )
// Check if the user has "manage options" capabilities and can manage block styles.
useEffect( () => {
const checkCapabilities = async () => {
const capabilities = await currentUserHasCapability( 'manage_options' )
setUserCanManageOptions( capabilities )
}
checkCapabilities()
}, [ id ] )
useEffect( () => {
if ( prevBlockStyleRef.current === null ) {
prevBlockStyleRef.current = blockStyle
return
}
if ( prevBlockStyleRef.current !== blockStyle ) {
prevBlockStyleRef.current = blockStyle
return
}
if ( isModified || ! blockStyle ) {
return
}
const modified = isBlockStyleAttributesModified( blockName, blockStyle, otherAttributes )
if ( modified ) {
setAttributes( { modifiedBlockStyle: true } )
}
}, [ attributes ] )
const globalBlockStyles = useSelect( select => {
const globalBlockStyles = select( 'stackable/global-block-styles' ).getBlockStyles( blockName )
return globalBlockStyles
}, [ isModified ] )
const {
inBlockStyleOptions, blockStyleLabel, blockStyleAttributes,
} = useMemo( () => {
const selectedIndex = globalBlockStyles.findIndex( item => item.slug === blockStyle )
if ( selectedIndex === -1 ) {
return { inBlockStyleOptions: false, blockStyleLabel: __( 'Default', i18n ) }
}
return {
inBlockStyleOptions: true,
blockStyleLabel: globalBlockStyles[ selectedIndex ].name,
blockStyleAttributes: globalBlockStyles[ selectedIndex ].nonCssAttributes,
}
}, [ blockStyle ] )
const onSelectDefaultBlockStyle = () => {
setFocusedIndex( 0 )
// Do nothing if block style is already "Default"
if ( ! blockStyle ) {
return
}
setAttributes( { ...defaultBlockAttributes, modifiedBlockStyle: false } )
// Reset to normal state after selecting block style
dispatch( 'stackable/hover-state' ).updateHoverState( 'normal' )
}
const onSelectBlockStyle = ( option, index ) => {
setFocusedIndex( index )
if ( isPro ) {
doAction( 'stackable.global-settings.global-block-styles.select-block-style',
option, blockStyle, globalBlockStyles, defaultBlockAttributes, setAttributes )
} else {
setOpenProNotice( value => ! value )
}
}
const onAddBlockStyle = () => {
if ( isPro ) {
doAction( 'stackable.global-settings.global-block-styles.add-block-style', setOpenSaveModal )
} else {
setOpenProNotice( value => ! value )
}
setOpenPopover( false )
}
const SaveUpdateModal = applyFilters( 'stackable.global-settings.global-block-styles.save-update-modal', Fragment )
return (
<>
<div className={ mainClasses } >
<div
className={ `ugb-block-styles-controls__wrapper ${ isModified && inBlockStyleOptions ? 'has-modified' : '' }` }
>
<Button
variant="tertiary"
className={ classnames( 'ugb-block-styles-controls__block-style-button', {
'is-opened': openPopover,
} ) }
size="small"
icon="edit"
iconSize={ 12 }
onClick={ () => setOpenPopover( isOpen => ! isOpen ) }
ref={ buttonRef }
>
{ `${ __( 'Block Style', i18n ) }:` } <wbr /> { blockStyleLabel }{ isModified && inBlockStyleOptions ? <span className="stk-panel-modified-indicator stk--visible"></span> : '' }
</Button>
<ResetButton
allowReset={ true }
value={ isModified && inBlockStyleOptions }
default={ false }
onChange={ () => {
if ( ! blockStyle || ! inBlockStyleOptions ) {
setAttributes( defaultBlockAttributes )
return
}
setAttributes( {
...defaultBlockAttributes,
...blockStyleAttributes,
blockStyle,
} )
} }
/>
</div>
</div>
{ openPopover && (
<Popover
className="ugb-button-icon-control__popover ugb-block-styles-controls__popover"
anchor={ buttonRef.current }
onEscape={ () => setOpenPopover( false ) }
focusOnMount={ false }
placement="left-start"
resize={ false }
offset={ 8 }
>
<PanelBody>
<h2 className="components-panel__body-title">{ __( 'Block Styles', i18n ) }</h2>
<p className="components-panel__body-description">
{ __( 'Save the styles of this block to reuse on others. You can also update a saved style, and the changes will apply wherever it\'s used.', i18n ) }
<a href="https://docs.wpstackable.com/article/737-how-to-use-block-styles" target="_docs" rel="noreferrer">{ __( 'Learn more', i18n ) }</a>
</p>
<ul className="ugb-block-styles-controls__list" ref={ blockStylesListRef }>
<li>
<Button
onClick={ () => onSelectDefaultBlockStyle() }
className={ ! blockStyle ? 'ugb-block-styles-controls__selected' : '' }
tabIndex={ 0 }
>
{ ! blockStyle && <span className="ugb-block-styles-controls__selected-icon"> <Dashicon icon="saved" /> </span> }
<span className="ugb-block-styles-controls__label">{ __( 'Default', i18n ) }</span>
</Button>
</li>
{ globalBlockStyles.map( ( option, index ) => {
return <li key={ index }>
<Button
onClick={ () => onSelectBlockStyle( option.slug, index + 1 ) }
className={ blockStyle === option.slug ? 'ugb-block-styles-controls__selected' : '' }
tabIndex={ 0 }
data-slug={ option.slug }
data-name={ option.name }
>
{ blockStyle === option.slug && <span className="ugb-block-styles-controls__selected-icon"> <Dashicon icon="saved" /> </span> }
<span className="ugb-block-styles-controls__label">
{ option.name } { blockStyle === option.slug && inBlockStyleOptions && isModified ? `(${ __( 'Modified', i18n ) })` : '' }
</span>
{ ! isPro && <Dashicon icon="lock" size={ 12 } /> }
</Button>
</li>
} ) }
</ul>
{ userCanManageOptions && (
<SaveUpdateButtons
blockName={ blockName }
blockStyle={ blockStyle }
inOptions={ inBlockStyleOptions }
isModified={ isModified }
buttonClassName={ `${ openSaveModal ? 'is-opened' : '' }` }
setOpenSaveModal={ setOpenSaveModal }
onAddBlockStyle={ onAddBlockStyle }
/>
) }
<div className={ proControlClasses } >
<ProControl type="global-block-styles" />
</div>
</PanelBody>
</Popover>
) }
<SaveUpdateModal
openSaveModal={ openSaveModal }
setOpenSaveModal={ setOpenSaveModal }
blockName={ blockName }
blockStyleLabel={ blockStyleLabel }
defaultBlockAttributes={ defaultBlockAttributes }
/>
</>
)
}
const SaveUpdateButtons = props => {
const { onAddBlockStyle, ...propsToPass } = props
const ActionButtons = applyFilters( 'stackable.global-settings.global-block-styles.action-buttons', Fragment )
return ( <>
<Flex style={ { marginTop: '24px', justifyContent: 'flex-end' } }>
<ActionButtons { ...propsToPass } />
<FlexItem style={ ! props.blockStyle || ! props.inOptions ? { marginLeft: 'auto' } : {} }>
<Button
variant="primary"
onClick={ () => onAddBlockStyle() }
size="small"
data-action="save-style"
className={ props.buttonClassName }
>
{ __( 'Save New Block Style', i18n ) }
{ ! isPro && <span className="stk-pulsating-circle" role="presentation" /> }
</Button>
</FlexItem>
</Flex>
</> )
}