import { computed, pattern, UI } from "commonfabric"; const identity = (x: unknown) => x; interface Item { done: boolean; } interface State { items: Item[]; } // FIXTURE: computed-map-call-arg-logical-and // Verifies: callback-local ordinary call roots within a computed-array .map() // callback whole-wrap as callback-local lift-applied computations rather than // lowering only the nested && argument site. // const label = identity(row.done && "Done") // → const label = lift(({ row }) => identity(row.done && "Done"))(...) export default pattern((state) => { const rows = computed(() => state.items); return { [UI]: (
{rows.map((row) => { const label = identity(row.done && "Done"); return {label}; })}
), }; });