-
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add @ObservedObject implementation (#171)
This pulls a fork of OpenCombine that can be compiled with the same SwiftWasm snapshot we use in `main`. The only caveat is that this doesn't work for `ObservableObject`s that are subclasses of other classes with `@Published` properties. This issue needs to be fixed in [the Runtime library fork](https://github.com/MaxDesiatov/Runtime). Since this is a rare case, and fixing it wouldn't change this `@ObservedObject` implementation, I think it's ready for review as is.
- Loading branch information
1 parent
8f23ac9
commit ffa686c
Showing
8 changed files
with
130 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// Copyright 2020 Tokamak contributors | ||
// | ||
// 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 OpenCombine | ||
|
||
public typealias ObservableObject = OpenCombine.ObservableObject | ||
public typealias Published = OpenCombine.Published | ||
|
||
protocol ObservedProperty { | ||
var objectWillChange: AnyPublisher<(), Never> { get } | ||
} | ||
|
||
@propertyWrapper | ||
public struct ObservedObject<ObjectType>: ObservedProperty where ObjectType: ObservableObject { | ||
@dynamicMemberLookup | ||
public struct Wrapper { | ||
let root: ObjectType | ||
public subscript<Subject>( | ||
dynamicMember keyPath: ReferenceWritableKeyPath<ObjectType, Subject> | ||
) -> Binding<Subject> { | ||
.init( | ||
get: { | ||
self.root[keyPath: keyPath] | ||
}, set: { | ||
self.root[keyPath: keyPath] = $0 | ||
} | ||
) | ||
} | ||
} | ||
|
||
public var wrappedValue: ObjectType { projectedValue.root } | ||
|
||
public init(wrappedValue: ObjectType) { | ||
projectedValue = Wrapper(root: wrappedValue) | ||
} | ||
|
||
public let projectedValue: Wrapper | ||
|
||
var objectWillChange: AnyPublisher<(), Never> { | ||
wrappedValue.objectWillChange.map { _ in }.eraseToAnyPublisher() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters