Replace observable references with just promises (#5278)

* replace observable references with just promises

* add tests for searching in dataview

* add comments

* work through respecting max matches

* fix tests

* fix strict null checks
This commit is contained in:
Anthony Dresser
2019-05-02 00:06:28 -07:00
committed by GitHub
parent a3c022aebf
commit 039859213c
2 changed files with 133 additions and 31 deletions

View File

@@ -3,9 +3,6 @@
* Licensed under the Source EULA. See License.txt in the project root for license information. * Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/ *--------------------------------------------------------------------------------------------*/
import { Observable } from 'rxjs/Observable';
import { Observer } from 'rxjs/Observer';
import { Event, Emitter } from 'vs/base/common/event'; import { Event, Emitter } from 'vs/base/common/event';
import * as types from 'vs/base/common/types'; import * as types from 'vs/base/common/types';
import { compare as stringCompare } from 'vs/base/common/strings'; import { compare as stringCompare } from 'vs/base/common/strings';
@@ -50,7 +47,6 @@ export class TableDataView<T extends Slick.SlickData> implements IDisposableData
//Used when filtering is enabled, _allData holds the complete set of data. //Used when filtering is enabled, _allData holds the complete set of data.
private _allData: Array<T>; private _allData: Array<T>;
private _findArray: Array<IFindPosition>; private _findArray: Array<IFindPosition>;
private _findObs: Observable<IFindPosition> | undefined;
private _findIndex: number; private _findIndex: number;
private _filterEnabled: boolean; private _filterEnabled: boolean;
@@ -78,6 +74,7 @@ export class TableDataView<T extends Slick.SlickData> implements IDisposableData
this._data = new Array<T>(); this._data = new Array<T>();
} }
// @todo @anthonydresser 5/1/19 theres a lot we could do by just accepting a regex as a exp rather than accepting a full find function
this._sortFn = _sortFn ? _sortFn : defaultSort; this._sortFn = _sortFn ? _sortFn : defaultSort;
this._filterFn = _filterFn ? _filterFn : (dataToFilter) => dataToFilter; this._filterFn = _filterFn ? _filterFn : (dataToFilter) => dataToFilter;
@@ -155,7 +152,7 @@ export class TableDataView<T extends Slick.SlickData> implements IDisposableData
this._onRowCountChange.fire(this.getLength()); this._onRowCountChange.fire(this.getLength());
} }
find(exp: string, maxMatches: number = 0): Thenable<IFindPosition> { find(exp: string, maxMatches?: number): Promise<IFindPosition> {
if (!this._findFn) { if (!this._findFn) {
return Promise.reject(new Error('no find function provided')); return Promise.reject(new Error('no find function provided'));
} }
@@ -163,35 +160,45 @@ export class TableDataView<T extends Slick.SlickData> implements IDisposableData
this._findIndex = 0; this._findIndex = 0;
this._onFindCountChange.fire(this._findArray.length); this._onFindCountChange.fire(this._findArray.length);
if (exp) { if (exp) {
this._findObs = Observable.create((observer: Observer<IFindPosition>) => { return new Promise<IFindPosition>((resolve) => {
for (let i = 0; i < this._data.length; i++) { const disp = this.onFindCountChange(e => {
let item = this._data[i]; resolve(this._findArray[e - 1]);
let result = this._findFn!(item, exp); disp.dispose();
if (result) { });
result.forEach(pos => { this._startSearch(exp, maxMatches);
let index = { col: pos, row: i };
this._findArray.push(index);
observer.next(index);
this._onFindCountChange.fire(this._findArray.length);
});
if (maxMatches > 0 && this._findArray.length > maxMatches) {
break;
}
}
}
});
return this._findObs!.take(1).toPromise().then(() => {
return this._findArray[this._findIndex];
}); });
} else { } else {
return Promise.reject(new Error('no expression')); return Promise.reject(new Error('no expression'));
} }
} }
private _startSearch(exp: string, maxMatches: number = 0): void {
for (let i = 0; i < this._data.length; i++) {
const item = this._data[i];
const result = this._findFn!(item, exp);
let breakout = false;
if (result) {
for (let j = 0; j < result.length; j++) {
const pos = result[j];
const index = { col: pos, row: i };
this._findArray.push(index);
this._onFindCountChange.fire(this._findArray.length);
if (maxMatches > 0 && this._findArray.length === maxMatches) {
breakout = true;
break;
}
}
}
if (breakout) {
break;
}
}
}
clearFind() { clearFind() {
this._findArray = new Array<IFindPosition>(); this._findArray = new Array<IFindPosition>();
this._findIndex = 0; this._findIndex = 0;
this._findObs = undefined;
this._onFindCountChange.fire(this._findArray.length); this._onFindCountChange.fire(this._findArray.length);
} }
@@ -242,6 +249,5 @@ export class TableDataView<T extends Slick.SlickData> implements IDisposableData
this._data = []; this._data = [];
this._allData = []; this._allData = [];
this._findArray = []; this._findArray = [];
this._findObs = undefined;
} }
} }

