mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-20 16:42:44 +02:00
Move files around, improve structure
This commit is contained in:
committed by
Stefan Ceriu
parent
eac1401cc1
commit
841289a16c
@@ -0,0 +1,78 @@
|
||||
//
|
||||
// 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 {
|
||||
private static let userSessionNameFormatter = UserSessionNameFormatter()
|
||||
private static let lastActivityDateFormatter = UserSessionLastActivityFormatter()
|
||||
|
||||
var id: String {
|
||||
return 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 = Self.userSessionNameFormatter.sessionName(deviceType: deviceType, sessionDisplayName: sessionDisplayName)
|
||||
self.isVerified = isVerified
|
||||
|
||||
var lastActivityDateString: String?
|
||||
|
||||
if let lastActivityTimestamp = lastActivityTimestamp {
|
||||
lastActivityDateString = Self.lastActivityDateFormatter.lastActivityDateString(from: lastActivityTimestamp)
|
||||
}
|
||||
|
||||
self.lastActivityDateString = lastActivityDateString
|
||||
lastSeenIPInfo = lastSeenIP
|
||||
deviceAvatarViewData = DeviceAvatarViewData(deviceType: deviceType, isVerified: nil)
|
||||
|
||||
self.isCurrentSessionDisplayMode = isCurrentSessionDisplayMode
|
||||
}
|
||||
}
|
||||
|
||||
extension UserSessionCardViewData {
|
||||
init(userSessionInfo: UserSessionInfo, isCurrentSessionDisplayMode: Bool = false) {
|
||||
self.init(sessionId: userSessionInfo.sessionId,
|
||||
sessionDisplayName: userSessionInfo.sessionName,
|
||||
deviceType: userSessionInfo.deviceType,
|
||||
isVerified: userSessionInfo.isVerified,
|
||||
lastActivityTimestamp: userSessionInfo.lastSeenTimestamp,
|
||||
lastSeenIP: userSessionInfo.lastSeenIP,
|
||||
isCurrentSessionDisplayMode: isCurrentSessionDisplayMode)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user