4ffa15b06a
Foundation for 2.1 family sharing (CKShare needs these models + container). SwiftData cannot share across Apple IDs today, so 2.0 ships true multi-device sync for the same account instead: - Models made CloudKit-compatible: dropped @Attribute(.unique) on all 5, inline defaults on every attribute, WeekPlan.slots stored as optional relationship (name preserved → lightweight migration) with non-optional slotList facade; ~73 call sites renamed. - Container: cloudKitDatabase .automatic, falling back to the local-only store when CloudKit is unavailable; failures recorded to Crashlytics. - Entitlements: iCloud CloudKit service (container already existed); remote-notification background mode for push-driven sync. - Legacy KV snapshot sync (ICloudSyncService) stays inert when CloudKit is active — kept only for 1.x devices. - DeduplicationService collapses cross-device duplicates deterministically on launch (settings singleton, default tags with tagId remapping, same-week plans). - Note: AppSettings.isPremium now syncs across same-Apple-ID devices; StoreKit (PremiumSyncService + Transaction.updates) remains the source of truth and reconciles on every launch/foreground. All 21 unit tests pass, including ICloudSyncPremiumIsolationTests. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BkanrydYtrme8wipTzWssG
39 lines
1.1 KiB
Swift
39 lines
1.1 KiB
Swift
import Foundation
|
|
import SwiftData
|
|
|
|
// CloudKit-compatible (2.0): no unique constraints, inline defaults everywhere,
|
|
// and the relationship stored as optional (CloudKit requires it). `slots` keeps
|
|
// its name so existing stores lightweight-migrate; use `slotList` in code.
|
|
@Model
|
|
final class WeekPlan {
|
|
var id: UUID = UUID()
|
|
var weekStartDate: Date = Date()
|
|
var createdAt: Date = Date()
|
|
var updatedAt: Date = Date()
|
|
var userRating: Int = 0 // 0 = unrated, 1 = liked, -1 = disliked
|
|
|
|
@Relationship(deleteRule: .cascade)
|
|
var slots: [MealSlot]? = []
|
|
|
|
/// Non-optional facade over the CloudKit-required optional relationship.
|
|
var slotList: [MealSlot] {
|
|
get { slots ?? [] }
|
|
set { slots = newValue }
|
|
}
|
|
|
|
init(
|
|
id: UUID = UUID(),
|
|
weekStartDate: Date,
|
|
slots: [MealSlot] = [],
|
|
createdAt: Date = Date(),
|
|
updatedAt: Date = Date()
|
|
) {
|
|
self.id = id
|
|
self.weekStartDate = weekStartDate
|
|
self.slots = slots
|
|
self.createdAt = createdAt
|
|
self.updatedAt = updatedAt
|
|
self.userRating = 0
|
|
}
|
|
}
|