-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
custom-dataviews-list.js
232 lines (225 loc) · 5.41 KB
/
custom-dataviews-list.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
228
229
230
231
232
/**
* WordPress dependencies
*/
import { useSelect, useDispatch } from '@wordpress/data';
import { store as coreStore } from '@wordpress/core-data';
import {
__experimentalItemGroup as ItemGroup,
__experimentalHeading as Heading,
DropdownMenu,
MenuGroup,
MenuItem,
TextControl,
__experimentalHStack as HStack,
__experimentalVStack as VStack,
Button,
Modal,
} from '@wordpress/components';
import { useMemo, useState } from '@wordpress/element';
import { moreVertical } from '@wordpress/icons';
import { __ } from '@wordpress/i18n';
import { privateApis as routerPrivateApis } from '@wordpress/router';
/**
* Internal dependencies
*/
import DataViewItem from './dataview-item';
import AddNewItem from './add-new-view';
import { unlock } from '../../lock-unlock';
const { useHistory } = unlock( routerPrivateApis );
const EMPTY_ARRAY = [];
function RenameItemModalContent( { dataviewId, currentTitle, setIsRenaming } ) {
const { editEntityRecord } = useDispatch( coreStore );
const [ title, setTitle ] = useState( currentTitle );
return (
<form
onSubmit={ async ( event ) => {
event.preventDefault();
await editEntityRecord(
'postType',
'wp_dataviews',
dataviewId,
{
title,
}
);
setIsRenaming( false );
} }
>
<VStack spacing="5">
<TextControl
__next40pxDefaultSize
__nextHasNoMarginBottom
label={ __( 'Name' ) }
value={ title }
onChange={ setTitle }
placeholder={ __( 'My view' ) }
className="patterns-create-modal__name-input"
/>
<HStack justify="right">
<Button
variant="tertiary"
__next40pxDefaultSize
onClick={ () => {
setIsRenaming( false );
} }
>
{ __( 'Cancel' ) }
</Button>
<Button
variant="primary"
type="submit"
aria-disabled={ ! title }
__next40pxDefaultSize
>
{ __( 'Save' ) }
</Button>
</HStack>
</VStack>
</form>
);
}
function CustomDataViewItem( { dataviewId, isActive } ) {
const history = useHistory();
const { dataview } = useSelect(
( select ) => {
const { getEditedEntityRecord } = select( coreStore );
return {
dataview: getEditedEntityRecord(
'postType',
'wp_dataviews',
dataviewId
),
};
},
[ dataviewId ]
);
const { deleteEntityRecord } = useDispatch( coreStore );
const type = useMemo( () => {
const viewContent = JSON.parse( dataview.content );
return viewContent.type;
}, [ dataview.content ] );
const [ isRenaming, setIsRenaming ] = useState( false );
return (
<>
<DataViewItem
title={ dataview.title }
type={ type }
isActive={ isActive }
isCustom
customViewId={ dataviewId }
suffix={
<DropdownMenu
icon={ moreVertical }
label={ __( 'Actions' ) }
className="edit-site-sidebar-dataviews-dataview-item__dropdown-menu"
toggleProps={ {
style: {
color: 'inherit',
},
size: 'small',
} }
>
{ ( { onClose } ) => (
<MenuGroup>
<MenuItem
onClick={ () => {
setIsRenaming( true );
onClose();
} }
>
{ __( 'Rename' ) }
</MenuItem>
<MenuItem
onClick={ async () => {
await deleteEntityRecord(
'postType',
'wp_dataviews',
dataview.id,
{
force: true,
}
);
if ( isActive ) {
const {
params: { postType },
} = history.getLocationWithParams();
history.replace( { postType } );
}
onClose();
} }
isDestructive
>
{ __( 'Delete' ) }
</MenuItem>
</MenuGroup>
) }
</DropdownMenu>
}
/>
{ isRenaming && (
<Modal
title={ __( 'Rename' ) }
onRequestClose={ () => {
setIsRenaming( false );
} }
focusOnMount="firstContentElement"
size="small"
>
<RenameItemModalContent
dataviewId={ dataviewId }
setIsRenaming={ setIsRenaming }
currentTitle={ dataview.title }
/>
</Modal>
) }
</>
);
}
export function useCustomDataViews( type ) {
const customDataViews = useSelect( ( select ) => {
const { getEntityRecords } = select( coreStore );
const dataViewTypeRecords = getEntityRecords(
'taxonomy',
'wp_dataviews_type',
{ slug: type }
);
if ( ! dataViewTypeRecords || dataViewTypeRecords.length === 0 ) {
return EMPTY_ARRAY;
}
const dataViews = getEntityRecords( 'postType', 'wp_dataviews', {
wp_dataviews_type: dataViewTypeRecords[ 0 ].id,
orderby: 'date',
order: 'asc',
} );
if ( ! dataViews ) {
return EMPTY_ARRAY;
}
return dataViews;
} );
return customDataViews;
}
export default function CustomDataViewsList( { type, activeView, isCustom } ) {
const customDataViews = useCustomDataViews( type );
return (
<>
<div className="edit-site-sidebar-navigation-screen-dataviews__group-header">
<Heading level={ 2 }>{ __( 'Custom Views' ) }</Heading>
</div>
<ItemGroup className="edit-site-sidebar-navigation-screen-dataviews__custom-items">
{ customDataViews.map( ( customViewRecord ) => {
return (
<CustomDataViewItem
key={ customViewRecord.id }
dataviewId={ customViewRecord.id }
isActive={
isCustom &&
Number( activeView ) === customViewRecord.id
}
/>
);
} ) }
<AddNewItem type={ type } />
</ItemGroup>
</>
);
}