|
@@ -46,6 +46,7 @@ struct BudgetSectionCell: View {
|
|
|
|
|
|
struct YearAndMonthPicker: View {
|
|
|
@Binding var month: Int
|
|
|
+ @Binding var monthName: String
|
|
|
@Binding var year: Int
|
|
|
@State var locale: Locale
|
|
|
|
|
@@ -55,55 +56,72 @@ struct YearAndMonthPicker: View {
|
|
|
return c.monthSymbols
|
|
|
}
|
|
|
|
|
|
+ var columns: [GridItem] = [
|
|
|
+ GridItem(spacing: 8),
|
|
|
+ GridItem(spacing: 8),
|
|
|
+ GridItem(spacing: 8)
|
|
|
+ ]
|
|
|
+
|
|
|
var body: some View {
|
|
|
VStack {
|
|
|
HStack {
|
|
|
- Button(action: { print(self) }) {
|
|
|
+ Button(action: { year -= 1 }) {
|
|
|
Image(systemName: "chevron.backward.square")
|
|
|
.imageScale(.large)
|
|
|
}
|
|
|
Spacer()
|
|
|
- Text("\(year)").bold()
|
|
|
+ Text(String(year)).bold()
|
|
|
Spacer()
|
|
|
- Button(action: {}) {
|
|
|
+ Button(action: { year += 1 }) {
|
|
|
Image(systemName: "chevron.forward.square")
|
|
|
.imageScale(.large)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- LazyHGrid(rows: [GridItem(.flexible()), GridItem(.flexible()), GridItem(.flexible()), GridItem(.flexible())], alignment: .top, spacing: nil, pinnedViews: []) {
|
|
|
- ForEach(0..<monthNames.count) { i in
|
|
|
- Button(monthNames[i], action: { month = i+1 }).padding(40)
|
|
|
+ GeometryReader { geometry in
|
|
|
+ LazyVGrid(columns: columns, spacing: 4) {
|
|
|
+ ForEach(monthNames.indices) { i in
|
|
|
+ Button(action: {
|
|
|
+ month = i
|
|
|
+ monthName = monthNames[i]
|
|
|
+ }, label: {
|
|
|
+ Text(monthNames[i])
|
|
|
+ .frame(minWidth: geometry.size.width / 3,
|
|
|
+ idealWidth: geometry.size.width / 3,
|
|
|
+ maxWidth: geometry.size.width / 3,
|
|
|
+ minHeight: geometry.size.height / 4,
|
|
|
+ idealHeight: geometry.size.height / 4,
|
|
|
+ maxHeight: geometry.size.height / 4,
|
|
|
+ alignment: .center)
|
|
|
+ })
|
|
|
+ .background(month == i ? Color("bgActive") : Color("bgInactive"))
|
|
|
+ .foregroundColor(month == i ? Color.white : Color("AccentColor"))
|
|
|
}
|
|
|
-
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- .padding(.bottom, 11)
|
|
|
+ .padding(.bottom, 22)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
struct BudgetViewSummary: View {
|
|
|
@Binding var budget: BudgetInfo
|
|
|
@Binding var month: Int
|
|
|
+ @Binding var monthName: String
|
|
|
@Binding var year: Int
|
|
|
|
|
|
- @State private var showMonthPicker: Bool = true
|
|
|
+ @State private var showMonthPicker: Bool = false
|
|
|
|
|
|
var body: some View {
|
|
|
VStack {
|
|
|
HStack {
|
|
|
- Button("\(month)", action: { withAnimation() { showMonthPicker.toggle() } } )
|
|
|
+ Button("\(monthName) \(String(year))", action: { withAnimation() { showMonthPicker.toggle() } } )
|
|
|
Spacer()
|
|
|
}
|
|
|
.padding(.vertical, 11)
|
|
|
|
|
|
if showMonthPicker {
|
|
|
- YearAndMonthPicker(month: $month, year: $year, locale: Locale(identifier: budget.localeIdentifier))
|
|
|
+ YearAndMonthPicker(month: $month, monthName: $monthName, year: $year, locale: Locale(identifier: budget.localeIdentifier))
|
|
|
}
|
|
|
|
|
|
HStack {
|
|
@@ -120,10 +138,22 @@ struct BudgetView: View {
|
|
|
@State var budget: BudgetInfo
|
|
|
@Binding var currentBudgetId: UUID?
|
|
|
@State private var month: Int = 0
|
|
|
- @State private var year: Int = 0
|
|
|
+ @State private var monthName: String
|
|
|
+ @State private var year: Int = Calendar(identifier: .gregorian).component(.year, from: Date())
|
|
|
|
|
|
@AppStorage("lastLoadedBudgetId") private var lastLoadedBudgetId = ""
|
|
|
|
|
|
+ init(budget: BudgetInfo, currentBudgetId: Binding<UUID?>) {
|
|
|
+ _budget = .init(initialValue: budget)
|
|
|
+ _currentBudgetId = currentBudgetId
|
|
|
+ var cal = Calendar(identifier: .gregorian)
|
|
|
+ cal.locale = Locale(identifier: self._budget.wrappedValue.localeIdentifier)
|
|
|
+ let now = Date()
|
|
|
+ _month = .init(initialValue: cal.component(.month, from: now))
|
|
|
+ _monthName = .init(initialValue: cal.monthSymbols[self._month.wrappedValue])
|
|
|
+ _year = .init(initialValue: cal.component(.year, from: now))
|
|
|
+ }
|
|
|
+
|
|
|
func formatAmount(_ amount: NSNumber) -> String? {
|
|
|
let f = NumberFormatter()
|
|
|
f.locale = Locale(identifier: budget.localeIdentifier)
|
|
@@ -133,7 +163,7 @@ struct BudgetView: View {
|
|
|
|
|
|
var body: some View {
|
|
|
VStack {
|
|
|
- BudgetViewSummary(budget: $budget, month: $month, year: $year)
|
|
|
+ BudgetViewSummary(budget: $budget, month: $month, monthName: $monthName, year: $year)
|
|
|
.padding([.leading, .trailing], 16)
|
|
|
|
|
|
List {
|
|
@@ -210,6 +240,7 @@ struct BudgetView_Previews: PreviewProvider {
|
|
|
currentBudgetId: $currentBudgetId)
|
|
|
}
|
|
|
.preferredColorScheme(.light)
|
|
|
+
|
|
|
|
|
|
}
|
|
|
}
|