mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-19 08:03:50 +02:00
f8d6f43967
* Add sessions overview UI tests * Expose static methods from the UserSession name and lastActivity formatters; cleaned up the UserSessionsOverview a bit * Add UserSessionsOverviewViewModel unit tests * Add UserSessionsOverviewService unit tests
76 lines
2.5 KiB
Swift
76 lines
2.5 KiB
Swift
//
|
|
// 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
|
|
|
|
/// View data for UserSessionCardView
|
|
struct UserSessionCardViewData {
|
|
var id: String {
|
|
sessionId
|
|
}
|
|
|
|
let sessionId: String
|
|
|
|
let sessionName: String
|
|
|
|
let isVerified: Bool
|
|
|
|
let lastActivityDateString: String?
|
|
|
|
let lastSeenIPInfo: String?
|
|
|
|
let deviceAvatarViewData: DeviceAvatarViewData
|
|
|
|
/// Indicate if the current user session is shown and to adpat the layout
|
|
let isCurrentSessionDisplayMode: Bool
|
|
|
|
init(sessionId: String,
|
|
sessionDisplayName: String?,
|
|
deviceType: DeviceType,
|
|
isVerified: Bool,
|
|
lastActivityTimestamp: TimeInterval?,
|
|
lastSeenIP: String?,
|
|
isCurrentSessionDisplayMode: Bool = false) {
|
|
self.sessionId = sessionId
|
|
sessionName = UserSessionNameFormatter.sessionName(deviceType: deviceType, sessionDisplayName: sessionDisplayName)
|
|
self.isVerified = isVerified
|
|
|
|
var lastActivityDateString: String?
|
|
|
|
if let lastActivityTimestamp = lastActivityTimestamp {
|
|
lastActivityDateString = UserSessionLastActivityFormatter.lastActivityDateString(from: lastActivityTimestamp)
|
|
}
|
|
|
|
self.lastActivityDateString = lastActivityDateString
|
|
lastSeenIPInfo = lastSeenIP
|
|
deviceAvatarViewData = DeviceAvatarViewData(deviceType: deviceType, isVerified: nil)
|
|
|
|
self.isCurrentSessionDisplayMode = isCurrentSessionDisplayMode
|
|
}
|
|
}
|
|
|
|
extension UserSessionCardViewData {
|
|
init(session: UserSessionInfo) {
|
|
self.init(sessionId: session.id,
|
|
sessionDisplayName: session.name,
|
|
deviceType: session.deviceType,
|
|
isVerified: session.isVerified,
|
|
lastActivityTimestamp: session.lastSeenTimestamp,
|
|
lastSeenIP: session.lastSeenIP,
|
|
isCurrentSessionDisplayMode: session.isCurrent)
|
|
}
|
|
}
|