Skip to content
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

实现一个有依赖关系的 Promise all #103

Open
sedationh opened this issue Oct 26, 2024 · 1 comment
Open

实现一个有依赖关系的 Promise all #103

sedationh opened this issue Oct 26, 2024 · 1 comment

Comments

@sedationh
Copy link
Owner

// 模拟一个降级异步接口
const isDegrade = (isDegrade) => {
    return new Promise((resolve, reject) => {
        setTimeout(() => {
            reject(isDegrade)
        }, 1000)
    })
}

const requestA = async () => {
    return new Promise((resolve, reject) => {
        setTimeout(() => {
            resolve('requestA')
        }, 2000)
    })
}

const main = async () => {
    console.time('main')
    const degrade = await isDegrade(false)
    if (degrade) {
        return
    }
    const res = await requestA()
    console.log(res)
    console.timeEnd('main')
}


// 实现一个有依赖关系的 Promise all
const main2 = async () => {
    console.time('main2')
    const degradePromise = new Promise((resolve) => {
        isDegrade(true).then(resolve, () => resolve(false))
    })
    const requestAPromise = requestA()
    const res = await new Promise((resolve) => {
        degradePromise.then((res) => {
            // 如果要降级
            if (res) {
                resolve(null)
            }
        })
        requestAPromise.then(async (res) => {
            await degradePromise
            resolve(res)
        })
    })
    if (!res) {
        return
    }
    console.log(res)
    console.timeEnd('main2')
}

// main()
// main2()


const buildMainInvokeWithDegrade = (degradePromise: Promise<any>, requestAPromise: Promise<any>) => {
    const finalDegradePromise = new Promise((resolve) => {
        degradePromise.then(resolve, () => resolve(false))
    })
    return new Promise((resolve) => {
        finalDegradePromise.then((res) => {
            // 如果要降级
            if (res) {
                resolve(null)
            }
        })
        requestAPromise.then(async (res) => {
            await finalDegradePromise
            resolve(res)
        })
    })
}

const main3 = async () => {
    console.time('main3')
    const res = await buildMainInvokeWithDegrade(isDegrade(true), requestA())
    console.log(res)
    console.timeEnd('main3')
}

main3()
@sedationh
Copy link
Owner Author

yiyang-fairy/blog#4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant