Is there a way to specify the order of the tasks in the task panel of the TUI? #9146
-
SummaryAlternatively, is there a way to at least set the one that's initially focused? Additional informationNo response ExampleNo response |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
This would be a great feature. We have over 30 tasks running and it can be a real pain sometimes to get down to the task you need to inspect. |
Beta Was this translation helpful? Give feedback.
-
There is no way to specify an order for the task list. What order would you want to create? Additionally, are you able to guarantee that every developer in the repository would want the same order? I would ask the same question about the initial focus as well. The task that you may believe to be the most important may not be the one that others in the repo be the most important one, so how can we assign the right initial task universally? |
Beta Was this translation helpful? Give feedback.
-
What about using the dependency topology here? In my use-case I'm interested in having the root web app dev server shown in position 1 and selected by default. I'm sure there are cases where that's not the desire, but it seems to me that it would mostly be the case. |
Beta Was this translation helpful? Give feedback.
-
Alphanumeric.
Yes, 100%. The logic here is very simple, any order that:
is preferable to any other. The only scenario when the order even matters is when you have some persistent tasks in the list (because otherwise it's anyway short-living UI that can close at any moment). It means that you have some long-running jobs that you want to look at from time to time. I cannot imagine why I would want to have any logic that contradicts to the points above. For us this is the number one UX problem with the tool. Of course it would be nice to have a way to filter the list in process, but this is another story. @anthonyshew, what do you think? PS. The suggestion does not contradict to your suggestion in the thread marked as "answer". It is useful to have some kind of "view persistence" from run to run. Same probably should be true for any other "action" that you can do in tui (e.g. hide/show sidepanel). PPS. Of course you can have a mix of long-running and short-running tasks in the list. I do not think that it is an excuse for reordering the list in process. I still would like to check results of those short-running tasks without chasing them from top to bottom of the list. Some shortcut to hide completed tasks is good alternative in my opinion. (Could be also persisted as a TUI setting locally). |
Beta Was this translation helpful? Give feedback.
There is no way to specify an order for the task list. What order would you want to create? Additionally, are you able to guarantee that every developer in the repository would want the same order?
I would ask the same question about the initial focus as well. The task that you may believe to be the most important may not be the one that others in the repo be the most important one, so how can we assign the right initial task universally?