fix white spaces

This commit is contained in:
Niels Lyngsø
2023-01-10 21:48:43 +01:00
parent 528e9f29d4
commit b268029959

View File

@@ -28,10 +28,10 @@ type MappingFunction<T, R> = (mappable: T) => R;
type MemoizationFunction<R> = (previousResult: R, currentResult: R) => boolean;
function defaultMemoization(previousValue: any, currentValue: any): boolean {
if (typeof previousValue === 'object' && typeof currentValue === 'object') {
return naiveObjectComparison(previousValue, currentValue);
}
return previousValue === currentValue;
if (typeof previousValue === 'object' && typeof currentValue === 'object') {
return naiveObjectComparison(previousValue, currentValue);
}
return previousValue === currentValue;
}
/**
@@ -45,15 +45,15 @@ function defaultMemoization(previousValue: any, currentValue: any): boolean {
* public readonly myPart = CreateObservablePart(this._data, (data) => data.myPart);
*/
export function CreateObservablePart<T, R> (
source$: Observable<T>,
mappingFunction: MappingFunction<T, R>,
memoizationFunction?: MemoizationFunction<R>
): Observable<R> {
return source$.pipe(
map(mappingFunction),
distinctUntilChanged(memoizationFunction || defaultMemoization),
shareReplay(1)
)
source$: Observable<T>,
mappingFunction: MappingFunction<T, R>,
memoizationFunction?: MemoizationFunction<R>
): Observable<R> {
return source$.pipe(
map(mappingFunction),
distinctUntilChanged(memoizationFunction || defaultMemoization),
shareReplay(1)
)
}
@@ -65,24 +65,24 @@ export function CreateObservablePart<T, R> (
* Additionally the Subject ensures the data is unique, not updating any Observes unless there is an actual change of the content.
*/
export class UniqueBehaviorSubject<T> extends BehaviorSubject<T> {
constructor(initialData: T) {
super(deepFreeze(initialData));
}
constructor(initialData: T) {
super(deepFreeze(initialData));
}
next(newData: T): void {
const frozenData = deepFreeze(newData);
next(newData: T): void {
const frozenData = deepFreeze(newData);
// Only update data if its different than current data.
if (!naiveObjectComparison(frozenData, this.getValue())) {
super.next(frozenData);
}
}
if (!naiveObjectComparison(frozenData, this.getValue())) {
super.next(frozenData);
}
}
/**
* Partial update data set, only works for Objects.
* TODO: consider moving this into a specific class for Objects?
* Consider doing similar for Array?
*/
update(data: Partial<T>) {
this.next({ ...this.getValue(), ...data });
}
update(data: Partial<T>) {
this.next({ ...this.getValue(), ...data });
}
}