-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathedit.js
195 lines (181 loc) · 4.42 KB
/
edit.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
/**
* External dependencies
*/
import { map } from 'lodash';
/**
* WordPress dependencies
*/
import { Component, Fragment } from '@wordpress/element';
import {
Button,
IconButton,
PanelBody,
Placeholder,
SelectControl,
Toolbar,
} from '@wordpress/components';
import { __ } from '@wordpress/i18n';
import { withSelect } from '@wordpress/data';
/**
* Internal dependencies
*/
import {
BlockControls,
BlockIcon,
InspectorControls,
ServerSideRender,
} from '@wordpress/editor';
import WidgetEditHandler from './WidgetEditHandler';
class LegacyWidgetEdit extends Component {
constructor() {
super( ...arguments );
this.state = {
isPreview: false,
};
this.switchToEdit = this.switchToEdit.bind( this );
this.switchToPreview = this.switchToPreview.bind( this );
this.changeWidget = this.changeWidget.bind( this );
}
render() {
const {
attributes,
availableLegacyWidgets,
hasPermissionsToManageWidgets,
setAttributes,
} = this.props;
const { isPreview } = this.state;
const { identifier, isCallbackWidget } = attributes;
const widgetObject = identifier && availableLegacyWidgets[ identifier ];
if ( ! widgetObject ) {
let placeholderContent;
if ( ! hasPermissionsToManageWidgets ) {
placeholderContent = __( 'You don\'t have permissions to use widgets on this site.' );
} else if ( availableLegacyWidgets.length === 0 ) {
placeholderContent = __( 'There are no widgets available.' );
} else {
placeholderContent = (
<SelectControl
label={ __( 'Select a legacy widget to display:' ) }
value={ identifier || 'none' }
onChange={ ( value ) => setAttributes( {
instance: {},
identifier: value,
isCallbackWidget: availableLegacyWidgets[ value ].isCallbackWidget,
} ) }
options={ [ { value: 'none', label: 'Select widget' } ].concat(
map( availableLegacyWidgets, ( widget, key ) => {
return {
value: key,
label: widget.name,
};
} )
) }
/>
);
}
return (
<Placeholder
icon={ <BlockIcon icon="admin-customizer" /> }
label={ __( 'Legacy Widget' ) }
>
{ placeholderContent }
</Placeholder>
);
}
const inspectorControls = (
<InspectorControls>
<PanelBody title={ widgetObject.name }>
{ widgetObject.description }
</PanelBody>
</InspectorControls>
);
if ( ! hasPermissionsToManageWidgets ) {
return (
<Fragment>
{ inspectorControls }
{ this.renderWidgetPreview() }
</Fragment>
);
}
return (
<Fragment>
<BlockControls>
<Toolbar>
<IconButton
onClick={ this.changeWidget }
label={ __( 'Change widget' ) }
icon="update"
>
</IconButton>
{ ! isCallbackWidget && (
<Fragment>
<Button
className={ `components-tab-button ${ ! isPreview ? 'is-active' : '' }` }
onClick={ this.switchToEdit }
>
<span>{ __( 'Edit' ) }</span>
</Button>
<Button
className={ `components-tab-button ${ isPreview ? 'is-active' : '' }` }
onClick={ this.switchToPreview }
>
<span>{ __( 'Preview' ) }</span>
</Button>
</Fragment>
) }
</Toolbar>
</BlockControls>
{ inspectorControls }
{ ! isCallbackWidget && (
<WidgetEditHandler
isVisible={ ! isPreview }
identifier={ attributes.identifier }
instance={ attributes.instance }
onInstanceChange={
( newInstance ) => {
this.props.setAttributes( {
instance: newInstance,
} );
}
}
/>
) }
{ ( isPreview || isCallbackWidget ) && this.renderWidgetPreview() }
</Fragment>
);
}
changeWidget() {
this.switchToEdit();
this.props.setAttributes( {
instance: {},
identifier: undefined,
} );
}
switchToEdit() {
this.setState( { isPreview: false } );
}
switchToPreview() {
this.setState( { isPreview: true } );
}
renderWidgetPreview() {
const { attributes } = this.props;
return (
<ServerSideRender
className="wp-block-legacy-widget__preview"
block="core/legacy-widget"
attributes={ attributes }
/>
);
}
}
export default withSelect( ( select ) => {
const editorSettings = select( 'core/block-editor' ).getSettings();
const {
availableLegacyWidgets,
hasPermissionsToManageWidgets,
} = editorSettings;
return {
hasPermissionsToManageWidgets,
availableLegacyWidgets,
};
} )( LegacyWidgetEdit );