Giter Club home page Giter Club logo

Comments (4)

cenk1cenk2 avatar cenk1cenk2 commented on June 10, 2024

Hello @cdwmhcc,

You can use the persistent output option on default renderer to do so.

Please read the documentation on it at here.

Using the outputBar or bottomBar you can choose to keep the last n entries with the default behavior it will only keep the last one.

You can find more about this at here.

from listr2.

cdwmhcc avatar cdwmhcc commented on June 10, 2024

Hello @cdwmhcc,

You can use the persistent output option on default renderer to do so.

Please read the documentation on it at here.

Using the outputBar or bottomBar you can choose to keep the last n entries with the default behavior it will only keep the last one.

You can find more about this at here.

You may not understand what I mean. As shown in the example, a certain output is fixed under the same task.

For example, there is such a scene, Only two lines of output are retained, but one output needs to be pined.

rendererOptions: {
  outputBar: 2,
},
const arr = [0,1,2,3,4,5]
let index = 0
for await (const item of arr) {
    index += 1
    // Pin the output until the task is completed.
    task.output = `Completion progress: ${index}/${arr.length}`

    task.output = `In progress: ${item}`
    task.output = 'other output'
}
task.output = 'other output'

from listr2.

cenk1cenk2 avatar cenk1cenk2 commented on June 10, 2024

aaah i see. sorry for that. in that case with the current structure it is not possible to do so.

if further requests come in like this i can add that as an feature.

from listr2.

cdwmhcc avatar cdwmhcc commented on June 10, 2024

Thanks for your quick reply!This is how I currently handle it, but it doesn't look elegant enough.

{
    title: 'task title',
    task: async (ctx, task): Promise<void> => {
        const finished = []
        for await (const item of ctx.items) {
            finished.push(item.name)
            task.title = `task title ${green(finished.length)}/${ctx.items.length}`
            await useUpdateData(item, { ctx, task })
        }
        task.title = 'task title'
    },
},

from listr2.

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.