2020-11-18 03:49:12 +01:00
|
|
|
//
|
|
|
|
// TodayWidget.swift
|
|
|
|
// NetNewsWire Widget Extension
|
|
|
|
//
|
|
|
|
// Created by Stuart Breckenridge on 18/11/20.
|
|
|
|
// Copyright © 2020 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import WidgetKit
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct TodayWidgetView : View {
|
|
|
|
|
|
|
|
@Environment(\.widgetFamily) var family: WidgetFamily
|
2020-12-24 01:45:07 +01:00
|
|
|
@Environment(\.sizeCategory) var sizeCategory: ContentSizeCategory
|
2020-11-18 03:49:12 +01:00
|
|
|
|
|
|
|
var entry: Provider.Entry
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
if entry.widgetData.todayArticles.count == 0 {
|
|
|
|
inboxZero
|
2020-11-30 08:41:15 +01:00
|
|
|
.widgetURL(WidgetDeepLink.today.url)
|
2020-11-18 03:49:12 +01:00
|
|
|
}
|
|
|
|
else {
|
2020-11-23 03:35:25 +01:00
|
|
|
GeometryReader { metrics in
|
|
|
|
HStack(alignment: .top, spacing: 4) {
|
2020-12-23 14:16:32 +01:00
|
|
|
VStack(alignment: .leading, spacing: -4) {
|
2020-11-18 03:49:12 +01:00
|
|
|
todayImage
|
|
|
|
Spacer()
|
2020-12-15 12:56:50 +01:00
|
|
|
Text(L10n.localizedCount(entry.widgetData.currentTodayCount)).bold().font(.callout).minimumScaleFactor(0.5).lineLimit(1)
|
2020-11-23 03:35:25 +01:00
|
|
|
Text(L10n.today.lowercased()).bold().font(Font.system(.footnote).lowercaseSmallCaps()).minimumScaleFactor(0.5).lineLimit(1)
|
2020-11-18 03:49:12 +01:00
|
|
|
}
|
2020-11-23 03:35:25 +01:00
|
|
|
.frame(width: metrics.size.width * 0.15)
|
|
|
|
.padding(.trailing, 4)
|
|
|
|
|
|
|
|
VStack(alignment:.leading, spacing: 0) {
|
2020-11-18 03:49:12 +01:00
|
|
|
ForEach(0..<maxCount(), content: { i in
|
2020-11-23 03:35:25 +01:00
|
|
|
if i != 0 {
|
2020-11-23 04:21:19 +01:00
|
|
|
Divider()
|
2020-11-23 03:35:25 +01:00
|
|
|
ArticleItemView(article: entry.widgetData.todayArticles[i],
|
|
|
|
deepLink: WidgetDeepLink.todayArticle(id: entry.widgetData.todayArticles[i].id).url)
|
2020-11-29 10:12:53 +01:00
|
|
|
.padding(.top, 8)
|
|
|
|
.padding(.bottom, 4)
|
2020-11-23 03:35:25 +01:00
|
|
|
} else {
|
|
|
|
ArticleItemView(article: entry.widgetData.unreadArticles[i],
|
|
|
|
deepLink: WidgetDeepLink.todayArticle(id: entry.widgetData.todayArticles[i].id).url)
|
|
|
|
.padding(.bottom, 4)
|
|
|
|
}
|
|
|
|
|
2020-11-18 03:49:12 +01:00
|
|
|
})
|
|
|
|
Spacer()
|
2020-11-23 03:35:25 +01:00
|
|
|
}.padding(.leading, 4)
|
|
|
|
}.padding()
|
2020-11-30 08:41:15 +01:00
|
|
|
}.widgetURL(WidgetDeepLink.today.url)
|
2020-11-18 03:49:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var todayImage: some View {
|
|
|
|
Image(systemName: "sun.max.fill")
|
|
|
|
.resizable()
|
2020-12-24 01:50:45 +01:00
|
|
|
.frame(width: 30, height: 30, alignment: .center)
|
2020-11-18 03:49:12 +01:00
|
|
|
.cornerRadius(4)
|
|
|
|
.foregroundColor(.orange)
|
|
|
|
}
|
|
|
|
|
|
|
|
func maxCount() -> Int {
|
2020-12-24 01:45:07 +01:00
|
|
|
var reduceAccessibilityCount: Int = 0
|
|
|
|
if SizeCategories().isSizeCategoryLarge(category: sizeCategory) {
|
|
|
|
reduceAccessibilityCount = 1
|
|
|
|
}
|
|
|
|
|
2020-11-18 08:43:14 +01:00
|
|
|
if family == .systemLarge {
|
2020-12-24 01:45:07 +01:00
|
|
|
return entry.widgetData.todayArticles.count >= 7 ? (7 - reduceAccessibilityCount) : entry.widgetData.todayArticles.count
|
2020-11-18 08:43:14 +01:00
|
|
|
}
|
2020-12-24 01:45:07 +01:00
|
|
|
return entry.widgetData.todayArticles.count >= 3 ? (3 - reduceAccessibilityCount) : entry.widgetData.todayArticles.count
|
2020-11-18 03:49:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var inboxZero: some View {
|
2020-12-15 12:56:50 +01:00
|
|
|
VStack(alignment: .center) {
|
2020-11-18 03:49:12 +01:00
|
|
|
Spacer()
|
2020-12-15 12:56:50 +01:00
|
|
|
Image(systemName: "sun.max.fill")
|
|
|
|
.resizable()
|
|
|
|
.aspectRatio(contentMode: .fit)
|
|
|
|
.frame(width: 30)
|
|
|
|
.foregroundColor(.orange)
|
|
|
|
|
|
|
|
|
|
|
|
Text(L10n.todayWidgetNoItemsTitle)
|
|
|
|
.font(.headline)
|
|
|
|
.foregroundColor(.primary)
|
2020-11-18 03:49:12 +01:00
|
|
|
|
2020-12-15 12:56:50 +01:00
|
|
|
Text(L10n.todayWidgetNoItems)
|
|
|
|
.font(.caption)
|
|
|
|
.foregroundColor(.gray)
|
2020-11-18 03:49:12 +01:00
|
|
|
Spacer()
|
2020-12-15 12:56:50 +01:00
|
|
|
}
|
|
|
|
.multilineTextAlignment(.center)
|
|
|
|
.padding()
|
2020-11-18 03:49:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|