108 lines
2.7 KiB
Swift
108 lines
2.7 KiB
Swift
//
|
|
// SmartFeedSummaryWidget.swift
|
|
// NetNewsWire Widget Extension
|
|
//
|
|
// Created by Stuart Breckenridge on 18/11/20.
|
|
// Copyright © 2020 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
|
|
struct SmartFeedSummaryWidgetView: View {
|
|
|
|
@Environment(\.widgetFamily) var family: WidgetFamily
|
|
|
|
var entry: Provider.Entry
|
|
|
|
var body: some View {
|
|
smallWidget
|
|
.widgetURL(WidgetDeepLink.icon.url)
|
|
}
|
|
|
|
@ViewBuilder
|
|
var smallWidget: some View {
|
|
VStack(alignment: .leading) {
|
|
Spacer()
|
|
Link(destination: WidgetDeepLink.today.url, label: {
|
|
HStack {
|
|
todayImage
|
|
VStack(alignment: .leading, spacing: nil, content: {
|
|
Text(formattedCount(entry.widgetData.currentTodayCount)).font(Font.system(.caption, design: .rounded)).bold()
|
|
Text(L10n.today).bold().font(.caption).textCase(.uppercase)
|
|
}).foregroundColor(.white)
|
|
Spacer()
|
|
}
|
|
})
|
|
|
|
Link(destination: WidgetDeepLink.unread.url, label: {
|
|
HStack {
|
|
unreadImage
|
|
VStack(alignment: .leading, spacing: nil, content: {
|
|
Text(formattedCount(entry.widgetData.currentUnreadCount)).font(Font.system(.caption, design: .rounded)).bold()
|
|
Text(L10n.unread).bold().font(.caption).textCase(.uppercase)
|
|
}).foregroundColor(.white)
|
|
Spacer()
|
|
}
|
|
})
|
|
|
|
Link(destination: WidgetDeepLink.starred.url, label: {
|
|
HStack {
|
|
starredImage
|
|
VStack(alignment: .leading, spacing: nil, content: {
|
|
Text(formattedCount(entry.widgetData.currentStarredCount)).font(Font.system(.caption, design: .rounded)).bold()
|
|
Text(L10n.starred).bold().font(.caption).textCase(.uppercase)
|
|
}).foregroundColor(.white)
|
|
Spacer()
|
|
}
|
|
})
|
|
Spacer()
|
|
}.padding()
|
|
}
|
|
|
|
func formattedCount(_ count: Int) -> String {
|
|
let formatter = NumberFormatter()
|
|
formatter.locale = Locale.current
|
|
formatter.numberStyle = .decimal
|
|
return formatter.string(from: NSNumber(value: count))!
|
|
}
|
|
|
|
var unreadImage: some View {
|
|
Image(systemName: "largecircle.fill.circle")
|
|
.resizable()
|
|
.frame(width: 20, height: 20, alignment: .center)
|
|
.foregroundColor(.white)
|
|
}
|
|
|
|
var nnwImage: some View {
|
|
Image("CornerIcon")
|
|
.resizable()
|
|
.frame(width: 20, height: 20, alignment: .center)
|
|
.cornerRadius(4)
|
|
}
|
|
|
|
var starredImage: some View {
|
|
Image(systemName: "star.fill")
|
|
.resizable()
|
|
.frame(width: 20, height: 20, alignment: .center)
|
|
.foregroundColor(.white)
|
|
}
|
|
|
|
var todayImage: some View {
|
|
Image(systemName: "sun.max.fill")
|
|
.resizable()
|
|
.frame(width: 20, height: 20, alignment: .center)
|
|
.foregroundColor(.white)
|
|
}
|
|
|
|
}
|
|
|
|
|
|
struct SmartFeedSummaryWidgetView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
|
SmartFeedSummaryWidgetView(entry: Provider.Entry.init(date: Date(), widgetData: WidgetDataDecoder.sampleData()))
|
|
}
|
|
}
|