1. const getType = value => {
    2. return Object.prototype.toString.call(value).match(/^\[object (.*)\]$/)[1];
    3. }
    4. const isFuntion = value => {
    5. return getType(value) === 'Function'
    6. }
    7. // 定义好三种状态
    8. const PENDING = 'pending'
    9. const FULFILLED = 'fulfilled'
    10. const REJECTED = 'rejected'
    11. // 类
    12. class MyPromise {
    13. constructor(fn) {
    14. this.status = PENDING
    15. this.value = null
    16. this.reason = null
    17. this.callbacks = [] // 存放回掉函数
    18. try {
    19. fn(this.resolve, this.reject)
    20. } catch (error) {
    21. this.reject(error)
    22. }
    23. }
    24. static resolve(value) {
    25. return new MyPromise((res) => res(value))
    26. }
    27. static reject(reason) {
    28. return new MyPromise((res, rej) => rej(reason))
    29. }
    30. resolve(value) {
    31. // 已经从pending改变了,不能在改变成其他状态
    32. if (this.status !== PENDING) return
    33. this.status = FULFILLED
    34. this.value = value
    35. this.handleCallback()
    36. }
    37. reject(reason) {
    38. // 已经从pending改变了,不能在改变成其他状态
    39. if (this.status !== PENDING) return
    40. this.status = REJECTED
    41. this.reason = reason
    42. this.handleCallback()
    43. }
    44. // then方法必须在状态改变之后才能执行
    45. then(onFulfilled, onRejected) {
    46. return new MyPromise((resolve, reject) => {
    47. // 1、调用then的时候status 没变的收将回掉放入到callback中
    48. const callback = { onFulfilled, onRejected, resolve, reject }
    49. if (this.status === PENDING) {
    50. this.callbacks.push(callback)
    51. } else { // 2、调用then的时候,status如果已经改变了,直接执行
    52. setTimeout(() => {
    53. this.handleCallback(callback)
    54. }, 0)
    55. }
    56. })
    57. }
    58. catch(onRejected) {
    59. const onFulfilled = () => {}
    60. return new MyPromise((resolve, reject) => {
    61. const callback = { onFulfilled, onRejected, resolve, reject }
    62. if (this.status === PENDING) {
    63. this.callbacks.push(callback)
    64. } else {
    65. setTimeout(() => {
    66. this.handleCallback(callback)
    67. }, 0)
    68. }
    69. })
    70. }
    71. finally(fn) {
    72. return this.then(
    73. value => MyPromise.resolve(fn()).then(() => value),
    74. reason => MyPromise.reject(fn()).then(() => {throw reason})
    75. )
    76. }
    77. excuteCallbacks() {
    78. this.callbacks.forEach(callback => {
    79. setTimeout(() => {
    80. this.handleCallback(callback)
    81. }, 0)
    82. })
    83. }
    84. handleCallback(callback) {
    85. const {
    86. onFulfilled,
    87. onRejected,
    88. resolve,
    89. reject
    90. } = callback
    91. if (this.status === FULFILLED) {
    92. isFuntion(onFulfilled) ? resolve(onFulfilled(this.value)) : resolve(this.value)
    93. }
    94. if (this.status === REJECTED) {
    95. isFuntion(onRejected) ? reject(onRejected(this.reason)) : reject(this.reason)
    96. }
    97. }
    98. // 所有fulfilled才算成功
    99. static all(list) {
    100. return new MyPromise((resolve, reject) => {
    101. const result = []
    102. let count = 0
    103. for(let i = 0; i < list.length; i ++) {
    104. list[i].then(
    105. val => {
    106. result[i] = val
    107. // 只有在每个promise都resolve之后count + 1
    108. count ++
    109. if (count === list.length) {
    110. resolve(result)
    111. }
    112. },
    113. err => reject(err)
    114. )
    115. }
    116. })
    117. }
    118. // 每个promise都有值,不管是fulfilled还是rejected
    119. allSettled(list) {
    120. return new MyPromise((resolve) => {
    121. for (let i = 0; i < list.length; i++) {
    122. const result = []
    123. let count = 0
    124. list[i].then(
    125. val => {
    126. result[i] = {
    127. status: 'fulfilled',
    128. value: val
    129. }
    130. count ++
    131. if (count === list.length) {
    132. resolve(result)
    133. }
    134. },
    135. err => {
    136. result[i] = {
    137. status: 'rejected',
    138. reason: err
    139. }
    140. count ++
    141. if (count === list.length) {
    142. resolve(result)
    143. }
    144. }
    145. )
    146. }
    147. })
    148. }
    149. // 返回先有结果的promise的值,不管是fulfilled还是rejected
    150. race(list) {
    151. return new MyPromise((resolve, reject) => {
    152. for (let i = 0; i < list.length; i ++) {
    153. list[i].then(
    154. val => resolve(val),
    155. err => reject(err)
    156. )
    157. }
    158. })
    159. }
    160. // 任意一个fulfilled就算成功,
    161. // 反过来说,所有的都rejected就是rejected
    162. any(list) {
    163. return new MyPromise((resolve, reject) => {
    164. const result = []
    165. let count = 0
    166. list[i].then(
    167. val => {
    168. resolve(val)
    169. },
    170. err => {
    171. result[i] = err
    172. count ++
    173. if (count === list.length) {
    174. reject(result)
    175. }
    176. }
    177. )
    178. })
    179. }
    180. }
    181. //
    182. const promise = new MyPromise((resolve, reject) => {
    183. resolve()
    184. }).then().then()