/* Copyright 2017 Andrew Dawson * * This file is a part of Tusky. * * 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. * * Tusky 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 Tusky; if not, * see . */ package com.keylesspalace.tusky.viewmodel import androidx.lifecycle.ViewModel import com.keylesspalace.tusky.entity.MastoList import com.keylesspalace.tusky.network.MastodonApi import com.keylesspalace.tusky.util.withoutFirstWhich import com.keylesspalace.tusky.util.replacedFirstWhich import io.reactivex.Observable import io.reactivex.disposables.CompositeDisposable import io.reactivex.rxkotlin.addTo import io.reactivex.subjects.BehaviorSubject import io.reactivex.subjects.PublishSubject import java.io.IOException import java.net.ConnectException import javax.inject.Inject internal class ListsViewModel @Inject constructor(private val api: MastodonApi) : ViewModel() { enum class LoadingState { INITIAL, LOADING, LOADED, ERROR_NETWORK, ERROR_OTHER } enum class Event { CREATE_ERROR, DELETE_ERROR, RENAME_ERROR } data class State(val lists: List, val loadingState: LoadingState) val state: Observable get() = _state val events: Observable get() = _events private val _state = BehaviorSubject.createDefault(State(listOf(), LoadingState.INITIAL)) private val _events = PublishSubject.create() private val disposable = CompositeDisposable() fun retryLoading() { loadIfNeeded() } private fun loadIfNeeded() { val state = _state.value!! if (state.loadingState == LoadingState.LOADING || state.lists.isNotEmpty()) return updateState { copy(loadingState = LoadingState.LOADING) } api.getLists().subscribe({ lists -> updateState { copy( lists = lists, loadingState = LoadingState.LOADED ) } }, { err -> updateState { copy(loadingState = if (err is IOException || err is ConnectException) LoadingState.ERROR_NETWORK else LoadingState.ERROR_OTHER) } }).addTo(disposable) } fun createNewList(listName: String) { api.createList(listName).subscribe({ list -> updateState { copy(lists = lists + list) } }, { sendEvent(Event.CREATE_ERROR) }).addTo(disposable) } fun renameList(listId: String, listName: String) { api.updateList(listId, listName).subscribe({ list -> updateState { copy(lists = lists.replacedFirstWhich(list) { it.id == listId }) } }, { sendEvent(Event.RENAME_ERROR) }).addTo(disposable) } fun deleteList(listId: String) { api.deleteList(listId).subscribe({ updateState { copy(lists = lists.withoutFirstWhich { it.id == listId }) } }, { sendEvent(Event.DELETE_ERROR) }).addTo(disposable) } private inline fun updateState(crossinline fn: State.() -> State) { _state.onNext(fn(_state.value!!)) } private fun sendEvent(event: Event) { _events.onNext(event) } }