View File

@@ -3,12 +3,10 @@
* Licensed under the Source EULA. See License.txt in the project root for license information. * Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/ *--------------------------------------------------------------------------------------------*/
'use strict';
import * as assert from 'assert'; import * as assert from 'assert';
import { TableDataView } from 'sql/base/browser/ui/table/tableDataView'; import { TableDataView } from 'sql/base/browser/ui/table/tableDataView';
suite('TableDataView Tests', () => { suite('TableDataView', () => {
test('Data can be filtered and filter can be cleared', () => { test('Data can be filtered and filter can be cleared', () => {
const rowCount = 10; const rowCount = 10;
const columnCount = 5; const columnCount = 5;
@@ -77,10 +75,108 @@ suite('TableDataView Tests', () => {
obj.clearFilter(); obj.clearFilter();
verify(2, rowCount + additionalRowCount + additionalRowCount, rowCount + additionalRowCount + additionalRowCount, 4, 'calling clearFilter() multiple times', false); verify(2, rowCount + additionalRowCount + additionalRowCount, rowCount + additionalRowCount + additionalRowCount, 4, 'calling clearFilter() multiple times', false);
}); });
test('Search can find items', async () => {
const rowCount = 10;
const columnCount = 5;
const originalData = populateData(rowCount, columnCount);
const searchFn = (val: { [x: string]: string }, exp: string): Array<number> => {
const ret = new Array<number>();
for (let i = 0; i < columnCount; i++) {
const colVal = val[getColumnName(i)];
if (colVal && colVal.toLocaleLowerCase().includes(exp.toLocaleLowerCase())) {
ret.push(i);
}
}
return ret;
};
const dataView = new TableDataView(originalData, searchFn);
let findValue = await dataView.find('row 2');
assert.deepEqual(findValue, { row: 2, col: 0 });
findValue = await dataView.findNext();
assert.deepEqual(findValue, { row: 2, col: 1 });
findValue = await dataView.findNext();
assert.deepEqual(findValue, { row: 2, col: 2 });
findValue = await dataView.findNext();
assert.deepEqual(findValue, { row: 2, col: 3 });
findValue = await dataView.findNext();
assert.deepEqual(findValue, { row: 2, col: 4 });
// find will loop around once it reaches the end
findValue = await dataView.findNext();
assert.deepEqual(findValue, { row: 2, col: 0 });
});
test('Search fails correctly', async () => {
const rowCount = 10;
const columnCount = 5;
const originalData = populateData(rowCount, columnCount);
const searchFn = (val: { [x: string]: string }, exp: string): Array<number> => {
const ret = new Array<number>();
for (let i = 0; i < columnCount; i++) {
const colVal = val[getColumnName(i)];
if (colVal && colVal.toLocaleLowerCase().includes(exp.toLocaleLowerCase())) {
ret.push(i);
}
}
return ret;
};
const dataView = new TableDataView(originalData, searchFn);
try {
// we haven't started a search so we should throw
await dataView.findNext();
assert.fail();
} catch (e) {
}
await dataView.find('row 2');
dataView.clearFind();
try {
// we cleared the search and haven't started a new search so we should throw
await dataView.findNext();
assert.fail();
} catch (e) {
}
});
test('Search respects max finds', async () => {
const rowCount = 10;
const columnCount = 5;
const originalData = populateData(rowCount, columnCount);
const searchFn = (val: { [x: string]: string }, exp: string): Array<number> => {
const ret = new Array<number>();
for (let i = 0; i < columnCount; i++) {
const colVal = val[getColumnName(i)];
if (colVal && colVal.toLocaleLowerCase().includes(exp.toLocaleLowerCase())) {
ret.push(i);
}
}
return ret;
};
const dataView = new TableDataView(originalData, searchFn);
let findValue = await dataView.find('row 2', 2);
assert.deepEqual(findValue, { row: 2, col: 0 });
findValue = await dataView.findNext();
assert.deepEqual(findValue, { row: 2, col: 1 });
// find will loop around once it reaches the end
findValue = await dataView.findNext();
assert.deepEqual(findValue, { row: 2, col: 0 });
});
}); });
function populateData(row: number, column: number): any[] { function populateData(row: number, column: number): any[] {
let data = []; let data: Array<{ [key: string]: string }> = [];
for (let i: number = 0; i < row; i++) { for (let i: number = 0; i < row; i++) {
let row = {}; let row = {};
for (let j: number = 0; j < column; j++) { for (let j: number = 0; j < column; j++) {