-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathpattern-overrides-controls.js
142 lines (127 loc) · 3.58 KB
/
pattern-overrides-controls.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
/**
* WordPress dependencies
*/
import { useState, useId } from '@wordpress/element';
import { InspectorControls } from '@wordpress/block-editor';
import { BaseControl, Button } from '@wordpress/components';
import { __ } from '@wordpress/i18n';
/**
* Internal dependencies
*/
import { PATTERN_OVERRIDES_BINDING_SOURCE } from '../constants';
import {
AllowOverridesModal,
DisallowOverridesModal,
} from './allow-overrides-modal';
function removeBindings( bindings ) {
let updatedBindings = { ...bindings };
delete updatedBindings.__default;
if ( ! Object.keys( updatedBindings ).length ) {
updatedBindings = undefined;
}
return updatedBindings;
}
function addBindings( bindings ) {
return {
...bindings,
__default: { source: PATTERN_OVERRIDES_BINDING_SOURCE },
};
}
function PatternOverridesControls( {
attributes,
setAttributes,
name: blockName,
} ) {
const controlId = useId();
const [ showAllowOverridesModal, setShowAllowOverridesModal ] =
useState( false );
const [ showDisallowOverridesModal, setShowDisallowOverridesModal ] =
useState( false );
const hasName = !! attributes.metadata?.name;
const defaultBindings = attributes.metadata?.bindings?.__default;
const hasOverrides =
hasName && defaultBindings?.source === PATTERN_OVERRIDES_BINDING_SOURCE;
const isConnectedToOtherSources =
defaultBindings?.source &&
defaultBindings.source !== PATTERN_OVERRIDES_BINDING_SOURCE;
function updateBindings( isChecked, customName ) {
const prevBindings = attributes?.metadata?.bindings;
const updatedBindings = isChecked
? addBindings( prevBindings )
: removeBindings( prevBindings );
const updatedMetadata = {
...attributes.metadata,
bindings: updatedBindings,
};
if ( customName ) {
updatedMetadata.name = customName;
}
setAttributes( {
metadata: updatedMetadata,
} );
}
// Avoid overwriting other (e.g. meta) bindings.
if ( isConnectedToOtherSources ) {
return null;
}
const hasUnsupportedImageAttributes =
blockName === 'core/image' &&
( !! attributes.caption?.length || !! attributes.href?.length );
const helpText =
! hasOverrides && hasUnsupportedImageAttributes
? __(
`Overrides currently don't support image captions or links. Remove the caption or link first before enabling overrides.`
)
: __(
'Allow changes to this block throughout instances of this pattern.'
);
return (
<>
<InspectorControls group="advanced">
<BaseControl
id={ controlId }
label={ __( 'Overrides' ) }
help={ helpText }
>
<Button
__next40pxDefaultSize
className="pattern-overrides-control__allow-overrides-button"
variant="secondary"
aria-haspopup="dialog"
onClick={ () => {
if ( hasOverrides ) {
setShowDisallowOverridesModal( true );
} else {
setShowAllowOverridesModal( true );
}
} }
disabled={
! hasOverrides && hasUnsupportedImageAttributes
}
accessibleWhenDisabled
>
{ hasOverrides
? __( 'Disable overrides' )
: __( 'Enable overrides' ) }
</Button>
</BaseControl>
</InspectorControls>
{ showAllowOverridesModal && (
<AllowOverridesModal
initialName={ attributes.metadata?.name }
onClose={ () => setShowAllowOverridesModal( false ) }
onSave={ ( newName ) => {
updateBindings( true, newName );
} }
/>
) }
{ showDisallowOverridesModal && (
<DisallowOverridesModal
onClose={ () => setShowDisallowOverridesModal( false ) }
onSave={ () => updateBindings( false ) }
/>
) }
</>
);
}
export default PatternOverridesControls;