Giter VIP home page Giter VIP logo

Comments (4)

vankasteelj avatar vankasteelj commented on August 16, 2024

What's wrong with thenable promises?

from opensubtitles-api.

SubJunk avatar SubJunk commented on August 16, 2024

@vankasteelj nothing wrong with them, it's just a bit more readable IMO. One issue I have with them is the placement of return statements throughout a function. In a long chain of thens, especially when there are more nested thens within it, it can get hard to follow the logic and starts to look similar to Callback Hell.

For example:

search(info) {
    let subs = Array()

    return this.login()
        .then(() => libsearch.optimizeQueryTerms(info))
        .then(optimizedQT => {
            return Promise.all(optimizedQT.map(op => {
                return this.api.SearchSubtitles(this.credentials.status.token, [op]).then(result => subs = subs.concat(result.data))
            }))
        })
        .then(() => libsearch.optimizeSubs(subs, info))
        .then(list => libsearch.filter(list, info))
}

The return is up by the login step, but that's not what returns. It could be:

async search(info) {
    let subs = Array()

    await this.login()
    const optimizedQT = await libsearch.optimizeQueryTerms(info)
    await Promise.all(optimizedQT.map(op => {
        return this.api.SearchSubtitles(this.credentials.status.token, [op]).then(result_1 => subs = subs.concat(result_1.data));
    }))
    const list = await libsearch.optimizeSubs(subs, info)
    return await libsearch.filter(list, info)
}

which in my opinion is more easy to read and understand.

from opensubtitles-api.

vankasteelj avatar vankasteelj commented on August 16, 2024

Okay I get the point.

But that isn't readable to me, as I don't get what each term does and it seems counterintuitive (to me, I've never learned await/async. I write ugly js on my spare time so I have the tools I need, I'm not a programmer per se^^), so if I'm to maintain this, I need to follow my own logic.

from opensubtitles-api.

SubJunk avatar SubJunk commented on August 16, 2024

No problem, just a suggestion :)

from opensubtitles-api.

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.