aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/prefs/sections/FeedPrefs.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2020-07-18 20:02:06 -0700
committerAllan Wang <me@allanwang.ca>2020-07-18 20:02:06 -0700
commit5eb18e7464ceb5b7029912498ab02cf9b2556903 (patch)
tree32d184c7ef27eeaf5f6639bc9300d5cb822d372a /app/src/main/kotlin/com/pitchedapps/frost/prefs/sections/FeedPrefs.kt
parent0fc1e0c9c13c6cf551f985c3617f1bcaf8f62aa6 (diff)
downloadfrost-5eb18e7464ceb5b7029912498ab02cf9b2556903.tar.gz
frost-5eb18e7464ceb5b7029912498ab02cf9b2556903.tar.bz2
frost-5eb18e7464ceb5b7029912498ab02cf9b2556903.zip
Split prefs into segments
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/prefs/sections/FeedPrefs.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/prefs/sections/FeedPrefs.kt97
1 files changed, 97 insertions, 0 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/prefs/sections/FeedPrefs.kt b/app/src/main/kotlin/com/pitchedapps/frost/prefs/sections/FeedPrefs.kt
new file mode 100644
index 00000000..e99bce75
--- /dev/null
+++ b/app/src/main/kotlin/com/pitchedapps/frost/prefs/sections/FeedPrefs.kt
@@ -0,0 +1,97 @@
+/*
+ * Copyright 2020 Allan Wang
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package com.pitchedapps.frost.prefs.sections
+
+import ca.allanwang.kau.kpref.KPref
+import ca.allanwang.kau.kpref.KPrefFactory
+import com.pitchedapps.frost.BuildConfig
+import com.pitchedapps.frost.enums.MainActivityLayout
+import com.pitchedapps.frost.prefs.OldPrefs
+import org.koin.core.KoinComponent
+import org.koin.core.inject
+
+interface FeedPrefs {
+ var webTextScaling: Int
+
+ var feedSort: Int
+
+ var aggressiveRecents: Boolean
+
+ var showComposer: Boolean
+
+ var showSuggestedFriends: Boolean
+
+ var showSuggestedGroups: Boolean
+
+ var showFacebookAds: Boolean
+
+ var showStories: Boolean
+
+ var mainActivityLayoutType: Int
+
+ val mainActivityLayout: MainActivityLayout
+}
+
+class FeedPrefsImpl(
+ factory: KPrefFactory
+) : KPref("${BuildConfig.APPLICATION_ID}.prefs.feed", factory),
+ FeedPrefs, KoinComponent {
+
+ private val oldPrefs: OldPrefs by inject()
+
+ override var webTextScaling: Int by kpref("web_text_scaling", oldPrefs.webTextScaling /* 100 */)
+
+ override var feedSort: Int by kpref(
+ "feed_sort",
+ oldPrefs.feedSort /* FeedSort.DEFAULT.ordinal */
+ )
+
+ override var aggressiveRecents: Boolean by kpref(
+ "aggressive_recents",
+ oldPrefs.aggressiveRecents /* false */
+ )
+
+ override var showComposer: Boolean by kpref(
+ "status_composer_feed",
+ oldPrefs.showComposer /* true */
+ )
+
+ override var showSuggestedFriends: Boolean by kpref(
+ "suggested_friends_feed",
+ oldPrefs.showSuggestedFriends /* true */
+ )
+
+ override var showSuggestedGroups: Boolean by kpref(
+ "suggested_groups_feed",
+ oldPrefs.showSuggestedGroups /* true */
+ )
+
+ override var showFacebookAds: Boolean by kpref(
+ "facebook_ads",
+ oldPrefs.showFacebookAds /* false */
+ )
+
+ override var showStories: Boolean by kpref("show_stories", oldPrefs.showStories /* true */)
+
+ override var mainActivityLayoutType: Int by kpref(
+ "main_activity_layout_type",
+ oldPrefs.mainActivityLayoutType /* 0 */
+ )
+
+ override val mainActivityLayout: MainActivityLayout
+ get() = MainActivityLayout(mainActivityLayoutType)
+}