Files
Reflect/Shared/views/SmallRollUpHeaderView.swift

106 lines
3.2 KiB
Swift

//
// SmallHeaderView.swift
// Feels (iOS)
//
// Created by Trey Tartt on 1/28/22.
//
import SwiftUI
enum SmallRollUpHeaderViewType {
case text
case circular
}
struct SmallRollUpHeaderView: View {
var entries = [(Mood, Int)]()
let backDays: Int
let type: SmallRollUpHeaderViewType
init(fakeData: Bool, backDays: Int, type: SmallRollUpHeaderViewType) {
self.type = type
self.backDays = backDays
var moodEntries: [MoodEntry]?
if fakeData {
moodEntries = PersistenceController.shared.randomEntries(count: 10)
} else {
var daysAgo = Calendar.current.date(byAdding: .day, value: -backDays, to: Date())!
daysAgo = Calendar.current.date(bySettingHour: 0, minute: 0, second: 0, of: daysAgo)!
moodEntries = PersistenceController.shared.getData(startDate: daysAgo, endDate: Date(), includedDays: [1,2,3,4,5,6,7])
}
if let moodEntries = moodEntries {
for (_, mood) in Mood.allValues.enumerated() {
entries.append((mood, moodEntries.filter({
Int($0.moodValue) == mood.rawValue
}).count))
}
}
entries = entries.sorted(by: {
$0.0.rawValue > $1.0.rawValue
})
}
private var textViews: some View {
HStack {
ForEach(entries, id: \.0) { (mood, value) in
Text(String(value))
.font(.title)
.fontWeight(.bold)
.foregroundColor(mood.color)
.frame(maxWidth: .infinity)
}
}
}
private var circularViews: some View {
HStack {
ForEach(entries, id: \.0) { (mood, value) in
ZStack {
Circle().fill(mood.color)
.frame(width: 50, height: 50)
Text(String(value))
.font(.title)
.fontWeight(.bold)
.frame(maxWidth: 50)
.foregroundColor(Color(UIColor.white))
.scaledToFill()
.minimumScaleFactor(0.5)
.lineLimit(1)
}
.padding([.leading, .trailing], 5)
}
}
}
var body: some View {
VStack {
switch self.type {
case .text:
textViews
.padding([.trailing, .leading, .top])
case .circular:
circularViews
.padding([.trailing, .leading, .top])
}
Text(String(format: String(localized: "content_view_header_title"), self.backDays))
.font(.body)
.foregroundColor(Color(UIColor.systemGray))
.frame(maxWidth: .infinity, alignment: .center)
.padding(.top, 1)
}
}
}
struct SmallHeaderView_Previews: PreviewProvider {
static var previews: some View {
SmallRollUpHeaderView(fakeData: true, backDays: 30, type: .text)
SmallRollUpHeaderView(fakeData: true, backDays: 30, type: .circular)
}
}