| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /*
- * Copyright 2023 Google LLC
- *
- * 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 FirebaseFirestore
- /// Property wrapper @FirestoreObjectReference,
- /// Indicates that the specified property value should be stored by reference instead of by value
- ///
- /// When loading a parent object, any references are not loaded by default and can be loaded on demand
- /// using the projected value of the wrapper.
- ///
- /// Structs that can be stored as a reference must implement the `ReferenceableObject` protocol
- ///
- /// Variables that are annotated with the propertyWrapper should be marked as `Optional` since they can be nil when not loaded or set
- ///
- /// Example:
- /// We have three structs representing a simplified UserProfile model -
- /// `UserProfile`
- /// `Employer` - an employer who the `UserProfile` works for
- /// `WorkLocation` - representing a generic location. This can be used to represent a generic location
- ///
- /// Since multiple Users can work for an Employer, it makes sense to have only one instance of an Employer that is referred to
- /// by multiple Users. Similarly multiple users can be in a WorkLocation. Additionally, an Employer can also be located
- /// in a WorkLocation (e.g. headquarters of an Employer). We can mark WorkLocation and Employer as a ReferenceableObjects.
- ///
- ///
- /// ```
- /// struct UserProfile: ReferenceableObject {
- /// var username: String
- ///
- /// @FirestoreObjectReference
- /// var employer: Employer?
- ///
- /// @FirestoreObjectReference
- /// var workLocation: WorkLocation?
- ///
- /// }
- ///
- /// struct Employer: ReferenceableObject {
- /// var name: String
- ///
- /// @FirestoreObjectReference
- /// var headquarters: WorkLocation?
- /// }
- ///
- /// struct WorkLocation: ReferenceableObject {
- /// var locationName: String
- /// var moreInfo: String
- ///
- /// }
- ///
- /// var userProfile = ...
- ///
- /// // use projected value to load referenced employer
- /// try await userProfile.$employer?.loadReferencedObject()
- ///
- /// // use projected value to load referenced workLocation
- /// try await prof.$workLocation?.loadReferencedObject()
- ///
- ///
- ///
- /// ```
- ///
- @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
- @propertyWrapper
- public struct FirestoreObjectReference<T> where T: ReferenceableObject {
- private var objectReference: ObjectReference<T>?
- public init(wrappedValue initialValue: T?) {
- updateInitialValue(initialValue: initialValue)
- }
- private mutating func updateInitialValue(initialValue: T?) {
- if let initialValue {
- let objId = initialValue.id ?? {
- let docRef = Firestore.firestore().collection(T.parentCollection()).document()
- return docRef.documentID
- }()
- objectReference = ObjectReference(
- objectId: objId,
- collection: T.parentCollection(),
- referencedObject: initialValue
- )
- }
- }
- public var wrappedValue: T? {
- get {
- return objectReference?.referencedObject
- }
- set {
- if objectReference != nil {
- objectReference?.referencedObject = newValue
- } else {
- updateInitialValue(initialValue: newValue)
- }
- }
- }
- public var projectedValue: ObjectReference<T>? {
- get {
- return objectReference
- }
- set {
- objectReference = newValue
- }
- }
- }
- @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
- extension FirestoreObjectReference: Codable {
- public init(from decoder: Decoder) throws {
- let container = try decoder.singleValueContainer()
- let objRef = try container.decode(ObjectReference<T>.self)
- objectReference = objRef
- }
- public func encode(to encoder: Encoder) throws {
- var container = encoder.singleValueContainer()
- if let objectReference {
- try container.encode(objectReference)
- if let value = objectReference.referencedObject {
- Task {
- try await ReferenceableObjectManager.instance.save(object: value)
- }
- }
- } else {
- try container.encodeNil()
- }
- }
- }
|