|
@@ -36,7 +36,6 @@ import kotlinx.android.synthetic.main.main_activity.*
|
|
|
import rx.Observable
|
|
|
import rx.Subscription
|
|
|
import rx.android.schedulers.AndroidSchedulers
|
|
|
-import rx.subscriptions.Subscriptions
|
|
|
import timber.log.Timber
|
|
|
import uy.kohesive.injekt.injectLazy
|
|
|
import java.util.concurrent.TimeUnit
|
|
@@ -228,6 +227,7 @@ open class BrowseCatalogueController(bundle: Bundle) :
|
|
|
|
|
|
val searchEventsObservable = searchView.queryTextChangeEvents()
|
|
|
.skip(1)
|
|
|
+ .filter { router.backstack.lastOrNull()?.controller() == this@BrowseCatalogueController }
|
|
|
.share()
|
|
|
val writingObservable = searchEventsObservable
|
|
|
.filter { !it.isSubmitted }
|
|
@@ -238,11 +238,12 @@ open class BrowseCatalogueController(bundle: Bundle) :
|
|
|
searchViewSubscription?.unsubscribe()
|
|
|
searchViewSubscription = Observable.merge(writingObservable, submitObservable)
|
|
|
.map { it.queryText().toString() }
|
|
|
- .distinctUntilChanged()
|
|
|
.subscribeUntilDestroy { searchWithQuery(it) }
|
|
|
|
|
|
- untilDestroySubscriptions.add(
|
|
|
- Subscriptions.create { if (isActionViewExpanded) collapseActionView() })
|
|
|
+ fixExpand(onCollapse = {
|
|
|
+ searchWithQuery("")
|
|
|
+ true
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
// Setup filters button
|
|
@@ -310,11 +311,6 @@ open class BrowseCatalogueController(bundle: Bundle) :
|
|
|
if (presenter.query == newQuery)
|
|
|
return
|
|
|
|
|
|
- // FIXME dirty fix to restore the toolbar buttons after closing search mode.
|
|
|
- if (newQuery == "") {
|
|
|
- activity?.invalidateOptionsMenu()
|
|
|
- }
|
|
|
-
|
|
|
showProgressBar()
|
|
|
adapter?.clear()
|
|
|
|