From 0becd8b413c8d1bbacb8b5c22af38f48769c4790 Mon Sep 17 00:00:00 2001 From: Adrian Leonhard Date: Wed, 6 May 2020 00:08:02 +0200 Subject: [PATCH] improve docs --- src/ObservableGroupMap.ts | 47 +++++++++++++++++++++++++++++++++------ 1 file changed, 40 insertions(+), 7 deletions(-) diff --git a/src/ObservableGroupMap.ts b/src/ObservableGroupMap.ts index 481fc63..22c9b63 100644 --- a/src/ObservableGroupMap.ts +++ b/src/ObservableGroupMap.ts @@ -6,6 +6,7 @@ import { IObservableArray, transaction, ObservableMap, + Lambda, } from "mobx" interface GrouperItemInfo { @@ -24,6 +25,9 @@ interface GrouperItemInfo { * * No guarantees are made about the order of items in the grouped arrays. * + * The resulting map of arrays is read-only. clear(), set(), delete() are not supported and + * modifying the group arrays will lead to undefined behavior. + * * @example * const slices = observable([ * { day: "mo", hours: 12 }, @@ -36,19 +40,44 @@ interface GrouperItemInfo { * slices[0].day = "we" // outputs 0, [{ day: "we", hours: 12 }] */ export class ObservableGroupMap extends ObservableMap> { - private readonly _keyToName: (group: G) => string - - private readonly _groupBy: (x: T) => G + /** + * Base observable array which is being sorted into groups. + */ + private readonly _base: IObservableArray + /** + * The ObservableGroupMap needs to track some state per-item. This is the name/symbol of the + * property used to attach the state. + */ private readonly _ogmInfoKey: string - private readonly _base: IObservableArray + /** + * The function used to group the items. + */ + private readonly _groupBy: (x: T) => G + + /** + * This function is used to generate the mobx debug names of the observable group arrays. + */ + private readonly _keyToName: (group: G) => string + private readonly _disposeBaseObserver: Lambda + + /** + * Create a new ObservableGroupMap. This immediately observes all members of the array. Call + * #dispose() to stop tracking. + * + * @param base The array to sort into groups. + * @param groupBy The function used for grouping. + * @param options Object with properties: + * `name`: Debug name of this ObservableGroupMap. + * `keyToName`: Function to create the debug names of the observable group arrays. + */ constructor( base: IObservableArray, groupBy: (x: T) => G, { - name, + name = "ogm" + ((Math.random() * 1000) | 0), keyToName = (x) => "" + x, }: { name?: string; keyToName?: (group: G) => string } = {} ) { @@ -65,7 +94,7 @@ export class ObservableGroupMap extends ObservableMap { + this._disposeBaseObserver = observe(base, (change) => { if ("splice" === change.type) { transaction(() => { for (const removed of change.removed) { @@ -98,14 +127,18 @@ export class ObservableGroupMap extends ObservableMap