48 lines
1.7 KiB
Swift
48 lines
1.7 KiB
Swift
//
|
|
// Copyright 2023 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 Combine
|
|
import Foundation
|
|
|
|
extension Publisher where Self.Failure == Never {
|
|
func weakAssign<Root: AnyObject>(to keyPath: ReferenceWritableKeyPath<Root, Self.Output>, on object: Root) -> AnyCancellable {
|
|
sink { [weak object] value in
|
|
object?[keyPath: keyPath] = value
|
|
}
|
|
}
|
|
}
|
|
|
|
extension Publisher where Output: Equatable, Failure == Never {
|
|
func debounceAndRemoveDuplicates<S: Scheduler>(on scheduler: S, delay: @escaping (Output) -> S.SchedulerTimeType.Stride) -> AnyPublisher<Output, Never> {
|
|
map { query in
|
|
Just(query).delay(for: delay(query), scheduler: scheduler)
|
|
}
|
|
.switchToLatest()
|
|
.removeDuplicates()
|
|
.eraseToAnyPublisher()
|
|
}
|
|
}
|
|
|
|
extension Publisher where Output == String, Failure == Never {
|
|
/// Debounce text queries and remove duplicates.
|
|
/// Clearing the text publishes the update immediately.
|
|
func debounceTextQueriesAndRemoveDuplicates() -> AnyPublisher<String, Never> {
|
|
debounceAndRemoveDuplicates(on: DispatchQueue.main) { query in
|
|
query.isEmpty ? .milliseconds(0) : .milliseconds(250)
|
|
}
|
|
}
|
|
}
|