-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(combineLatestWith): adds combineLatestWith - renamed legacy comb…
…ineWith operator (#5251) - creates tests for new operator - really just a renamed version of the old operator that was deprecated - updates deprecations
- Loading branch information
Showing
9 changed files
with
703 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,139 +1,125 @@ | ||
import { of, combineLatest, asyncScheduler } from 'rxjs'; | ||
|
||
class A { a = 0; } | ||
class B { b = 0; } | ||
class C { c = 0; } | ||
class D { d = 0; } | ||
class E { e = 0; } | ||
class F { f = 0; } | ||
class G { g = 0; } | ||
|
||
const a = of(new A()); | ||
const b = of(new B()); | ||
const c = of(new C()); | ||
const d = of(new D()); | ||
const e = of(new E()); | ||
const f = of(new F()); | ||
const g = of(new G()); | ||
import { combineLatest } from 'rxjs'; | ||
import { a$, b$, c$, d$, e$, f$, g$, A, B, C, D, E, F } from '../helpers'; | ||
|
||
|
||
it('should accept 1 param', () => { | ||
const o = combineLatest(a); // $ExpectType Observable<[A]> | ||
const o = combineLatest(a$); // $ExpectType Observable<[A]> | ||
}); | ||
|
||
it('should accept 2 params', () => { | ||
const o = combineLatest(a, b); // $ExpectType Observable<[A, B]> | ||
const o = combineLatest(a$, b$); // $ExpectType Observable<[A, B]> | ||
}); | ||
|
||
it('should accept 3 params', () => { | ||
const o = combineLatest(a, b, c); // $ExpectType Observable<[A, B, C]> | ||
const o = combineLatest(a$, b$, c$); // $ExpectType Observable<[A, B, C]> | ||
}); | ||
|
||
it('should accept 4 params', () => { | ||
const o = combineLatest(a, b, c, d); // $ExpectType Observable<[A, B, C, D]> | ||
const o = combineLatest(a$, b$, c$, d$); // $ExpectType Observable<[A, B, C, D]> | ||
}); | ||
|
||
it('should accept 5 params', () => { | ||
const o = combineLatest(a, b, c, d, e); // $ExpectType Observable<[A, B, C, D, E]> | ||
const o = combineLatest(a$, b$, c$, d$, e$); // $ExpectType Observable<[A, B, C, D, E]> | ||
}); | ||
|
||
it('should accept 6 params', () => { | ||
const o = combineLatest(a, b, c, d, e, f); // $ExpectType Observable<[A, B, C, D, E, F]> | ||
const o = combineLatest(a$, b$, c$, d$, e$, f$); // $ExpectType Observable<[A, B, C, D, E, F]> | ||
}); | ||
|
||
it('should result in Observable<unknown> for 7 or more params', () => { | ||
const o = combineLatest(a, b, c, d, e, f, g); // $ExpectType Observable<unknown> | ||
const o = combineLatest(a$, b$, c$, d$, e$, f$, g$); // $ExpectType Observable<unknown> | ||
}); | ||
|
||
it('should accept union types', () => { | ||
const u1: typeof a | typeof b = Math.random() > 0.5 ? a : b; | ||
const u2: typeof c | typeof d = Math.random() > 0.5 ? c : d; | ||
const u1: typeof a$ | typeof b$ = Math.random() > 0.5 ? a$ : b$; | ||
const u2: typeof c$ | typeof d$ = Math.random() > 0.5 ? c$ : d$; | ||
const o = combineLatest(u1, u2); // $ExpectType Observable<[A | B, C | D]> | ||
}); | ||
|
||
it('should accept 1 param and a result selector', () => { | ||
const o = combineLatest(a, () => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest(a$, () => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 2 params and a result selector', () => { | ||
const o = combineLatest(a, b, () => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest(a$, b$, () => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 3 params and a result selector', () => { | ||
const o = combineLatest(a, b, c, () => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest(a$, b$, c$, () => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 4 params and a result selector', () => { | ||
const o = combineLatest(a, b, c, d, () => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest(a$, b$, c$, d$, () => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 5 params and a result selector', () => { | ||
const o = combineLatest(a, b, c, d, e, () => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest(a$, b$, c$, d$, e$, () => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 6 params and a result selector', () => { | ||
const o = combineLatest(a, b, c, d, e, f, () => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest(a$, b$, c$, d$, e$, f$, () => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 7 or more params and a result selector', () => { | ||
const o = combineLatest(a, b, c, d, e, f, g, g, g, () => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest(a$, b$, c$, d$, e$, f$, g$, g$, g$, () => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 1 param', () => { | ||
const o = combineLatest([a]); // $ExpectType Observable<[A]> | ||
const o = combineLatest([a$]); // $ExpectType Observable<[A]> | ||
}); | ||
|
||
it('should accept 2 params', () => { | ||
const o = combineLatest([a, b]); // $ExpectType Observable<[A, B]> | ||
const o = combineLatest([a$, b$]); // $ExpectType Observable<[A, B]> | ||
}); | ||
|
||
it('should accept 3 params', () => { | ||
const o = combineLatest([a, b, c]); // $ExpectType Observable<[A, B, C]> | ||
const o = combineLatest([a$, b$, c$]); // $ExpectType Observable<[A, B, C]> | ||
}); | ||
|
||
it('should accept 4 params', () => { | ||
const o = combineLatest([a, b, c, d]); // $ExpectType Observable<[A, B, C, D]> | ||
const o = combineLatest([a$, b$, c$, d$]); // $ExpectType Observable<[A, B, C, D]> | ||
}); | ||
|
||
it('should accept 5 params', () => { | ||
const o = combineLatest([a, b, c, d, e]); // $ExpectType Observable<[A, B, C, D, E]> | ||
const o = combineLatest([a$, b$, c$, d$, e$]); // $ExpectType Observable<[A, B, C, D, E]> | ||
}); | ||
|
||
it('should accept 6 params', () => { | ||
const o = combineLatest([a, b, c, d, e, f]); // $ExpectType Observable<[A, B, C, D, E, F]> | ||
const o = combineLatest([a$, b$, c$, d$, e$, f$]); // $ExpectType Observable<[A, B, C, D, E, F]> | ||
}); | ||
|
||
it('should have basic support for 7 or more params', () => { | ||
const o = combineLatest([a, b, c, d, e, f, g]); // $ExpectType Observable<(A | B | C | D | E | F | G)[]> | ||
const o = combineLatest([a$, b$, c$, d$, e$, f$, g$]); // $ExpectType Observable<(A | B | C | D | E | F | G)[]> | ||
}); | ||
|
||
it('should handle an array of Observables', () => { | ||
const o = combineLatest([a, a, a, a, a, a, a, a, a, a, a]); // $ExpectType Observable<A[]> | ||
const o = combineLatest([a$, a$, a$, a$, a$, a$, a$, a$, a$, a$, a$]); // $ExpectType Observable<A[]> | ||
}); | ||
|
||
it('should accept 1 param and a result selector', () => { | ||
const o = combineLatest([a], (a: A) => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest([a$], (a: A) => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 2 params and a result selector', () => { | ||
const o = combineLatest([a, b], (a: A, b: B) => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest([a$, b$], (a: A, b: B) => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 3 params and a result selector', () => { | ||
const o = combineLatest([a, b, c], (a: A, b: B, c: C) => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest([a$, b$, c$], (a: A, b: B, c: C) => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 4 params and a result selector', () => { | ||
const o = combineLatest([a, b, c, d], (a: A, b: B, c: C, d: D) => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest([a$, b$, c$, d$], (a: A, b: B, c: C, d: D) => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 5 params and a result selector', () => { | ||
const o = combineLatest([a, b, c, d, e], (a: A, b: B, c: C, d: D, e: E) => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest([a$, b$, c$, d$, e$], (a: A, b: B, c: C, d: D, e: E) => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 6 params and a result selector', () => { | ||
const o = combineLatest([a, b, c, d, e, f], (a: A, b: B, c: C, d: D, e: E, f: F) => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest([a$, b$, c$, d$, e$, f$], (a: A, b: B, c: C, d: D, e: E, f: F) => new A()); // $ExpectType Observable<A> | ||
}); | ||
|
||
it('should accept 7 or more params and a result selector', () => { | ||
const o = combineLatest([a, b, c, d, e, f, g, g, g], (a: any, b: any, c: any, d: any, e: any, f: any, g1: any, g2: any, g3: any) => new A()); // $ExpectType Observable<A> | ||
const o = combineLatest([a$, b$, c$, d$, e$, f$, g$, g$, g$], (a: any, b: any, c: any, d: any, e: any, f: any, g1: any, g2: any, g3: any) => new A()); // $ExpectType Observable<A> | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import { of } from 'rxjs'; | ||
import { combineLatestWith } from 'rxjs/operators'; | ||
|
||
describe('combineLatestWith', () => { | ||
describe('without project parameter', () => { | ||
it('should infer correctly with 1 param', () => { | ||
const a = of(1, 2, 3); | ||
const b = of('a', 'b', 'c'); | ||
const res = a.pipe(combineLatestWith(b)); // $ExpectType Observable<[number, string]> | ||
}); | ||
|
||
it('should infer correctly with 2 params', () => { | ||
const a = of(1, 2, 3); | ||
const b = of('a', 'b', 'c'); | ||
const c = of('d', 'e', 'f'); | ||
const res = a.pipe(combineLatestWith(b, c)); // $ExpectType Observable<[number, string, string]> | ||
}); | ||
|
||
it('should infer correctly with 3 params', () => { | ||
const a = of(1, 2, 3); | ||
const b = of('a', 'b', 'c'); | ||
const c = of('d', 'e', 'f'); | ||
const d = of('g', 'h', 'i'); | ||
const res = a.pipe(combineLatestWith(b, c, d)); // $ExpectType Observable<[number, string, string, string]> | ||
}); | ||
|
||
it('should infer correctly with 4 params', () => { | ||
const a = of(1, 2, 3); | ||
const b = of('a', 'b', 'c'); | ||
const c = of('d', 'e', 'f'); | ||
const d = of('g', 'h', 'i'); | ||
const e = of('j', 'k', 'l'); | ||
const res = a.pipe(combineLatestWith(b, c, d, e)); // $ExpectType Observable<[number, string, string, string, string]> | ||
}); | ||
|
||
it('should infer correctly with 5 params', () => { | ||
const a = of(1, 2, 3); | ||
const b = of('a', 'b', 'c'); | ||
const c = of('d', 'e', 'f'); | ||
const d = of('g', 'h', 'i'); | ||
const e = of('j', 'k', 'l'); | ||
const f = of('m', 'n', 'o'); | ||
const res = a.pipe(combineLatestWith(b, c, d, e, f)); // $ExpectType Observable<[number, string, string, string, string, string]> | ||
}); | ||
|
||
it('should accept N params', () => { | ||
const a = of(1, 2, 3); | ||
const b = of('a', 'b', 'c'); | ||
const c = of('d', 'e', 'f'); | ||
const d = of('g', 'h', 'i'); | ||
const e = of('j', 'k', 'l'); | ||
const f = of('m', 'n', 'o'); | ||
const g = of('p', 'q', 'r'); | ||
const res = a.pipe(combineLatestWith(b, c, d, e, f, g)); // $ExpectType Observable<(string | number)[]> | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.