/* * Copyright 2022 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.cbnu.cats.ui import androidx.lifecycle.ViewModel import androidx.lifecycle.viewModelScope import com.cbnu.cats.data.Email import com.cbnu.cats.data.EmailsRepository import com.cbnu.cats.data.EmailsRepositoryImpl import com.cbnu.cats.ui.utils.ReplyContentType import kotlinx.coroutines.flow.MutableStateFlow import kotlinx.coroutines.flow.StateFlow import kotlinx.coroutines.flow.catch import kotlinx.coroutines.launch class ReplyHomeViewModel(private val emailsRepository: EmailsRepository = EmailsRepositoryImpl()) : ViewModel() { // UI state exposed to the UI private val _uiState = MutableStateFlow(ReplyHomeUIState(loading = true)) val uiState: StateFlow = _uiState init { observeEmails() } private fun observeEmails() { viewModelScope.launch { emailsRepository.getAllEmails() .catch { ex -> _uiState.value = ReplyHomeUIState(error = ex.message) } .collect { emails -> /** * We set first email selected by default for first App launch in large-screens */ _uiState.value = ReplyHomeUIState( emails = emails, openedEmail = emails.first() ) } } } fun setOpenedEmail(emailId: Long, contentType: ReplyContentType) { /** * We only set isDetailOnlyOpen to true when it's only single pane layout */ val email = uiState.value.emails.find { it.id == emailId } _uiState.value = _uiState.value.copy( openedEmail = email, isDetailOnlyOpen = contentType == ReplyContentType.SINGLE_PANE ) } fun toggleSelectedEmail(emailId: Long) { val currentSelection = uiState.value.selectedEmails _uiState.value = _uiState.value.copy( selectedEmails = if (currentSelection.contains(emailId)) currentSelection.minus(emailId) else currentSelection.plus(emailId) ) } fun closeDetailScreen() { _uiState.value = _uiState .value.copy( isDetailOnlyOpen = false, openedEmail = _uiState.value.emails.first() ) } } data class ReplyHomeUIState( val emails: List = emptyList(), val selectedEmails: Set = emptySet(), val openedEmail: Email? = null, val isDetailOnlyOpen: Boolean = false, val loading: Boolean = false, val error: String? = null )