ydnabApp.swift 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //
  2. // ydnabApp.swift
  3. // ydnab
  4. //
  5. // Created by Andrea Franceschini on 20/09/2020.
  6. //
  7. import UIKit
  8. import SwiftUI
  9. import os.log
  10. class AppDelegate : NSObject, UIApplicationDelegate {
  11. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
  12. let applicationSupportURL = FileManager.default.urls(for: .applicationSupportDirectory, in: .userDomainMask)[0]
  13. #if DEBUG
  14. print(applicationSupportURL.path)
  15. #endif
  16. guard !applicationSupportURL.path.isEmpty else {
  17. print("Couldn't find Application Support path... something is wrong here.")
  18. // TODO Crash
  19. return false
  20. }
  21. let budgetsListURL = URL(fileURLWithPath: "Budgets.json", relativeTo: applicationSupportURL)
  22. if !FileManager.default.fileExists(atPath: budgetsListURL.path) {
  23. // TODO Run onboarding, create first budget
  24. let budget: [BudgetSection] = [
  25. BudgetSection(name: "Everyday Expenses", categories: [
  26. BudgetCategory(name: "Groceries"),
  27. BudgetCategory(name: "Eating out"),
  28. BudgetCategory(name: "Medical"),
  29. BudgetCategory(name: "Clothing"),
  30. BudgetCategory(name: "Household goods")
  31. ]),
  32. BudgetSection(name: "Travel", categories: [
  33. BudgetCategory(name: "Transport"),
  34. BudgetCategory(name: "Fuel"),
  35. BudgetCategory(name: "Accommodation")
  36. ]),
  37. BudgetSection(name: "Rainy Days", categories: [
  38. BudgetCategory(name: "Emergencies"),
  39. BudgetCategory(name: "Car insurance")
  40. ]),
  41. BudgetSection(name: "Monthly Expenses", categories: [
  42. BudgetCategory(name: "Rent"),
  43. BudgetCategory(name: "Mobile")
  44. ]),
  45. BudgetSection(name: "Savings Goals", categories: [
  46. BudgetCategory(name: "Savings"),
  47. BudgetCategory(name: "Holidays")
  48. ])
  49. ]
  50. let budgetsList: BudgetsList = [
  51. BudgetInfo(name: "Default Budget",
  52. localeIdentifier: "en-us",
  53. sections: budget)
  54. ]
  55. let jsonBudget: Data
  56. do {
  57. jsonBudget = try JSONEncoder().encode(budgetsList)
  58. try jsonBudget.write(to: budgetsListURL)
  59. } catch {
  60. print("Couldn't encode budgets list.")
  61. print("Error: \(error)")
  62. // TODO Crash?
  63. return false
  64. }
  65. }
  66. return true
  67. }
  68. }
  69. @main
  70. struct ydnabApp: App {
  71. let persistenceController = PersistenceController.shared
  72. @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
  73. @Environment(\.scenePhase) private var scenePhase
  74. @AppStorage("lastLoadedBudgetId") private var lastLoadedBudgetId = ""
  75. var body: some Scene {
  76. WindowGroup {
  77. NavigationView {
  78. BudgetsListView(currentBudgetId: UUID(uuidString: lastLoadedBudgetId))
  79. }
  80. }
  81. .onChange(of: scenePhase) { phase in
  82. print(phase)
  83. }
  84. }
  85. }