(force?: boolean)
| 149 | }; |
| 150 | |
| 151 | const processTable = (force?: boolean) => { |
| 152 | onChanged( |
| 153 | () => { |
| 154 | collForEach(changedRowValues, ([, newRowValue], rowId) => |
| 155 | mapSet(rowValues, rowId, newRowValue), |
| 156 | ); |
| 157 | collForEach(changedSortKeys, (newSortKey, rowId) => |
| 158 | mapSet(sortKeys, rowId, newSortKey), |
| 159 | ); |
| 160 | }, |
| 161 | changedRowValues, |
| 162 | changedSortKeys, |
| 163 | rowValues as IdMap<RowValue>, |
| 164 | sortKeys, |
| 165 | force, |
| 166 | ); |
| 167 | collClear(changedRowValues); |
| 168 | collClear(changedSortKeys); |
| 169 | }; |
| 170 | |
| 171 | mapForEach(rowValues, processRow); |
| 172 | if (store.hasTable(tableId)) { |
no test coverage detected
searching dependent graphs…