Files
letro-ios/ElementX/Sources/Services/Timeline/TimelineItems/EventBasedMessageTimelineItemProtocol.swift
2026-04-17 17:17:55 +03:00

71 lines
2.0 KiB
Swift

//
// Copyright 2025 Element Creations Ltd.
// Copyright 2023-2025 New Vector Ltd.
//
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
// Please see LICENSE files in the repository root for full details.
//
import Foundation
enum EventBasedMessageTimelineItemContentType: Hashable {
case audio(AudioRoomTimelineItemContent)
case emote(EmoteRoomTimelineItemContent)
case file(FileRoomTimelineItemContent)
case image(ImageRoomTimelineItemContent)
case notice(NoticeRoomTimelineItemContent)
case text(TextRoomTimelineItemContent)
case video(VideoRoomTimelineItemContent)
case location(LocationRoomTimelineItemContent)
case voice(AudioRoomTimelineItemContent)
}
protocol EventBasedMessageTimelineItemProtocol: EventBasedTimelineItemProtocol {
var contentType: EventBasedMessageTimelineItemContentType { get }
}
extension EventBasedMessageTimelineItemProtocol {
var supportsMediaCaption: Bool {
switch contentType {
case .audio, .file, .image, .video:
true
case .emote, .notice, .text, .location, .voice:
false
}
}
var hasMediaCaption: Bool {
mediaCaption != nil
}
var mediaCaption: String? {
switch contentType {
case .audio(let content):
content.caption
case .file(let content):
content.caption
case .image(let content):
content.caption
case .video(let content):
content.caption
case .emote, .notice, .text, .location, .voice:
nil
}
}
var formattedMediaCaption: AttributedString? {
switch contentType {
case .audio(let content):
content.formattedCaption
case .file(let content):
content.formattedCaption
case .image(let content):
content.formattedCaption
case .video(let content):
content.formattedCaption
case .emote, .notice, .text, .location, .voice:
nil
}
}
}