diff options
author | Andy Rickert <andrew_rickert@brown.edu> | 2020-06-24 19:18:28 -0400 |
---|---|---|
committer | Andy Rickert <andrew_rickert@brown.edu> | 2020-06-24 19:18:28 -0400 |
commit | a8d9fb68b14a5c89a3186e49ff28bbfa2cd9978e (patch) | |
tree | 5ba0b83900896408258cce7d3c8e04c10b8c9d87 | |
parent | 9d6e9a799f506580b1a12a3c4a2215a19e7779e4 (diff) |
refreshing searches and prelimianray looks at searaching within collections
-rw-r--r-- | src/client/views/search/SearchBox.tsx | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/src/client/views/search/SearchBox.tsx b/src/client/views/search/SearchBox.tsx index 8449f514a..37d358b02 100644 --- a/src/client/views/search/SearchBox.tsx +++ b/src/client/views/search/SearchBox.tsx @@ -258,6 +258,8 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc if (this._collectionStatus) { query = this.addCollectionFilter(query); query = query.replace(/\s+/g, ' ').trim(); + console.log(query) + } return query; } @@ -283,6 +285,8 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc addCollectionFilter(query: string): string { const collections: Doc[] = this.getCurCollections(); + + console.log(collections); const oldWords = query.split(" "); const collectionString: string[] = []; @@ -308,7 +312,7 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc getCurCollections(): Doc[] { const selectedDocs: DocumentView[] = SelectionManager.SelectedDocuments(); const collections: Doc[] = []; - + console.log(selectedDocs); selectedDocs.forEach(async element => { const layout: string = StrCast(element.props.Document.layout); //checks if selected view (element) is a collection. if it is, adds to list to search through @@ -387,6 +391,14 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc this._isSorted=[]; this._visibleElements = []; this._visibleDocuments = []; + console.log(this._timeout); + + if (this._timeout){clearTimeout(this._timeout); this._timeout=undefined}; + this._timeout= setTimeout(()=>{ + console.log("Resubmitting search"); + this.submitSearch(); + }, 10000); + if (query !== "") { this._endIndex = 12; this._maxSearchIndex = 0; @@ -401,6 +413,7 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc }); } } + @observable _timeout:any=undefined; @observable firststring: string = ""; @observable secondstring: string = ""; @@ -796,8 +809,8 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc //if true, any keywords can be used. if false, all keywords are required. @action.bound handleWordQueryChange = async() => { - this._basicWordStatus = !this._basicWordStatus; - if (this._basicWordStatus) { + this._collectionStatus = !this._collectionStatus; + if (this._collectionStatus) { let doc = await Cast(this.props.Document.keywords, Doc) doc!.backgroundColor= "grey"; @@ -1207,6 +1220,7 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc return ( <div style={{pointerEvents:"all"}}className="searchBox-container"> + <div className="searchBox-bar"> <span className="searchBox-barChild searchBox-collection" onPointerDown={SetupDrag(this.collectionRef, () => StrCast(this.layoutDoc._searchString) ? this.startDragCollection() : undefined)} ref={this.collectionRef} title="Drag Results as Collection"> <FontAwesomeIcon icon="object-group" size="lg" /> |