-
Notifications
You must be signed in to change notification settings - Fork 621
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
@std/cli
: Support multiple spinners at the same time
#5037
Comments
@std/cli
: Support multiple spinners at the same time.@std/cli
: Support multiple spinners at the same time
Is this common pattern in cli tool development? I personally don't often see the multiple spinners in cli tools in general. |
I also don't see it often, but maybe that's because there is no popular library for this yet? I could only find these two:
|
It's quite common for multiple progress bars (ie docker) and less so for spinners. Minikube is an example that uses multiple spinners on setup to show a series of async tasks running. Multiple spinners can be useful for anytime you need to do tasks in parallel, but can't really track individual progress steps. |
This is a reasonable expectation for a spinner implementation. SGTM. |
Btw, the snippet I shared above is broken in so many ways, so whoever implements this shouldn't take much inspiration from it. It turned out to be a bit more challenging to do this right, especially when trying to support "nested" spinners (s1 starts - s2 starts - s2 stops - s1 stops) or when trying to combine spinners with normal |
Popular npm packages (ora, cli-spinners) that implement spinners don't support multiple spinners. I'm skeptical the users need this feature. If we add this feature, I expect the added complexity won't be small. I wonder if it's worth the effort for such rarely used feature.
Can anybody give more examples of multiple loading indicators in CLI tools? If minikube is only common example, then it feels too rare feature to provide support in the standard library. |
Hmm, fair point. This may not be worth the added complexity incurred. I think this is fine as long as we provide justification and possible workarounds in the documentation. |
(Sharing another point raised in an offline discussion.) When there are multiple things going on in CLI tools, I often see the single loading indicator with the message part changing quickly (e.g. |
Yeah...currently in my project, I went forward with a "single-line" approach as well, to track multiple, especially nested, processes, looking like this: import { Spinner } from "@std/cli";
/**
* @implements {Spinner}
* @extends {Spinner}
* @example
* const loader = new Loader({
* color: "blue",
* message: "Loading..."
* });
*
* loader.start(); // "Loading..."
*
* await new Promise((resolve) => setTimeout(resolve, 1000));
*
* loader.setBlock("block1", "a"); // "1 | a"
*
* await new Promise((resolve) => setTimeout(resolve, 1000));
*
* loader.setBlock("block1", "b"); // "2 | b"
* loader.setBlock("block2", "c"); // "3 | b | c"
*
* await new Promise((resolve) => setTimeout(resolve, 1000));
*
* loader.removeBlock("block1"); // "4 | c"
*
* await new Promise((resolve) => setTimeout(resolve, 1000));
*
* loader.stop();
*/
const Loader = class extends Spinner {
/**
* @type {Map<unknown, string>}
*/
#blocks = new Map();
/**
* @type {Map<unknown, number>}
*/
#maximumLengths = new Map();
/**
* @type {number}
*/
#messageCount = 0;
/**
* @type {unknown[]}
*/
#order = [];
/**
* Updates the message.
*
* @example
* this.#updateMessage();
*/
#updateMessage = () => {
this.message = [
this.#messageCount,
...this.#order
.filter((blockId) => this.#blocks.has(blockId))
.map((blockId, index) => {
const blockValue = this.#blocks.get(blockId);
return (
index === 0
? blockValue
: blockValue.padStart(this.#maximumLengths.get(blockId))
);
})
]
.join(" | ");
};
/**
*
* @param {unknown} id - The id of the block.
* @example
* const loader = new Loader({
* color: "blue",
* message: "Loading..."
* });
*
* loader.start();
*
* loader.setBlock("block1", "value1");
*
* loader.removeBlock("block1");
*
* loader.stop();
*/
removeBlock = (id) => {
this.#blocks.delete(id);
this.#messageCount += 1;
if (this.#messageCount % 1 === 0) {
this.#updateMessage();
}
};
/**
* Set the value of a block.
*
* @param {unknown} id - The id of the block.
* @param {string|number|boolean} value - The value of the block.
* @example
* const loader = new Loader({
* color: "blue",
* message: "Loading..."
* });
*
* loader.start();
*
* loader.setBlock("block1", "value1");
*
* loader.stop();
*/
setBlock = (id, value) => {
const valueString = String(value);
this.#maximumLengths.set(id, Math.max(
this.#maximumLengths.get(id) ?? 0,
valueString.length
));
this.#blocks.set(id, valueString);
if (!this.#order.includes(id)) {
this.#order.push(id);
}
this.#messageCount += 1;
this.#updateMessage();
};
};
export default Loader; Bildschirmaufnahme.2024-06-18.um.17.25.55.movBildschirmaufnahme.2024-06-18.um.17.24.09.movIt works for now, but if the list of things I want to track gets longer, one line might just not be enough. |
Currently, if one tries to display multiple spinners at the same time, the spinners "override" each other.
Running the above code looks like this:
Bildschirmaufnahme.2024-06-13.um.22.54.02.mov
Therefore I propose enhancing the existing
Spinner
class or even adding a newMultiSpinner
class to avoid introducing breaking changes, that is able to handle multiple spinners, like so:Running the example from before with this new
MultiSpinner
class looks like this:Bildschirmaufnahme.2024-06-13.um.23.01.14.mov
Obviously my code was just a quick test to see if this even works, I used
@cliffy/ansi
to make it simpler, a globalactiveMultiSpinners
array is probably not the way to go and timing might also be buggy (no idea in which orderupdateMultiSpinners
andstop
should be called). And I don't even want to know what happens if something like ⏎ is pressed. 😅But yeah, what do you think about this addition? I personally was a bit surprised it was that easy to augment the base
Spinner
class, so it might not be that difficult to actually add this, using the samecursorDown(1)
andcursorUp(length - 1)
logic.The text was updated successfully, but these errors were encountered: