- Replace Core Data with SwiftData for iOS 18+ - Create MoodEntryModel as @Model class replacing MoodEntry entity - Create SharedModelContainer for App Group container sharing - Create DataController with CRUD extensions replacing PersistenceController - Update all views and view models to use MoodEntryModel - Update widget extension to use SwiftData - Remove old Core Data files (Persistence*.swift, .xcdatamodeld) - Add EntryType enum with all entry type cases - Fix widget label truncation with proper spacing and text scaling 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
77 lines
3.1 KiB
Swift
77 lines
3.1 KiB
Swift
//
|
|
// AppDelegate.swift
|
|
// Feels (iOS)
|
|
//
|
|
// Created by Trey Tartt on 1/10/22.
|
|
//
|
|
|
|
import Foundation
|
|
import UserNotifications
|
|
import UIKit
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
class AppDelegate: NSObject, UIApplicationDelegate {
|
|
private let savedOnboardingData = UserDefaultsStore.getOnboarding()
|
|
@AppStorage(UserDefaultsStore.Keys.textColor.rawValue, store: GroupUserDefaults.groupDefaults) private var textColor: Color = DefaultTextColor.textColor
|
|
|
|
@MainActor
|
|
func application(_ application: UIApplication, willFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
|
|
DataController.shared.removeNoForDates()
|
|
DataController.shared.fillInMissingDates()
|
|
UNUserNotificationCenter.current().delegate = self
|
|
|
|
UIPageControl.appearance().currentPageIndicatorTintColor = UIColor(textColor)
|
|
UIPageControl.appearance().pageIndicatorTintColor = UIColor.systemGray
|
|
|
|
let appearance = UITabBarAppearance()
|
|
appearance.configureWithOpaqueBackground()
|
|
UITabBar.appearance().standardAppearance = appearance
|
|
UITabBar.appearance().scrollEdgeAppearance = appearance
|
|
|
|
EventLogger.log(event: "app_launced")
|
|
|
|
return true
|
|
}
|
|
|
|
@MainActor
|
|
func applicationWillEnterForeground(_ application: UIApplication) {
|
|
DataController.shared.fillInMissingDates()
|
|
|
|
// reschedule notifications so there's a new title next notification
|
|
LocalNotification.rescheduleNotifiations()
|
|
|
|
EventLogger.log(event: "app_foregorund")
|
|
}
|
|
}
|
|
|
|
extension AppDelegate: UNUserNotificationCenterDelegate {
|
|
func requestAuthorization() { }
|
|
|
|
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
|
|
completionHandler([.badge, .banner, .sound])
|
|
}
|
|
|
|
@MainActor
|
|
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
|
|
if let action = LocalNotification.ActionType(rawValue: response.actionIdentifier) {
|
|
let date = ShowBasedOnVoteLogics.getCurrentVotingDate(onboardingData: savedOnboardingData)
|
|
switch action {
|
|
case .horrible:
|
|
DataController.shared.add(mood: .horrible, forDate: date, entryType: .notification)
|
|
case .bad:
|
|
DataController.shared.add(mood: .bad, forDate: date, entryType: .notification)
|
|
case .average:
|
|
DataController.shared.add(mood: .average, forDate: date, entryType: .notification)
|
|
case .good:
|
|
DataController.shared.add(mood: .good, forDate: date, entryType: .notification)
|
|
case .great:
|
|
DataController.shared.add(mood: .great, forDate: date, entryType: .notification)
|
|
}
|
|
UIApplication.shared.applicationIconBadgeNumber = 0
|
|
}
|
|
WidgetCenter.shared.reloadAllTimelines()
|
|
completionHandler()
|
|
}
|
|
}
|