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

59 lines
1.7 KiB
Swift
Raw Normal View History

//
// 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 {
2022-09-23 14:16:18 +00:00
case openSessionOverview(session: UserSessionInfo, isCurrentSession: Bool)
2022-09-22 08:52:42 +00:00
}
// MARK: View model
enum UserSessionsOverviewViewModelResult {
2022-09-05 09:15:37 +00:00
case showAllUnverifiedSessions
case showAllInactiveSessions
case verifyCurrentSession
2022-09-23 14:16:18 +00:00
case showCurrentSessionOverview(sessionInfo: UserSessionInfo)
2022-09-05 09:15:37 +00:00
case showAllOtherSessions
2022-09-23 14:16:18 +00:00
case showUserSessionOverview(sessionInfo: 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
var showLoadingIndicator: Bool = false
}
enum UserSessionsOverviewViewAction {
2022-09-05 09:15:37 +00:00
case viewAppeared
case verifyCurrentSession
case viewCurrentSessionDetails
case viewAllUnverifiedSessions
case viewAllInactiveSessions
case viewAllOtherSessions
2022-09-05 09:15:37 +00:00
case tapUserSession(_ sessionId: String)
}