This is needed to map between ops and actions
https://linear.app/comm/issue/ENG-7103/add-an-optional-id-field-to-all-the-actions
Depends on D11280
Paths
| Differential D11281 Authored by tomek on Mar 8 2024, 2:28 AM.
Tags None Referenced Files
Subscribers
Details Summary This is needed to map between ops and actions https://linear.app/comm/issue/ENG-7103/add-an-optional-id-field-to-all-the-actions Depends on D11280 Test Plan Flow
Diff Detail
Event TimelineHerald added a subscriber: ashoat. · View Herald TranscriptMar 8 2024, 2:28 AM2024-03-08 02:28:56 (UTC-8) Harbormaster completed remote builds in B27400: Diff 37944.Mar 8 2024, 2:44 AM2024-03-08 02:44:09 (UTC-8) tomek added a child revision: D11284: [native][web] Queue new ops.Mar 8 2024, 9:11 AM2024-03-08 09:11:58 (UTC-8) Comment Actions This is a big change, and complicated the types significantly. Can you explain more about why it's necessary to include these field on all actions? Comment Actions @tomek is off - going to request changes to clear our queues until he's back and able to respond to the question This revision now requires changes to proceed.Mar 12 2024, 8:15 AM2024-03-12 08:15:35 (UTC-7) Comment Actions
We need to know when the processing of an action is finished. This processing consists of generating 0 or more ops and applying them on the DB. We're introducing a new store, where the ops will be put and a handler that listens for new ops, applies them on the DB, and removes them from the store. We need to know when the processing is finished, but we don't know which action generated which ops. The solution to that is introducing an optional ID to each action - with it, we will know that processing of some ops is the end of processing a given action. This field will be used in https://linear.app/comm/issue/ENG-7095/add-an-option-to-await-action-ops-processing - we're introducing a new dispatch-like function that calls dispatch with an ID and returns a promise that is resolved when the processing is finished. This is achieved by monitoring the ops store - when there are new ops with action ID which then later disappear, it means that the processing of that action is done. This revision is now accepted and ready to land.Mar 19 2024, 4:56 AM2024-03-19 04:56:51 (UTC-7) Harbormaster completed remote builds in B27641: Diff 38262.Mar 21 2024, 5:21 AM2024-03-21 05:21:32 (UTC-7) Comment Actions
With the most recent approach, described in https://linear.app/comm/issue/ENG-7040/implement-generating-and-awaiting-processed-ops, we still need an ID Harbormaster completed remote builds in B27705: Diff 38368.Mar 27 2024, 9:03 AM2024-03-27 09:03:41 (UTC-7) Harbormaster completed remote builds in B27768: Diff 38448.Mar 28 2024, 7:59 AM2024-03-28 07:59:33 (UTC-7) Closed by commit rCOMMb80ef60087c4: [lib] Add an optional ID field to all the actions (authored by tomek). · Explain WhyMar 28 2024, 8:11 AM2024-03-28 08:11:37 (UTC-7) This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 38454 lib/types/redux-types.js
lib/types/request-types.js
native/redux/action-types.js
web/redux/redux-setup.js
|