手撸Promise 离大厂又远一步

class Promise {
    static PENDING = 'pending';
    static FULFILLED = 'fulfilled';
    static REJECTED = 'rejected';
    constructor(fn) {
        this.status = Promise.PENDING
        this.value = null;
        this.callbacks = []
        try {
            fn(this.resolve.bind(this), this.reject.bind(this))
        } catch (error) {
            this.reject(error);
        }
    }
    resolve(value) {
        if (this.status !== Promise.PENDING) return false
        this.status = Promise.FULFILLED
        this.value = value;
        setTimeout(() => {
            this.callbacks.map(callback => callback.onFulfilled(value))

        });
    }
    reject(reason) {
        if (this.status !== Promise.PENDING) return false
        this.status = Promise.REJECTED
        this.value = reason;
        setTimeout(() => {
            this.callbacks.map(callback => callback.onRejected(reason))
        });
    }
    then(onFulfilled, onRejected) {
        onFulfilled = onFulfilled instanceof Function ? onFulfilled : () => this.value
        onRejected = onRejected instanceof Function ? onRejected : () => this.value
        let promise = new Promise((resolve, reject) => {
            if (this.status === Promise.FULFILLED) {
                setTimeout(() => {
                    this.parse(promise, onFulfilled(this.value), resolve, reject)
                });
            }
            if (this.status === Promise.REJECTED) {
                setTimeout(() => {
                    this.parse(promise, onRejected(this.value), resolve, reject)
                });
            }
            if (this.status === Promise.PENDING) {
                this.callbacks.push({
                    onFulfilled: value => {
                        this.parse(promise, onFulfilled(value), resolve, reject)
                    },
                    onRejected: value => {
                        this.parse(promise, onRejected(value), resolve, reject)
                    }
                })
            }
        })
        return promise
    }
    parse(promise, result, resolve, reject) {
        if (promise == result) {
            throw new TypeError('Chaining cycle detected')
        }
        try {
            if (result instanceof Promise) {
                result.then(resolve, reject)
            } else {
                resolve(result)
            }
        } catch (error) {
            reject(error)
        }
    }
    static resolve(value) {
        return new Promise((resolve, reject) => {
            if (value instanceof Promise) {
                value.then(resolve, reject)
            } else {
                resolve(value)
            }
        })
    }
    static reject(value) {
        return new Promise((resolve, reject) => {
            if (value instanceof Promise) {
                value.then(resolve, reject)
            } else {
                reject(value)
            }
        })
    }
    static all(promises) {
        let arr = []
        return new Promise((resolve, reject) => {
            promises.forEach((el, index) => {
                el.then(
                    res => {
                        arr[index] = res
                        if (arr.length === promises.length) {
                            resolve(arr)
                        }
                    }, err => {
                        reject(err)
                    })
            })
        })
    }
    static race(promises) {
        return new Promise((resolve, reject) => {
            promises.map(el => {
                el.then(resolve, reject)
            })
        })
    }
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Vue1024

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值