* Use the new TimelineMediaPreview modifier on the room and pinned timeline screens. * Use the same presentation logic for all timeline media previews. * Fix a bug with the detection of the timeline end. * Send pagination requests from the media preview screen. * Add SwiftLint to the Danger workflow (it is no longer installed on the runner). * Put SwiftLint back on all of the GitHub runners too. * Set the function_parameter_count lint rule to 10. * Make sure to clean-up any previews when the coordinator is done. * Handle the viewInRoomTimeline action more appropriately.
94 lines
3.3 KiB
Swift
94 lines
3.3 KiB
Swift
//
|
|
// Copyright 2022-2024 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 Combine
|
|
import MatrixRustSDK
|
|
import SwiftUI
|
|
|
|
enum TimelineControllerCallback {
|
|
case updatedTimelineItems(timelineItems: [RoomTimelineItemProtocol], isSwitchingTimelines: Bool)
|
|
case paginationState(PaginationState)
|
|
case isLive(Bool)
|
|
}
|
|
|
|
enum TimelineControllerAction {
|
|
enum TimelineViewModelKind {
|
|
/// Use the active timeline view model.
|
|
case active
|
|
/// Use the newly generated view model provided.
|
|
case new(TimelineViewModel)
|
|
}
|
|
|
|
case displayMediaPreview(item: EventBasedMessageTimelineItemProtocol, timelineViewModel: TimelineViewModelKind)
|
|
case displayLocation(body: String, geoURI: GeoURI, description: String?)
|
|
case none
|
|
}
|
|
|
|
enum TimelineControllerError: Error {
|
|
case generic
|
|
case eventNotFound
|
|
}
|
|
|
|
@MainActor
|
|
protocol TimelineControllerProtocol {
|
|
var roomID: String { get }
|
|
var timelineKind: TimelineKind { get }
|
|
|
|
/// The currently known items, use only for setting up the intial state.
|
|
var timelineItems: [RoomTimelineItemProtocol] { get }
|
|
|
|
/// The current pagination state, use only for setting up the intial state
|
|
var paginationState: PaginationState { get }
|
|
|
|
var callbacks: PassthroughSubject<TimelineControllerCallback, Never> { get }
|
|
|
|
func processItemAppearance(_ itemID: TimelineItemIdentifier) async
|
|
|
|
func processItemDisappearance(_ itemID: TimelineItemIdentifier) async
|
|
|
|
func focusOnEvent(_ eventID: String, timelineSize: UInt16) async -> Result<Void, TimelineControllerError>
|
|
func focusLive()
|
|
|
|
func paginateBackwards(requestSize: UInt16) async -> Result<Void, TimelineControllerError>
|
|
func paginateForwards(requestSize: UInt16) async -> Result<Void, TimelineControllerError>
|
|
|
|
func sendReadReceipt(for itemID: TimelineItemIdentifier) async
|
|
|
|
func sendMessage(_ message: String,
|
|
html: String?,
|
|
inReplyToEventID: String?,
|
|
intentionalMentions: IntentionalMentions) async
|
|
|
|
func edit(_ eventOrTransactionID: TimelineItemIdentifier.EventOrTransactionID,
|
|
message: String,
|
|
html: String?,
|
|
intentionalMentions: IntentionalMentions) async
|
|
|
|
func editCaption(_ eventOrTransactionID: TimelineItemIdentifier.EventOrTransactionID,
|
|
message: String,
|
|
html: String?,
|
|
intentionalMentions: IntentionalMentions) async
|
|
|
|
func removeCaption(_ eventOrTransactionID: TimelineItemIdentifier.EventOrTransactionID) async
|
|
|
|
func toggleReaction(_ reaction: String, to eventOrTransactionID: TimelineItemIdentifier.EventOrTransactionID) async
|
|
|
|
func redact(_ eventOrTransactionID: TimelineItemIdentifier.EventOrTransactionID) async
|
|
|
|
func pin(eventID: String) async
|
|
|
|
func unpin(eventID: String) async
|
|
|
|
func messageEventContent(for itemID: TimelineItemIdentifier) async -> RoomMessageEventContentWithoutRelation?
|
|
|
|
func debugInfo(for itemID: TimelineItemIdentifier) -> TimelineItemDebugInfo
|
|
|
|
func sendHandle(for itemID: TimelineItemIdentifier) -> SendHandleProxy?
|
|
|
|
func eventTimestamp(for itemID: TimelineItemIdentifier) -> Date?
|
|
}
|