|
|
@ -19,10 +19,11 @@ export default class AppPrivateSearchTab extends SliderSuperTab { |
|
|
|
|
|
|
|
|
|
|
|
private peerId = 0; |
|
|
|
private peerId = 0; |
|
|
|
private threadId = 0; |
|
|
|
private threadId = 0; |
|
|
|
|
|
|
|
private query = ''; |
|
|
|
private onDatePick: (timestamp: number) => void; |
|
|
|
private onDatePick: (timestamp: number) => void; |
|
|
|
|
|
|
|
|
|
|
|
onOpenAfterTimeout() { |
|
|
|
onOpenAfterTimeout() { |
|
|
|
this.appSearch.beginSearch(this.peerId, this.threadId); |
|
|
|
this.appSearch.beginSearch(this.peerId, this.threadId, this.query); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected init() { |
|
|
|
protected init() { |
|
|
@ -44,18 +45,9 @@ export default class AppPrivateSearchTab extends SliderSuperTab { |
|
|
|
|
|
|
|
|
|
|
|
open(peerId: number, threadId?: number, onDatePick?: AppPrivateSearchTab['onDatePick'], query?: string) { |
|
|
|
open(peerId: number, threadId?: number, onDatePick?: AppPrivateSearchTab['onDatePick'], query?: string) { |
|
|
|
const ret = super.open(); |
|
|
|
const ret = super.open(); |
|
|
|
if(this.init) { |
|
|
|
|
|
|
|
this.init(); |
|
|
|
|
|
|
|
this.init = null; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
query && (this.inputSearch.inputField.value = query); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(this.peerId !== 0) { |
|
|
|
|
|
|
|
this.appSearch.beginSearch(this.peerId, this.threadId); |
|
|
|
|
|
|
|
return ret; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(!this.peerId) { |
|
|
|
|
|
|
|
this.query = query; |
|
|
|
this.peerId = peerId; |
|
|
|
this.peerId = peerId; |
|
|
|
this.threadId = threadId; |
|
|
|
this.threadId = threadId; |
|
|
|
this.onDatePick = onDatePick; |
|
|
|
this.onDatePick = onDatePick; |
|
|
@ -67,7 +59,13 @@ export default class AppPrivateSearchTab extends SliderSuperTab { |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
query && this.appSearch.searchInput.inputField.setValueSilently(query); |
|
|
|
|
|
|
|
|
|
|
|
appSidebarRight.toggleSidebar(true); |
|
|
|
appSidebarRight.toggleSidebar(true); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
this.appSearch.beginSearch(this.peerId, this.threadId, query); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return ret; |
|
|
|
return ret; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|