mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00

* Add the timeline controller factory to the timeline view model. In preparation for building a timeline to swipe through media in QuickLook. * Refactor RoomTimelineControllerFactory. * Refactor RoomTimelineController. * Refactor RoomTimelineProvider.
36 lines
1.2 KiB
Swift
36 lines
1.2 KiB
Swift
//
|
|
// Copyright 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 Foundation
|
|
|
|
extension TimelineProxyMock {
|
|
struct Configuration {
|
|
var isAutoUpdating = false
|
|
var timelineStartReached = false
|
|
}
|
|
|
|
@MainActor
|
|
convenience init(_ configuration: Configuration) {
|
|
self.init()
|
|
|
|
sendMessageEventContentReturnValue = .success(())
|
|
paginateBackwardsRequestSizeReturnValue = .success(())
|
|
paginateForwardsRequestSizeReturnValue = .success(())
|
|
sendReadReceiptForTypeReturnValue = .success(())
|
|
|
|
if configuration.isAutoUpdating {
|
|
underlyingTimelineProvider = AutoUpdatingTimelineProviderMock()
|
|
} else {
|
|
let timelineProvider = TimelineProviderMock()
|
|
timelineProvider.paginationState = .init(backward: configuration.timelineStartReached ? .timelineEndReached : .idle, forward: .timelineEndReached)
|
|
timelineProvider.underlyingMembershipChangePublisher = PassthroughSubject().eraseToAnyPublisher()
|
|
underlyingTimelineProvider = timelineProvider
|
|
}
|
|
}
|
|
}
|