(force)
| 292 | } |
| 293 | }; |
| 294 | const processTable = (force) => { |
| 295 | onChanged( |
| 296 | () => { |
| 297 | collForEach( |
| 298 | changedRowValues, |
| 299 | ([, newRowValue], rowId) => mapSet(rowValues, rowId, newRowValue) |
| 300 | ); |
| 301 | collForEach( |
| 302 | changedSortKeys, |
| 303 | (newSortKey, rowId) => mapSet(sortKeys, rowId, newSortKey) |
| 304 | ); |
| 305 | }, |
| 306 | changedRowValues, |
| 307 | changedSortKeys, |
| 308 | rowValues, |
| 309 | sortKeys, |
| 310 | force |
| 311 | ); |
| 312 | collClear(changedRowValues); |
| 313 | collClear(changedSortKeys); |
| 314 | }; |
| 315 | mapForEach(rowValues, processRow); |
| 316 | if (store.hasTable(tableId)) { |
| 317 | arrayForEach(store.getRowIds(tableId), (rowId) => { |
no test coverage detected
searching dependent graphs…