generated from AlexXanderGrib/package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
either.ts
717 lines (617 loc) · 18 KB
/
either.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
/* eslint-disable no-invalid-this */
import {
DecorationError,
DeserializationError,
InvalidStateError,
UnwrapCustomError
} from "./errors";
import {
bind,
combine,
identity,
isWrappedFunction,
noop,
throwValue
} from "./runtime";
import type {
MaybePromiseLike,
Pair,
Mapper,
AnyParameters,
AsyncMonad,
Alternative,
Container,
Pipe
} from "./types";
export const enum EitherType {
Left = "Left",
Right = "Right"
}
const name = "Either";
export function right<L = never, R = never>(right: R): Either<L, R> {
return Right.create(right);
}
export function left<L = never, R = never>(value: L): Either<L, R> {
return Left.create(value);
}
function cast<L, R>(constructor: EitherConstructor<L, R>): Either<L, R> {
if (isEither<L, R>(constructor)) {
return constructor;
}
/* istanbul ignore next */
throw new InvalidStateError();
}
class EitherConstructor<L, R>
implements AsyncMonad<R>, Alternative<R>, Container<R>, Pipe
{
tap<P extends AnyParameters>(
callback: Mapper<R, void, P>,
...parameters: P
): Either<L, R> {
this.map(callback, ...parameters);
return cast(this);
}
pipe<T, P extends AnyParameters>(
pipe: Mapper<Either<L, R>, T, P>,
...parameters: P
): T {
return bind(pipe, parameters)(cast(this));
}
isLeft(): this is Left<L, R> {
return isLeft(this);
}
isRight(): this is Right<L, R> {
return isRight(this);
}
unwrapOrElse<T>(fallback: (value: L) => T): T | R {
return this.fold(fallback, identity);
}
unwrapOr<T>(value: T): T | R {
return this.unwrapOrElse(() => value);
}
join<L1, L2, R>(this: Either<L1, Either<L2, R>>): Either<L1 | L2, R> {
return this.chain(identity);
}
mapLeft<T, P extends AnyParameters>(
map: Mapper<L, T, P>,
...parameters: P
): Either<T, R> {
return this.biMap(bind(map, parameters), identity);
}
map<T, P extends AnyParameters>(
map: Mapper<R, T, P>,
...parameters: P
): Either<L, T> {
return this.mapRight(map, ...parameters);
}
mapRight<T, P extends AnyParameters>(
map: Mapper<R, T, P>,
...parameters: P
): Either<L, T> {
return this.biMap(identity, bind(map, parameters));
}
apply<A, B, P extends AnyParameters>(
this: Either<L, Mapper<A, B, P>>,
argument: Either<L, A>,
...parameters: P
): Either<L, B>;
apply<A, B, P extends AnyParameters>(
this: Either<L, A>,
map: Either<L, Mapper<A, B, P>>,
...parameters: P
): Either<L, B>;
apply<A, B, P extends AnyParameters>(
this: Either<L, A | Mapper<A, B, P>>,
argument: Either<L, A | Mapper<A, B, P>>,
...parameters: P
): Either<L, B> {
return this.zip(argument).map(([current, argument]): B => {
if (isWrappedFunction<A, B, P>(current)) {
return current(argument as A, ...parameters);
}
if (isWrappedFunction<A, B, P>(argument)) {
return argument(current as A, ...parameters);
}
throw new InvalidStateError(
InvalidStateError.Messages.APPLY_SHOULD_BE_FUNCTION
);
});
}
asyncApply<A, B, P extends AnyParameters>(
this: Either<L, Mapper<A, MaybePromiseLike<B>, P>>,
argument: Either<L, A>,
...parameters: P
): Promise<Either<L, B>>;
asyncApply<A, B, P extends AnyParameters>(
this: Either<L, A>,
map: Either<L, Mapper<A, MaybePromiseLike<B>, P>>,
...parameters: P
): Promise<Either<L, B>>;
async asyncApply<A, B, P extends AnyParameters>(
this: Either<L, A | Mapper<A, MaybePromiseLike<B>, P>>,
argument: Either<L, A | Mapper<A, MaybePromiseLike<B>, P>>,
...parameters: P
): Promise<Either<L, B>> {
return await this.zip(argument)
.map(([current, argument]): B => {
if (isWrappedFunction<A, B, P>(current)) {
return current(argument as A, ...parameters);
}
if (isWrappedFunction<A, B, P>(argument)) {
return argument(current as A, ...parameters);
}
throw new InvalidStateError(
InvalidStateError.Messages.APPLY_SHOULD_BE_FUNCTION
);
})
.await();
}
swap(): Either<R, L> {
return this.fold(right, left);
}
chain<A, B, P extends AnyParameters>(
map: Mapper<R, Either<A, B>, P>,
...parameters: P
): Either<A | L, B> {
return this.fold(left, bind(map, parameters));
}
biMap<A, B>(mapLeft: Mapper<L, A>, mapRight: Mapper<R, B>): Either<A, B> {
return this.fold(combine(mapLeft, left), combine(mapRight, right));
}
async asyncChain<A, B, P extends AnyParameters>(
map: Mapper<R, MaybePromiseLike<Either<A, B>>, P>,
...parameters: P
): Promise<Either<A | L, B>> {
const result = await this.asyncMap<L, Either<A, B>, P>(map, ...parameters);
return result.join();
}
async asyncMap<A, B, P extends AnyParameters>(
map: Mapper<R, MaybePromiseLike<B>, P>,
...parameters: P
): Promise<Either<A | L, B>> {
return await this.map(map, ...parameters).await();
}
async await<T>(this: Either<L, MaybePromiseLike<T>>): Promise<Either<L, T>> {
return await this.fold<MaybePromiseLike<Either<L, T>>>(
left,
async (value) => right(await value)
);
}
/**
*
* @param {Mapper<L, A>} mapLeft
* @param {Mapper<R, B>} mapRight
* @return {A|B}
* @throws {InvalidStateError} - {@link InvalidStateError} if Either state is neither Left neither Right, this probably should never happen
*/
fold<A, B = A>(mapLeft: Mapper<L, A>, mapRight: Mapper<R, B>): A | B {
if (this.isLeft()) {
return mapLeft(this.left);
}
if (this.isRight()) {
return mapRight(this.right);
}
/* istanbul ignore next */
throw new InvalidStateError();
}
default(value: R): Either<L, R> {
return this.or(right(value));
}
or(x: Either<L, R>): Either<L, R> {
return this.orLazy(() => x);
}
orLazy(factory: () => Either<L, R>): Either<L, R> {
return this.fold(factory, () => cast(this));
}
async orAsync(
factory: () => MaybePromiseLike<Either<L, R>>
): Promise<Either<L, R>> {
return await this.fold(factory, () => cast(this));
}
zip<A, B>(either: Either<A, B>): Either<L | A, Pair<R, B>> {
return this.chain((value) => either.map((right) => [value, right]));
}
/**
* @deprecated - **If Left value is Error use {@link throw} instead**
*
*
* @param {string} [message] - Error message, if either is left. By default "Either state is Left"
* @return {R} - Right value of Either, if right
* @throws {UnwrapCustomError} - {@link UnwrapCustomError} is Left with provided {@link message}
*/
unwrap(message: string = UnwrapCustomError.Messages.EITHER_IS_LEFT): R {
return this.fold(() => UnwrapCustomError.inlineThrow(message), identity);
}
async promise(): Promise<R> {
return this.throw();
}
/**
*
* @return {R} - Right value if current state is Right,
* @throws {L} - {@link L} if current state is Left
*/
throw(): R {
return this.fold(throwValue, identity);
}
/**
* Return value of Either independent if it is Right or Left
*
* @deprecated - probably should not be used, please refactor code or use {@link fold}
* @see {@link fold}
* @return {L|R}
*/
value(): L | R {
return this.fold(identity, identity);
}
any<T>(this: Either<T, T>): T {
return this.value();
}
}
Object.freeze(EitherConstructor);
Object.freeze(EitherConstructor.prototype);
type SerializedLeft<L> = Readonly<{
name: typeof name;
type: EitherType.Left;
left: L;
}>;
class Left<L, R> extends EitherConstructor<L, R> implements SerializedLeft<L> {
static create<L, R = unknown>(left: L): Left<L, R> {
return new Left(left);
}
/**
* @deprecated Should not be used directly, public only for serialization & type check use {@link getLeft}
* @see {@link getLeft}
*
* @type {L}
* @memberof Left
*/
public readonly left: L;
get [Symbol.toStringTag](): EitherType.Left {
return EitherType.Left;
}
get name(): typeof name {
return name;
}
getRight(): undefined {
return;
}
getLeft(): L {
return this.left;
}
get type(): EitherType.Left {
return EitherType.Left;
}
private constructor(left: L) {
super();
this.left = left;
Object.freeze(this);
}
toJSON(): SerializedLeft<L> {
return { name: this.name, type: this.type, left: this.left };
}
}
Object.freeze(Left);
Object.freeze(Left.prototype);
type SerializedRight<R> = Readonly<{
name: typeof name;
type: EitherType.Right;
right: R;
}>;
class Right<L, R>
extends EitherConstructor<L, R>
implements SerializedRight<R>
{
static create<R, L = unknown>(right: R): Right<L, R> {
return new Right(right);
}
/**
* @deprecated Should not be used directly, public only for serialization & type check use {@link getRight}
* @see {@link getRight}
*
* @type {R}
* @memberof Right
*/
public readonly right: R;
get [Symbol.toStringTag](): EitherType.Right {
return EitherType.Right;
}
get name(): typeof name {
return name;
}
get type(): EitherType.Right {
return EitherType.Right;
}
getRight(): R {
return this.right;
}
getLeft(): undefined {
return;
}
private constructor(right: R) {
super();
this.right = right;
Object.freeze(this);
}
toJSON(): SerializedRight<R> {
return { name: this.name, type: this.type, right: this.right };
}
}
Object.freeze(Right);
Object.freeze(Right.prototype);
export type Either<L = unknown, R = unknown> = Right<L, R> | Left<L, R>;
export type SerializedEither<L, R> = SerializedRight<R> | SerializedLeft<L>;
export const isLeft = <L, R>(
value: unknown | Either<L, R>
): value is Left<L, R> => value instanceof Left;
export const isRight = <L, R>(
value: unknown | Either<L, R>
): value is Right<L, R> => value instanceof Right;
export const isEither = <L, R>(
value: unknown | Either<L, R>
): value is Either<L, R> => isLeft(value) || isRight(value);
export function chain<L, R, NR, P extends AnyParameters>(
map: (value: R, ...parameters: P) => MaybePromiseLike<Either<never, NR>>,
...parameters: P
): (either: Either<L, R>, ...parameters: P) => Promise<Either<L, NR>>;
export function chain<L, R, NL, P extends AnyParameters>(
map: (value: R, ...parameters: P) => MaybePromiseLike<Either<NL, never>>,
...parameters: P
): (either: Either<L, R>, ...parameters: P) => Promise<Either<NL | L, R>>;
export function chain<L, R, NL, NR, P extends AnyParameters>(
map: (value: R, ...parameters: P) => MaybePromiseLike<Either<NL, NR>>,
...parameters: P
): (either: Either<L, R>, ...parameters: P) => Promise<Either<NL | L, NR>>;
export function chain<
L = never,
R = never,
NL = never,
NR = never,
P extends AnyParameters = []
>(
map: (value: R, ...parameters: P) => MaybePromiseLike<Either<NL, NR>>,
...parameters: P
): (either: Either<L, R>) => Promise<Either<L | NL, NR>> {
return (either) => either.asyncChain(bind(map, parameters));
}
export function fromJSON<L, R>(
serialized: SerializedEither<L, R>
): Either<L, R> {
if (serialized.name !== name) {
throw new DeserializationError(
DeserializationError.Messages.EXPECTED_EITHER
);
}
if (serialized.type === EitherType.Left) {
return left(serialized.left);
}
if (serialized.type === EitherType.Right) {
return right(serialized.right);
}
throw new DeserializationError(
DeserializationError.Messages.EITHER_INVALID_STATE
);
}
export function mergeInOne<L1, R1>(values: [Either<L1, R1>]): Either<L1, [R1]>;
export function mergeInOne<L1, R1, L2, R2>(
values: [Either<L1, R1>, Either<L2, R2>]
): Either<L1 | L2, [R1, R2]>;
export function mergeInOne<L1, R1, L2, R2, L3, R3>(
values: [Either<L1, R1>, Either<L2, R2>, Either<L3, R3>]
): Either<L1 | L2 | L3, [R1, R2, R3]>;
export function mergeInOne<L1, R1, L2, R2, L3, R3, L4, R4>(
values: [Either<L1, R1>, Either<L2, R2>, Either<L3, R3>, Either<L4, R4>]
): Either<L1 | L2 | L3 | L4, [R1, R2, R3, R4]>;
export function mergeInOne<L1, R1, L2, R2, L3, R3, L4, R4, L5, R5>(
values: [
Either<L1, R1>,
Either<L2, R2>,
Either<L3, R3>,
Either<L4, R4>,
Either<L5, R5>
]
): Either<L1 | L2 | L3 | L4 | L5, [R1, R2, R3, R4, R5]>;
export function mergeInOne<L1, R1, L2, R2, L3, R3, L4, R4, L5, R5, L6, R6>(
values: [
Either<L1, R1>,
Either<L2, R2>,
Either<L3, R3>,
Either<L4, R4>,
Either<L5, R5>,
Either<L6, R6>
]
): Either<L1 | L2 | L3 | L4 | L5 | L6, [R1, R2, R3, R4, R5, R6]>;
export function mergeInOne<L, R>(values: Either<L, R>[]): Either<L, R[]>;
export function mergeInOne(values: Either<unknown, unknown>[]) {
return mergeInMany(values).mapLeft((errors) => errors[0]);
}
export const merge = mergeInOne;
export const from = right;
export function mergeInMany<L1, R1>(
values: [Either<L1, R1>]
): Either<Array<L1>, [R1]>;
export function mergeInMany<L1, R1, L2, R2>(
values: [Either<L1, R1>, Either<L2, R2>]
): Either<Array<L1 | L2>, [R1, R2]>;
export function mergeInMany<L1, R1, L2, R2, L3, R3>(
values: [Either<L1, R1>, Either<L2, R2>, Either<L3, R3>]
): Either<Array<L1 | L2 | L3>, [R1, R2, R3]>;
export function mergeInMany<L1, R1, L2, R2, L3, R3, L4, R4>(
values: [Either<L1, R1>, Either<L2, R2>, Either<L3, R3>, Either<L4, R4>]
): Either<Array<L1 | L2 | L3 | L4>, [R1, R2, R3, R4]>;
export function mergeInMany<L1, R1, L2, R2, L3, R3, L4, R4, L5, R5>(
values: [
Either<L1, R1>,
Either<L2, R2>,
Either<L3, R3>,
Either<L4, R4>,
Either<L5, R5>
]
): Either<Array<L1 | L2 | L3 | L4 | L5>, [R1, R2, R3, R4, R5]>;
export function mergeInMany<L1, R1, L2, R2, L3, R3, L4, R4, L5, R5, L6, R6>(
values: [
Either<L1, R1>,
Either<L2, R2>,
Either<L3, R3>,
Either<L4, R4>,
Either<L5, R5>,
Either<L6, R6>
]
): Either<Array<L1 | L2 | L3 | L4 | L5 | L6>, [R1, R2, R3, R4, R5, R6]>;
export function mergeInMany<L, R>(
values: Array<Either<L, R>>
): Either<L[], R[]>;
export function mergeInMany(
values: Array<Either<unknown, unknown>>
): Either<unknown[], unknown[]> {
if (allRights(values)) {
return right(values.map((either) => either.getRight()));
}
const results: unknown[] = [];
for (const value of values) {
if (value.isLeft()) {
results.push(value.getLeft());
}
}
return left(results);
}
function allRights<A, B>(array: Either<A, B>[]): array is Right<A, B>[] {
return !array.some((value) => value.isLeft());
}
export function aggregateError<T = unknown>(
values: Array<Either<T, unknown>>,
message: string | undefined | ((lefts: T[]) => string | undefined)
): AggregateError | undefined {
const joined = mergeInMany(values);
if (joined.isRight()) {
return;
}
return joined.fold(
(errors) =>
new AggregateError(
errors,
typeof message === "string" ? message : message?.(errors)
),
noop
);
}
function anify(value: unknown): any {
return value;
}
type MapCaught<L> = Mapper<unknown, L>;
type LegacyMethodDecorator = (
target: CallableFunction,
property: any,
descriptor: PropertyDescriptor
) => void;
type ModernMethodDecorator<R = unknown> = <
T extends (...parameters: AnyParameters) => R
>(
method: T,
context: any
) => T;
export function DecorateLegacy(): LegacyMethodDecorator {
/* istanbul ignore next */
return function decorate(_target, _property, descriptor) {
descriptor.value = wrap(descriptor.value);
};
}
export function DecorateAsyncLegacy(): LegacyMethodDecorator {
/* istanbul ignore next */
return function decorateAsync(_target, _property, descriptor) {
descriptor.value = wrapAsync(descriptor.value);
};
}
function requireDecorationMethod(
context: ClassMemberDecoratorContext
): asserts context is ClassMethodDecoratorContext {
/* istanbul ignore next */
if (context.kind !== "method") {
throw new DecorationError();
}
}
export function Decorate(): ModernMethodDecorator<Either> {
/* istanbul ignore next */
return function decorate(
method: any,
context: ClassMemberDecoratorContext
): any {
/* istanbul ignore next */
requireDecorationMethod(context);
return wrap(method);
};
}
export function DecorateAsync(): ModernMethodDecorator<Promise<Either>> {
/* istanbul ignore next */
return function decorate(
method: any,
context: ClassMemberDecoratorContext
): any {
/* istanbul ignore next */
requireDecorationMethod(context);
return wrapAsync(method);
};
}
export function wrap<L, R, P extends AnyParameters>(
method: (...parameters: P) => Either<L, R>,
mapCaught?: MapCaught<L>
): (this: any, ...parameters: P) => Either<L, R> {
return function eitherWrap(this: any, ...parameters: P): Either<L, R> {
return catchSync(() => method.call(this, ...parameters), mapCaught);
};
}
export function wrapAsync<L, R, P extends AnyParameters>(
method: (...parameters: P) => MaybePromiseLike<Either<L, R>>
): (this: any, ...parameters: P) => Promise<Either<L, R>> {
return function eitherWrap(
this: any,
...parameters: P
): Promise<Either<L, R>> {
return catchAsync(() => method.call(this, ...parameters));
};
}
export function catchSync<L, R>(
method: () => Either<L, R>,
mapCaught?: MapCaught<L>
): Either<L, R> {
return fromTry<L, Either<L, R>>(method, mapCaught).join();
}
export async function catchAsync<L, R>(
method: () => MaybePromiseLike<Either<L, R>>,
mapCaught?: MapCaught<L>
): Promise<Either<L, R>> {
const caught = await fromTryAsync<L, Either<L, R>>(method, mapCaught);
return caught.join();
}
export async function fromPromise<L, T>(
promise: MaybePromiseLike<T>,
mapCaught?: MapCaught<L>
): Promise<Either<L, T>> {
return fromTryAsync(() => promise, mapCaught);
}
export function fromTry<L, T>(
callback: () => T,
mapCaught: MapCaught<L> = anify
): Either<L, T> {
try {
return right(callback());
} catch (error) {
return left(mapCaught(error));
}
}
export async function fromTryAsync<L, R>(
callback: () => MaybePromiseLike<R>,
mapCaught: MapCaught<L> = anify
): Promise<Either<L, R>> {
try {
return right(await callback());
} catch (error) {
return left(mapCaught(error));
}
}
export function fromPromiseSettledResult<L, T>(
result: PromiseSettledResult<T>
): Either<L, T> {
return result.status === "fulfilled"
? right(result.value)
: left(result.reason);
}