GithubHelp home page GithubHelp logo

Comments (5)

gbouv avatar gbouv commented on June 18, 2024

This can be "easily" fixed with the following spinner:

spin := spinner.New(spinner.CharSets[11], 100*time.Millisecond, spinner.WithSuffix(suffix))
spin.PreUpdate = func(s *spinner.Spinner) {
    fmt.Print("\0337\033[J") // save cursor position and erase everything until end of screen
}
spin.PostUpdate = func(s *spinner.Spinner) {
    fmt.Print("\0338")  // restore cursor position
}

But I would have expected the spinner to handle it by itself

Also, the downside of doing \033[J in the PreUpdate is that we're clearing current line twice, which is unnecessary

from spinner.

gbouv avatar gbouv commented on June 18, 2024

In fact the above "hack" doesn't even work when we start printing at the bottom of the terminal because scrolling messes up with the saved position.
So, I had to implement the actual fix of computing in advance how many lines will be needed to print the entire "spinner + suffix" string, and clearing this exact number of lines on every update in the PreUpdate function. It seems to be the only working solution

from spinner.

briandowns avatar briandowns commented on June 18, 2024

Care to share your solution or submit a PR?

from spinner.

gbouv avatar gbouv commented on June 18, 2024

Yup @briandowns I'll submit a PR and tag you on it in the next few days when I have a bit more bandwidth 👍

from spinner.

gbouv avatar gbouv commented on June 18, 2024

@briandowns sorry it took so long, but the PR is up and ready for review: #146
Let me know what you think

from spinner.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.