/** * Fetchable addresses the reality that most of our resources exist in three * distinct possible states. * - not loaded: it may or may not exist, but I don't have a copy of it * - not found: I've asked and know definitively that this does not exist * - value present */ export type Fetchable = 'loading' | 'not loaded' | 'not found' | T; export function hasValue(f: Fetchable): f is T { return f !== 'not found' && f !== 'not loaded' && f !== 'loading'; } export function valueOf(f: Fetchable): T | null { return !hasValue(f) ? null : f; } export function withValue(f: Fetchable, fun: (val: T) => V): V | null { return !hasValue(f) ? null : fun(f); } export function use(f: Fetchable, fun: (val: T) => V): Fetchable { if (!hasValue(f)) { return f; } else { return fun(f); } }