Skip to content

Commit

Permalink
feat(core): support asynchronous serializers
Browse files Browse the repository at this point in the history
Complimenting our previous work on asynchronous deserializers, we now also
support asynchronous serializers by returning an observable.

closes #93

Signed-off-by: Ingo Bürk <[email protected]>
  • Loading branch information
Airblader committed May 10, 2019
1 parent 2fc8051 commit 5221048
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 36 deletions.
73 changes: 45 additions & 28 deletions projects/ngqp/core/src/lib/directives/query-param-group.service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Inject, Injectable, isDevMode, OnDestroy, Optional } from '@angular/core';
import { Params } from '@angular/router';
import { EMPTY, forkJoin, from, Observable, Subject, zip } from 'rxjs';
import { EMPTY, forkJoin, from, Observable, of, Subject, zip } from 'rxjs';
import {
catchError,
concatMap,
Expand Down Expand Up @@ -123,7 +123,7 @@ export class QueryParamGroupService implements OnDestroy {
).pipe(
// Do not synchronize while the param is detached from the group
filter(() => !!this.getQueryParamGroup().get(queryParamName)),
map((newValue: unknown[]) => this.getParamsForValue(partitionedQueryParam, partitionedQueryParam.reduce(newValue))),
switchMap((newValue: unknown[]) => this.getParamsForValue(partitionedQueryParam, partitionedQueryParam.reduce(newValue))),
takeUntil(this.destroy$),
).subscribe(params => this.enqueueNavigation(new NavigationData(params)));

Expand Down Expand Up @@ -175,17 +175,23 @@ export class QueryParamGroupService implements OnDestroy {
throw new Error(`Received null value from QueryParamGroup.`);
}

let params: Params = {};
Object.keys(newValue).forEach(queryParamName => {
const queryParam = this.getQueryParamGroup().get(queryParamName);
if (isMissing(queryParam)) {
return;
}

params = { ...params, ...this.getParamsForValue(queryParam, newValue[ queryParamName ]) };
});
// TODO: Maybe we need to proxy registerOnChange through a subject here to avoid race conditions
// But how to make sure we unsubscribe?
forkJoin<Params>(
...Object.keys(newValue)
.map(queryParamName => {
const queryParam = this.getQueryParamGroup().get(queryParamName);
if (isMissing(queryParam)) {
return of({});
}

this.enqueueNavigation(new NavigationData(params, true));
return this.getParamsForValue(queryParam, newValue[ queryParamName ]);
})
).pipe(
map(paramsList => paramsList.reduce((a, b) => {
return { ...a, ...b };
}, {})),
).subscribe(params => this.enqueueNavigation(new NavigationData(params, true)));
});
}

Expand All @@ -202,7 +208,10 @@ export class QueryParamGroupService implements OnDestroy {
}

queryParam._registerOnChange((newValue: unknown) =>
this.enqueueNavigation(new NavigationData(this.getParamsForValue(queryParam, newValue), true))
// TODO: Maybe we need to proxy registerOnChange through a subject here to avoid race conditions
// But how to make sure we unsubscribe?
this.getParamsForValue(queryParam, newValue)
.subscribe(params => this.enqueueNavigation(new NavigationData(params, true)))
);
}

Expand Down Expand Up @@ -329,7 +338,9 @@ export class QueryParamGroupService implements OnDestroy {
* This consists mainly of properly serializing the model value and ensuring to take
* side effect changes into account that may have been configured.
*/
private getParamsForValue(queryParam: QueryParam<unknown> | MultiQueryParam<unknown> | PartitionedQueryParam<unknown>, value: any): Params {
private getParamsForValue(
queryParam: QueryParam<unknown> | MultiQueryParam<unknown> | PartitionedQueryParam<unknown>, value: any
): Observable<Params> {
const partitionedQueryParam = this.wrapIntoPartition(queryParam);
const partitioned = partitionedQueryParam.partition(value);

Expand All @@ -339,22 +350,28 @@ export class QueryParamGroupService implements OnDestroy {
return { ...(a || {}), ...(b || {}) };
}, {});

const newValues = partitionedQueryParam.queryParams
.map((current, index) => {
return forkJoin<Params>(
...partitionedQueryParam.queryParams
.map((current, index) => (<Observable<unknown>>current.serializeValue(partitioned[ index ] as any)).pipe(
map(serialized => {
return {
[ current.urlParam ]: serialized,
};
}),
))
).pipe(
map(parts => parts.reduce((a, b) => {
return { ...a, ...b };
}, {})),
map(newValues => {
// Note that we list the side-effect parameters first so that our actual parameter can't be
// overridden by it.
return {
[ current.urlParam ]: current.serializeValue(partitioned[index] as any),
...combinedParams,
...newValues,
};
})
.reduce((a, b) => {
return { ...a, ...b };
}, {});

// Note that we list the side-effect parameters first so that our actual parameter can't be
// overridden by it.
return {
...combinedParams,
...newValues,
};
}),
);
}

/**
Expand Down
16 changes: 9 additions & 7 deletions projects/ngqp/core/src/lib/model/query-param.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,12 @@ export class QueryParam<T> extends AbstractQueryParam<T | null, T | null> implem
}

/** @internal */
public serializeValue(value: T | null): string | null {
public serializeValue(value: T | null): Observable<string | null> {
if (this.emptyOn !== undefined && areEqualUsing(value, this.emptyOn, this.compareWith!)) {
return null;
return of(null);
}

return this.serialize(value);
return wrapIntoObservable(this.serialize(value)).pipe(first());
}

/** @internal */
Expand All @@ -198,12 +198,14 @@ export class MultiQueryParam<T> extends AbstractQueryParam<T | null, (T | null)[
}

/** @internal */
public serializeValue(value: (T | null)[] | null): (string | null)[] | null {
if (this.emptyOn !== undefined && areEqualUsing(value, this.emptyOn, this.compareWith!)) {
return null;
public serializeValue(values: (T | null)[] | null): Observable<(string | null)[] | null> {
if (this.emptyOn !== undefined && areEqualUsing(values, this.emptyOn, this.compareWith!)) {
return of(null);
}

return (value || []).map(this.serialize.bind(this));
return forkJoin<string | null>(...(values || [])
.map(value => wrapIntoObservable(this.serialize(value)).pipe(first()))
);
}

/** @internal */
Expand Down
2 changes: 1 addition & 1 deletion projects/ngqp/core/src/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Observable } from 'rxjs';
* A serializer defines how the represented form control's
* value is converted into a string to be used in the URL.
*/
export type ParamSerializer<T> = (model: T | null) => string | null;
export type ParamSerializer<T> = (model: T | null) => (string | null) | Observable<string | null>;

/**
* A deserializer defines how a URL parameter is converted
Expand Down

0 comments on commit 5221048

Please sign in to comment.