36 lines
847 B
Swift
36 lines
847 B
Swift
// File created from SimpleUserProfileExample
|
|
// $ createScreen.sh Spaces/SpaceCreation/SpaceCreationRooms SpaceCreationRooms
|
|
//
|
|
// Copyright 2021-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum SpaceCreationRoomsPresence {
|
|
case online
|
|
case idle
|
|
case offline
|
|
}
|
|
|
|
extension SpaceCreationRoomsPresence {
|
|
var title: String {
|
|
switch self {
|
|
case .online:
|
|
return VectorL10n.roomParticipantsOnline
|
|
case .idle:
|
|
return VectorL10n.roomParticipantsIdle
|
|
case .offline:
|
|
return VectorL10n.roomParticipantsOffline
|
|
}
|
|
}
|
|
}
|
|
|
|
extension SpaceCreationRoomsPresence: CaseIterable { }
|
|
|
|
extension SpaceCreationRoomsPresence: Identifiable {
|
|
var id: Self { self }
|
|
}
|