-
-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Control when a Cell is executing #279 #280
Conversation
Hey @echarles, could you review this PR when possible, please? Here is some functional evidence: state-for-cells-executing.mp4A few additional points to discuss:
The use of state in a final component, as in the evidence above, would be something like:
|
I think you have the wrong eric |
@MarcosVn Overall looks good to me.
|
Hey @echarles, thanks for the feedback. I will probably open a new PR; however, I will need some time to test and evaluate the changes from #282. PS: I will also include the evolution in the examples. Thank you! |
Implements the proposed solution for the described scenario in #279 issue.
isExecuting
attribute inCellState
to track/control when a cell is executing;isAnyCellExecuting
to the cells map to control if there is any execution in progress (or if all cells areidle
);CellState
attributes (individual cell attributes first, others for all cells last);CellAdapter
andCellCommands
to receive thecellId
in order to update theisExecuting
state.