element-ios/RiotSwiftUI/Modules/UserSessions/UserSessionsOverview/UserSessionsOverviewModels.swift

73 lines
2.3 KiB
Swift
Raw Normal View History

2022-09-27 07:17:22 +00:00
//
// Copyright 2022 New Vector Ltd
//
// 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
//
// http://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.
//
import Foundation
// MARK: - Coordinator
2022-09-22 08:52:42 +00:00
enum UserSessionsOverviewCoordinatorResult {
case verifyCurrentSession
2022-10-05 11:35:32 +00:00
case renameSession(UserSessionInfo)
case logoutOfSession(UserSessionInfo)
2022-10-03 11:42:30 +00:00
case openSessionOverview(sessionInfo: UserSessionInfo)
case openOtherSessions(sessionInfos: [UserSessionInfo], filter: UserOtherSessionsFilter)
case linkDevice
2022-10-31 12:26:22 +00:00
case logoutFromUserSessions(sessionInfos: [UserSessionInfo])
2022-09-22 08:52:42 +00:00
}
// MARK: View model
enum UserSessionsOverviewViewModelResult: Equatable {
case showOtherSessions(sessionInfos: [UserSessionInfo], filter: UserOtherSessionsFilter)
2022-09-05 09:15:37 +00:00
case verifyCurrentSession
2022-10-05 11:35:32 +00:00
case renameSession(UserSessionInfo)
case logoutOfSession(UserSessionInfo)
case showCurrentSessionOverview(sessionInfo: UserSessionInfo)
case showUserSessionOverview(sessionInfo: UserSessionInfo)
case linkDevice
2022-10-31 12:26:22 +00:00
case logoutFromUserSessions(sessionInfos: [UserSessionInfo])
}
// MARK: View
struct UserSessionsOverviewViewState: BindableState {
var currentSessionViewData: UserSessionCardViewData?
2022-09-05 09:15:37 +00:00
var unverifiedSessionsViewData = [UserSessionListItemViewData]()
2022-09-05 09:15:37 +00:00
var inactiveSessionsViewData = [UserSessionListItemViewData]()
2022-09-05 09:15:37 +00:00
var otherSessionsViewData = [UserSessionListItemViewData]()
2022-09-05 09:15:37 +00:00
2022-09-27 07:17:22 +00:00
var showLoadingIndicator = false
var linkDeviceButtonVisible = false
}
enum UserSessionsOverviewViewAction {
2022-09-05 09:15:37 +00:00
case viewAppeared
case verifyCurrentSession
2022-10-05 11:35:32 +00:00
case renameCurrentSession
case logoutOfCurrentSession
case viewCurrentSessionDetails
case viewAllUnverifiedSessions
case viewAllInactiveSessions
case viewAllOtherSessions
2022-09-05 09:15:37 +00:00
case tapUserSession(_ sessionId: String)
case linkDevice
2022-10-31 12:26:22 +00:00
case logoutOtherSessions
}