Introduces the synced metadata reducer which handles replace, remove, and remove all ops.
Depends on D11421
Paths
| Differential D11422 Authored by will on Mar 27 2024, 4:18 PM.
Details Summary Introduces the synced metadata reducer which handles replace, remove, and remove all ops. Depends on D11421 Test Plan Ran the following code: const onPressSave = React.useCallback(async () => { dispatch({ type: addSyncedMetadataEntryActionType, payload: { name: 'Test_1_name', data: 'Test_1_data', }, }); dispatch({ type: addSyncedMetadataEntryActionType, payload: { name: 'Test_2_name', data: 'Test_2_data', }, }); dispatch({ type: addSyncedMetadataEntryActionType, payload: { name: 'Test_1_name', data: 'Test_1_update', }, }); dispatch({ type: removeSyncedMetadataEntryActionType, payload: { name: 'Test_2_name', }, }); }, [dispatch]);
Diff Detail
Event TimelineHerald added subscribers: tomek, ashoat. · View Herald TranscriptMar 27 2024, 4:19 PM2024-03-27 16:19:00 (UTC-7) Harbormaster completed remote builds in B27740: Diff 38403.Mar 27 2024, 4:33 PM2024-03-27 16:33:31 (UTC-7) will edited the test plan for this revision. (Show Details)Mar 27 2024, 5:10 PM2024-03-27 17:10:08 (UTC-7) will edited the summary of this revision. (Show Details)Mar 27 2024, 5:15 PM2024-03-27 17:15:47 (UTC-7) Harbormaster completed remote builds in B27742: Diff 38405.Mar 27 2024, 5:30 PM2024-03-27 17:30:21 (UTC-7) Comment Actions LGTM - requesting changes to address this blacklist comment because this is important
This revision now requires changes to proceed.Mar 28 2024, 5:04 AM2024-03-28 05:04:53 (UTC-7)
Harbormaster completed remote builds in B27800: Diff 38516.Mar 28 2024, 5:10 PM2024-03-28 17:10:29 (UTC-7) This revision is now accepted and ready to land.Apr 2 2024, 1:34 AM2024-04-02 01:34:20 (UTC-7) Closed by commit rCOMM9ce16932b467: [lib/native/web] introduce synced metadata reducer (authored by will). · Explain WhyApr 2 2024, 11:22 PM2024-04-02 23:22:04 (UTC-7) This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 38405 lib/reducers/master-reducer.js
lib/reducers/message-reducer.test.js
lib/reducers/synced-metadata-reducer.js
lib/types/redux-types.js
lib/types/store-ops-types.js
|