Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add settings for swipe nav #377

Merged
merged 2 commits into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 19 additions & 8 deletions app/src/main/java/com/capyreader/app/common/AppPreferences.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import android.content.Context
import androidx.preference.PreferenceManager
import com.capyreader.app.refresher.RefreshInterval
import com.capyreader.app.ui.articles.ArticleListFontScale
import com.capyreader.app.ui.settings.ArticleVerticalSwipe
import com.jocmp.capy.ArticleFilter
import com.jocmp.capy.articles.FontOption
import com.jocmp.capy.articles.TextSize
Expand All @@ -19,6 +20,8 @@ class AppPreferences(context: Context) {
sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context)
)

val readerOptions = ReaderOptions(preferenceStore)

val articleListOptions = ArticleListOptions(preferenceStore)

val accountID: Preference<String>
Expand Down Expand Up @@ -50,17 +53,25 @@ class AppPreferences(context: Context) {
val enableStickyFullContent: Preference<Boolean>
get() = preferenceStore.getBoolean("enable_sticky_full_content", false)

val pinArticleTopBar: Preference<Boolean>
get() = preferenceStore.getBoolean("article_pin_top_bar", true)
fun clearAll() {
preferenceStore.clearAll()
}

class ReaderOptions(private val preferenceStore: PreferenceStore) {
val pinToolbars: Preference<Boolean>
get() = preferenceStore.getBoolean("article_pin_top_bar", true)

val textSize: Preference<TextSize>
get() = preferenceStore.getEnum("article_text_size", TextSize.default)
val textSize: Preference<TextSize>
get() = preferenceStore.getEnum("article_text_size", TextSize.default)

val fontOption: Preference<FontOption>
get() = preferenceStore.getEnum("article_font_family", FontOption.default)
val fontFamily: Preference<FontOption>
get() = preferenceStore.getEnum("article_font_family", FontOption.default)

fun clearAll() {
preferenceStore.clearAll()
val topSwipeGesture: Preference<ArticleVerticalSwipe>
get() = preferenceStore.getEnum("article_top_swipe_gesture", ArticleVerticalSwipe.PREVIOUS_ARTICLE)

val bottomSwipeGesture: Preference<ArticleVerticalSwipe>
get() = preferenceStore.getEnum("article_bottom_swipe_gesture", ArticleVerticalSwipe.NEXT_ARTICLE)
}

class ArticleListOptions(private val preferenceStore: PreferenceStore) {
Expand Down
12 changes: 11 additions & 1 deletion app/src/main/java/com/capyreader/app/common/ImagePreview.kt
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
package com.capyreader.app.common

enum class ImagePreview {
import com.capyreader.app.R
import com.capyreader.app.ui.settings.Translated

enum class ImagePreview : Translated {
NONE,
SMALL,
LARGE;

override val translationKey: Int
get() = when (this) {
NONE -> R.string.image_preview_menu_option_none
SMALL -> R.string.image_preview_menu_option_small
LARGE -> R.string.image_preview_menu_option_large
}

companion object {
val default = SMALL

Expand Down
12 changes: 11 additions & 1 deletion app/src/main/java/com/capyreader/app/common/ThemeOption.kt
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
package com.capyreader.app.common

enum class ThemeOption {
import com.capyreader.app.R
import com.capyreader.app.ui.settings.Translated

enum class ThemeOption : Translated {
LIGHT,
DARK,
SYSTEM_DEFAULT;

override val translationKey: Int
get() = when(this) {
ThemeOption.LIGHT -> R.string.theme_menu_option_light
ThemeOption.DARK -> R.string.theme_menu_option_dark
ThemeOption.SYSTEM_DEFAULT -> R.string.theme_menu_option_system_default
}

companion object {
val default = SYSTEM_DEFAULT

Expand Down
13 changes: 10 additions & 3 deletions app/src/main/java/com/capyreader/app/ui/articles/ArticleLayout.kt
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ fun ArticleLayout(
}

fun scrollToArticle(index: Int) {
if (index > -1) {
coroutineScope.launch {
coroutineScope.launch {
if (index > -1) {
listState.animateScrollToItem(index)
}
}
Expand Down Expand Up @@ -336,8 +336,9 @@ fun ArticleLayout(
CapyPlaceholder()
}
} else if (article != null) {
val compact = isCompact()
val indexedArticles =
rememberIndexedArticles(article = article, articles = articles)
rememberIndexedArticles(article = article, articles = pagingArticles)

ArticleView(
article = article,
Expand All @@ -353,6 +354,12 @@ fun ArticleLayout(
onSelectArticle(id)
},
)

LaunchedEffect(article.id, indexedArticles.index) {
if (!compact) {
scrollToArticle(indexedArticles.index)
}
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ class ArticleScreenViewModel(
refreshJob?.cancel()

refreshJob = viewModelScope.launch(Dispatchers.IO) {
updateArticlesSince()

account.refresh().onFailure { throwable ->
if (throwable is UnauthorizedError && _showUnauthorizedMessage == UnauthorizedMessageState.HIDE) {
_showUnauthorizedMessage = UnauthorizedMessageState.SHOW
Expand All @@ -177,8 +179,6 @@ class ArticleScreenViewModel(
val article = buildArticle(articleID) ?: return@launch
_article = article

updateArticlesSince()

markRead(articleID)

if (article.fullContent == Article.FullContentState.LOADING) {
Expand Down Expand Up @@ -220,8 +220,6 @@ class ArticleScreenViewModel(
}

fun clearArticle() {
updateArticlesSince()

_article = null
}

Expand Down Expand Up @@ -271,6 +269,8 @@ class ArticleScreenViewModel(
}

private fun selectArticleFilter(nextFilter: ArticleFilter) {
updateArticlesSince()

updateFilterValue(nextFilter)

clearArticle()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ internal val articlesModule = module {
single {
ArticleRenderer(
context = get(),
textSize = get<AppPreferences>().textSize,
fontOption = get<AppPreferences>().fontOption,
textSize = get<AppPreferences>().readerOptions.textSize,
fontOption = get<AppPreferences>().readerOptions.fontFamily,
)
}
viewModel {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ package com.capyreader.app.ui.articles
import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember
import androidx.paging.PagingData
import androidx.paging.compose.LazyPagingItems
import androidx.paging.compose.collectAsLazyPagingItems
import com.jocmp.capy.Article
import kotlinx.coroutines.flow.Flow

data class IndexedArticles(
private val index: Int,
val index: Int,
private val next: Int,
private val previous: Int,
private val articles: List<Article?>,
Expand All @@ -22,16 +23,18 @@ data class IndexedArticles(
}

fun hasNext(): Boolean {
return next < articles.size
return next < size
}

val size = articles.size
}

@Composable
fun rememberIndexedArticles(
article: Article,
articles: Flow<PagingData<Article>>
articles: LazyPagingItems<Article>
): IndexedArticles {
val snapshot = articles.collectAsLazyPagingItems().itemSnapshotList
val snapshot = articles.itemSnapshotList

return remember(article, snapshot.size) {
val index = snapshot.indexOfFirst { it?.id == article.id }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import org.koin.compose.koinInject

@Composable
fun ArticleStyleListener(webView: WebView?, appPreferences: AppPreferences = koinInject()) {
val textSize by appPreferences.textSize.collectChanges()
val fontFamily by appPreferences.fontOption.collectChanges()
val textSize by appPreferences.readerOptions.textSize.collectChanges()
val fontFamily by appPreferences.readerOptions.fontFamily.collectChanges()

LaunchedEffect(fontFamily) {
if (webView != null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ fun ArticleStylePicker(
) {
val textSizes = TextSize.sorted

var fontFamily by remember { mutableStateOf(appPreferences.fontOption.get()) }
var fontFamily by remember { mutableStateOf(appPreferences.readerOptions.fontFamily.get()) }
var sliderPosition by remember {
mutableFloatStateOf(textSizes.indexOf(appPreferences.textSize.get()).toFloat())
mutableFloatStateOf(textSizes.indexOf(appPreferences.readerOptions.textSize.get()).toFloat())
}

Column(
Expand All @@ -40,7 +40,7 @@ fun ArticleStylePicker(
ArticleFontMenu(
updateFontFamily = { font ->
fontFamily = font
appPreferences.fontOption.set(font)
appPreferences.readerOptions.fontFamily.set(font)
onChange()
},
fontOption = fontFamily
Expand All @@ -57,7 +57,7 @@ fun ArticleStylePicker(
value = sliderPosition,
onValueChange = {
sliderPosition = it
appPreferences.textSize.set(TextSize.sorted[it.roundToInt()])
appPreferences.readerOptions.textSize.set(TextSize.sorted[it.roundToInt()])
onChange()
}
)
Expand Down
Loading
Loading