Skip to content

Commit

Permalink
Update explore navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
Koitharu committed Nov 12, 2023
1 parent b093a88 commit b928c41
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.koitharu.kotatsu.explore.ui

import android.content.DialogInterface
import android.content.Intent
import android.os.Bundle
import android.view.LayoutInflater
import android.view.MenuItem
Expand Down Expand Up @@ -46,6 +47,7 @@ import org.koitharu.kotatsu.parsers.model.MangaSource
import org.koitharu.kotatsu.search.ui.MangaListActivity
import org.koitharu.kotatsu.settings.SettingsActivity
import org.koitharu.kotatsu.settings.newsources.NewSourcesDialogFragment
import org.koitharu.kotatsu.settings.sources.catalog.SourcesCatalogActivity
import org.koitharu.kotatsu.suggestions.ui.SuggestionsActivity
import javax.inject.Inject

Expand Down Expand Up @@ -109,7 +111,7 @@ class ExploreFragment :
}

override fun onListHeaderClick(item: ListHeader, view: View) {
startActivity(SettingsActivity.newManageSourcesIntent(view.context))
startActivity(Intent(view.context, SourcesCatalogActivity::class.java))
}

override fun onPrimaryButtonClick(tipView: TipView) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import android.view.MenuInflater
import android.view.MenuItem
import androidx.core.view.MenuProvider
import org.koitharu.kotatsu.R
import org.koitharu.kotatsu.settings.SettingsActivity

class ExploreMenuProvider(
private val context: Context,
Expand All @@ -23,6 +24,11 @@ class ExploreMenuProvider(
true
}

R.id.action_manage -> {
context.startActivity(SettingsActivity.newManageSourcesIntent(context))
true
}

else -> false
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class ExploreViewModel @Inject constructor(
result += RecommendationsItem(recommendation)
}
if (sources.isNotEmpty()) {
result += ListHeader(R.string.remote_sources, R.string.manage)
result += ListHeader(R.string.remote_sources, R.string.catalog)
if (newSources.isNotEmpty()) {
result += TipModel(
key = TIP_NEW_SOURCES,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class SourcesManageFragment :

override fun onResume() {
super.onResume()
activity?.setTitle(R.string.remote_sources)
activity?.setTitle(R.string.manage_sources)
}

override fun onDestroyView() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class SourcesCatalogViewModel @Inject constructor(
) : BaseViewModel() {

private val lifecycle = RetainedLifecycleImpl()
private var searchQuery: String = ""
val onActionDone = MutableEventFlow<ReversibleAction>()
val contentType = MutableStateFlow(ContentType.entries.first())
val locales = getLocalesImpl()
Expand All @@ -40,7 +41,9 @@ class SourcesCatalogViewModel @Inject constructor(
locale,
contentType,
) { lc, type ->
listProducerFactory.create(lc, type, lifecycle)
listProducerFactory.create(lc, type, lifecycle).also {
it.setQuery(searchQuery)
}
}.stateIn(viewModelScope, SharingStarted.Eagerly, null)

val content = listProducer.flatMapLatest {
Expand All @@ -53,6 +56,7 @@ class SourcesCatalogViewModel @Inject constructor(
}

fun performSearch(query: String) {
searchQuery = query
listProducer.value?.setQuery(query)
}

Expand Down
5 changes: 5 additions & 0 deletions app/src/main/res/menu/opt_explore.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,9 @@
android:title="@string/show_in_grid_view"
android:titleCondensed="@string/grid" />

<item
android:id="@+id/action_manage"
android:title="@string/manage_sources"
android:titleCondensed="@string/manage" />

</menu>
2 changes: 2 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -521,4 +521,6 @@
<string name="source_enabled">Source enabled</string>
<string name="no_manga_sources_catalog_text">No available sources in this section yet. Stay tuned</string>
<string name="no_manga_sources_found">No available manga sources found by your query</string>
<string name="catalog">Catalog</string>
<string name="manage_sources">Manage sources</string>
</resources>

0 comments on commit b928c41

Please sign in to comment.