Skip to content

Commit

Permalink
Remember group message toggle state
Browse files Browse the repository at this point in the history
  • Loading branch information
moezbhatti committed Feb 29, 2020
1 parent 5939e45 commit 0ba3ab5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions domain/src/main/java/com/moez/QKSMS/util/Preferences.kt
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ class Preferences @Inject constructor(
val sia = rxPrefs.getBoolean("sia", false)

// User configurable
val sendAsGroup = rxPrefs.getBoolean("sendAsGroup", true)
val nightMode = rxPrefs.getInteger("nightMode", when (Build.VERSION.SDK_INT >= 29) {
true -> NIGHT_MODE_SYSTEM
false -> NIGHT_MODE_OFF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,10 @@ class ComposeViewModel @Inject constructor(
.distinctUntilChanged()
.subscribe { title -> newState { copy(conversationtitle = title) } }

disposables += prefs.sendAsGroup.asObservable()
.distinctUntilChanged()
.subscribe { enabled -> newState { copy(sendAsGroup = enabled) } }

disposables += attachments
.subscribe { attachments -> newState { copy(attachments = attachments) } }

Expand Down Expand Up @@ -389,7 +393,7 @@ class ComposeViewModel @Inject constructor(
// Toggle the group sending mode
view.sendAsGroupIntent
.autoDisposable(view.scope())
.subscribe { newState { copy(sendAsGroup = !sendAsGroup) } }
.subscribe { prefs.sendAsGroup.set(!prefs.sendAsGroup.get()) }

// Scroll to search position
searchSelection
Expand Down

0 comments on commit 0ba3ab5

Please sign in to comment.