[Console] added ProgressBar (to replace the stateful ProgressHelper class)#10355
Closed
fabpot wants to merge 1 commit intosymfony:masterfrom
Closed
[Console] added ProgressBar (to replace the stateful ProgressHelper class)#10355fabpot wants to merge 1 commit intosymfony:masterfrom
fabpot wants to merge 1 commit intosymfony:masterfrom
Conversation
Member
Author
|
By the way, that also makes the progress bar part of the Console more easily reusable outside the context of a full console app/command. |
Member
|
Wouldn't it be nicer if there was a ProgressGroup or the like? There we can specify multiple progress bars and tell if it shoúld be placed horizontal or vertical. It would also handle the "moved one line up" things |
1 task
Member
Author
|
I don't think it would make sense to create a ProgressGroup as it won't bring much to the table (and would restrict what you could do). |
Member
Author
|
Closing for #10356 instead. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TODO:
This PR deprecated
ProgressHelperin favor ofProgressBar. The main difference is that the newProgressBarclass is stateless, which allows for more than one bar to be displayed at a time:And here is how it looks like when run: