forked from woocommerce/google-listings-and-ads
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattribute-mapping-rule-modal.js
More file actions
285 lines (258 loc) · 7.7 KB
/
attribute-mapping-rule-modal.js
File metadata and controls
285 lines (258 loc) · 7.7 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
/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { useState } from '@wordpress/element';
import { isEqual, noop } from 'lodash';
/**
* Internal dependencies
*/
import Subsection from '.~/wcdl/subsection';
import AppModal from '.~/components/app-modal';
import AppButton from '.~/components/app-button';
import AppSelectControl from '.~/components/app-select-control';
import useMappingAttributes from '.~/hooks/useMappingAttributes';
import useMappingAttributesSources from '.~/hooks/useMappingAttributesSources';
import AttributeMappingFieldSourcesControl from './attribute-mapping-field-sources-control';
import AttributeMappingSourceTypeSelector from './attribute-mapping-source-type-selector';
import AttributeMappingCategoryControl from '.~/attribute-mapping/attribute-mapping-category-control';
import AppSpinner from '.~/components/app-spinner';
import { useAppDispatch } from '.~/data';
import { CATEGORY_CONDITION_SELECT_TYPES } from '.~/constants';
import { recordGlaEvent } from '.~/utils/tracks';
/**
* Updates the rule successfully
*
* @event gla_attribute_mapping_update_rule
* @property {string} context Indicates where this event happened
*/
/**
* Creates the rule successfully
*
* @event gla_attribute_mapping_create_rule
* @property {string} context Indicates where this event happened
*/
/**
* Clicks on save rule button
*
* @event gla_attribute_mapping_save_rule_click
* @property {string} context Indicates where this event happened
*/
const enumSelectorLabel = __(
'Select default value',
'google-listings-and-ads'
);
const attributeSelectorLabel = __(
'Select a Google attribute that you want to manage',
'google-listings-and-ads'
);
/**
* Map the format received from the backend into the format needed in the SelectControl
*
* @param {Array<{id: string, label: string}>} data The array with the values from the backend
* @return {Array<{label: string, value: string}>} The data formatted
*/
const mapOptions = ( data = [] ) => {
return [
...data.map( ( attribute ) => {
return {
value: attribute.id,
label: attribute.label,
};
} ),
];
};
const prepareRule = ( newRule ) => {
return {
...newRule,
categories:
newRule.category_condition_type ===
CATEGORY_CONDITION_SELECT_TYPES.ALL
? ''
: newRule.categories,
};
};
/**
* Renders a modal showing a form for editing or creating an Attribute Mapping rule
*
* @param {Object} props React props
* @param {Object} [props.rule] Optional rule to manage
* @param {Function} [props.onRequestClose] Callback on closing the modal
* @fires gla_attribute_mapping_update_rule When the rule is successfully updated with `{ context: 'attribute-mapping-manage-rule-modal' }`
* @fires gla_attribute_mapping_create_rule When the rule is successfully created with `{ context: 'attribute-mapping-create-rule-modal' }`
* @fires gla_attribute_mapping_save_rule_click When user clicks on save rule button with `{ context: 'attribute-mapping-manage-rule-modal' | 'attribute-mapping-create-rule-modal' }`
*/
const AttributeMappingRuleModal = ( { rule, onRequestClose = noop } ) => {
const [ newRule, setNewRule ] = useState(
rule
? { ...rule }
: { category_condition_type: CATEGORY_CONDITION_SELECT_TYPES.ALL }
);
const [ saving, setSaving ] = useState( false );
const { updateMappingRule, createMappingRule } = useAppDispatch();
const { data: attributes } = useMappingAttributes();
const {
data: sources = [],
hasFinishedResolution: sourcesHasFinishedResolution,
} = useMappingAttributesSources( newRule.attribute );
const isEnum =
attributes.find( ( { id } ) => id === newRule.attribute )?.enum ||
false;
const sourcesOptions = mapOptions( sources );
const attributesOptions = [
{
value: '',
label: __( 'Select an attribute', 'google-listings-and-ads' ),
},
...mapOptions( attributes ),
];
const isValidRule =
newRule.source &&
newRule.attribute &&
( newRule.category_condition_type ===
CATEGORY_CONDITION_SELECT_TYPES.ALL ||
newRule.categories?.length > 0 ) &&
! isEqual( newRule, rule );
const onSave = async () => {
setSaving( true );
try {
if ( rule ) {
await updateMappingRule( newRule );
recordGlaEvent( 'gla_attribute_mapping_update_rule', {
context: 'attribute-mapping-manage-rule-modal',
} );
} else {
await createMappingRule( newRule );
recordGlaEvent( 'gla_attribute_mapping_create_rule', {
context: 'attribute-mapping-create-rule-modal',
} );
}
onRequestClose( 'confirm' );
} catch ( error ) {
setSaving( false );
}
};
const updateRule = ( data ) => {
setNewRule( prepareRule( data ) );
};
const onSourceUpdate = ( source ) => {
updateRule( { ...newRule, source } );
};
const handleClose = () => {
if ( saving ) return;
onRequestClose( 'dismiss' );
};
return (
<AppModal
overflow="visible"
onRequestClose={ handleClose }
className="gla-attribute-mapping__rule-modal"
title={
rule
? __( 'Manage attribute rule', ' google-listings-and-ads' )
: __( 'Create attribute rule', ' google-listings-and-ads' )
}
buttons={ [
<AppButton
disabled={ saving }
key="cancel"
isLink
onClick={ handleClose }
>
{ __( 'Cancel', 'google-listings-and-ads' ) }
</AppButton>,
<AppButton
disabled={ ! isValidRule || saving }
key="save-rule"
isPrimary
text={
saving
? __( 'Saving…', 'google-listings-and-ads' )
: __( 'Save rule', 'google-listings-and-ads' )
}
eventName="gla_attribute_mapping_save_rule_click"
eventProps={ {
context: rule
? 'attribute-mapping-manage-rule-modal'
: 'attribute-mapping-create-rule-modal',
} }
onClick={ onSave }
/>,
] }
>
<Subsection>
<Subsection.Title>
{ __( 'Target attribute', 'google-listings-and-ads' ) }
</Subsection.Title>
<Subsection.Subtitle className="gla_attribute_mapping_helper-text">
{ attributeSelectorLabel }
</Subsection.Subtitle>
<AppSelectControl
value={ newRule.attribute }
aria-label={ attributeSelectorLabel }
onChange={ ( attribute ) => {
updateRule( { ...newRule, attribute, source: '' } );
} }
options={ attributesOptions }
/>
</Subsection>
{ ! sourcesHasFinishedResolution && <AppSpinner /> }
{ sourcesOptions.length > 0 && sourcesHasFinishedResolution && (
<>
<Subsection>
<Subsection.Title>
{ isEnum
? enumSelectorLabel
: __(
'Assign value',
'google-listings-and-ads'
) }
</Subsection.Title>
{ isEnum ? (
<AttributeMappingFieldSourcesControl
sources={ sourcesOptions }
onChange={ onSourceUpdate }
value={ newRule.source }
aria-label={ enumSelectorLabel }
/>
) : (
<AttributeMappingSourceTypeSelector
sources={ sourcesOptions }
onChange={ onSourceUpdate }
value={ newRule.source }
/>
) }
</Subsection>
<Subsection>
<Subsection.Title>
{ __( 'Categories', 'google-listings-and-ads' ) }
</Subsection.Title>
<AttributeMappingCategoryControl
selectedConditionalType={
newRule.category_condition_type
}
selectedCategories={
newRule.categories?.length
? newRule.categories.split( ',' )
: []
}
onConditionalTypeChange={ ( type ) => {
updateRule( {
...newRule,
category_condition_type: type,
} );
} }
onCategoriesChange={ ( categories ) => {
updateRule( {
...newRule,
categories: categories.join( ',' ),
} );
} }
/>
</Subsection>
</>
) }
</AppModal>
);
};
export default AttributeMappingRuleModal;