fenix/docs/architectureexample/ContactsStore.kt
Severin Rudie a0ca8b84bb For #5799: document architecture choices (#5800)
* For #5799: add architecture document outline for review

* For 5799: update architecture doc outline

- Remove references to old architecture (Soon it will all have been replaced. No need for the additional cognitive load)
- Add some subheadings
- 'Simplified Example' seems like a good idea. Update the language to clarify that it will be done

* For 5799: add additional known limitations

* For 5799: wrote first draft for architecture 'overview' and 'important objects'

* For 5799: wrote first draft for arch doc 'important notes'

* For 5799: wrote arch doc 'known limitations' section

* For 5799: wrote example code for architecture doc

* For 5799: added example app wireframe for arch docs

* For 5799: update arch docs 'Simplified Example section'

* For 5799: improve formatting for architecture docs

* For 5799: minor tweaks to architecture docs

* For 5799: link 'simplified example' section to example code

* For 5799: update arch doc per review
2019-10-21 13:58:09 -07:00

49 lines
1.5 KiB
Kotlin

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// This is example code for the 'Simplified Example' section of
// /docs/architecture-overview.md
class ContactsStore(
private val initialState: ContactsState
) : Store<ContactsState, Reducer<ContactState, ContactsAction>>(initialState, ::reducer)
sealed class ContactsAction {
data class ContactRenamed(val contactId: Int, val newName: String) : ContactsAction
data class ThemeChanged(val newTheme: Theme) : ContactsAction
}
data class ContactsState(
val contacts: List<Contact>,
val theme: Theme
)
data class Contact(
val name: String,
val id: Int,
val imageUrl: Uri
)
enum class Theme {
ORANGE, DARK
}
fun reducer(oldState: ContactsState, action: ContactsAction): ContactsState = when (action) {
is ContactsAction.ThemeChanged -> oldState.copy(theme = action.newTheme)
is ContactsAction.ContactRenamed -> {
val newContacts = oldState.contacts.map { contact ->
// If this is the contact we want to change...
if (contact.id == action.contactId) {
// Update its name, but keep other values the same
contact.copy(name = newName)
} else {
// Otherwise return the original contact
return@map contact
}
}
return oldState.copy(contacts = newContacts)
}
}