mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-18 14:58:34 +00:00
Summary: This diff introduces two experimental APIs to make `IGListKit` more usable with Swift values types: - The `ListIdentifiable` protocol, which provides the equivalent of the diff identifier half of `ListDiffable`. For equality, we just use Swift's native `Equatable`. - The `ListValueSectionController` base class, which provides a section controller interface for use with `ListIdentifiable` values. These two APIs work together through the use of a private box class. I'd like to keep this detail hidden from callers, so that product code only deals with native Swift types. Differential Revision: D23606413 fbshipit-source-id: 23718c508643f165c74550f1515d77448bd42d42
38 lines
1.6 KiB
Swift
38 lines
1.6 KiB
Swift
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import IGListKit
|
|
|
|
/// A generic section controller that supports any Swift value conforming to `ListIdentifiable`.
|
|
///
|
|
/// For a type-safe base class for `ListDiffable` objects, see `ListGenericSectionController` instead.
|
|
///
|
|
/// `ListValueSectionController` is an experimental, under-development API, and may change without warning in the future.
|
|
open class ListValueSectionController<Value: ListIdentifiable>: ListSectionController {
|
|
/// The section controller's current value.
|
|
///
|
|
/// This value will be `nil` temporarily after initialization, but is exposed as an implicitly-unwrapped
|
|
/// optional because it will be set by `didUpdate(to:)` before any other methods, like `cellForItem(at:)`,
|
|
/// are invoked.
|
|
public private(set) var value: Value!
|
|
|
|
/// Subclasses of `ListValueSectionController` may not override `didUpdate(to:)` for objects.
|
|
/// Instead, they must use the overload for generic values.
|
|
public final override func didUpdate(to object: Any) {
|
|
if let value = Value(diffable: object) {
|
|
self.value = value
|
|
didUpdate(to: value)
|
|
} else {
|
|
fatalError("Expected object for value section controller to be a boxed \(Value.self), but it was \(object)")
|
|
}
|
|
}
|
|
|
|
/// Updates the section controller to a new value.
|
|
///
|
|
/// Subclasses of `ListValueSectionController` may override this method. Calling `super` is not required.
|
|
open func didUpdate(to value: Value) {}
|
|
}
|