mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
227 lines
9.4 KiB
Swift
227 lines
9.4 KiB
Swift
//
|
|
// ActiveAppsWidget.swift
|
|
// AltWidgetExtension
|
|
//
|
|
// Created by Riley Testut on 8/16/23.
|
|
// Copyright © 2023 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import WidgetKit
|
|
|
|
private extension Color
|
|
{
|
|
static let altGradientLight = Color.init(.displayP3, red: 123.0/255.0, green: 200.0/255.0, blue: 176.0/255.0)
|
|
static let altGradientDark = Color.init(.displayP3, red: 0.0/255.0, green: 128.0/255.0, blue: 132.0/255.0)
|
|
|
|
static let altGradientExtraDark = Color.init(.displayP3, red: 2.0/255.0, green: 82.0/255.0, blue: 103.0/255.0)
|
|
}
|
|
|
|
//@available(iOS 17, *)
|
|
struct ActiveAppsWidget: Widget
|
|
{
|
|
// only constants/singleton what needs to be for the life of all widgets of ActiveAppsWidget type
|
|
// should be declared as instance or class fields for ActiveAppWidgets
|
|
|
|
// NOTE: The computed property (widget)body is recomputed/re-run for every
|
|
// 'type' refers to struct/class types and 'kind' refers to the tag which the widget is marked with
|
|
// multiple instances of same type or multiple types can be tagged with same 'kind'
|
|
// or each instance of same kind too, can be tagged as different(unique) 'kind'
|
|
// 1. widget-resizing(of same type)
|
|
// 2. new widget addition(of same type)
|
|
public var body: some WidgetConfiguration {
|
|
if #available(iOS 17, *)
|
|
{
|
|
let kind = "ActiveApps"
|
|
let widgetID = kind + "-" + UUID().uuidString
|
|
|
|
let holder = PaginationDataHolder.instance(widgetID)
|
|
let timelineProvider = AppsTimelineProvider(holder) // pass the holder
|
|
|
|
// each instance of this widget type is identified by unique 'kind' tag
|
|
// so that a reloadTimelineFor(kind:) will trigger reload only for that instance
|
|
let staticConfig = StaticConfiguration(
|
|
kind: widgetID,
|
|
provider: timelineProvider
|
|
) { entry in
|
|
// actual view of the widget
|
|
// this gets recreated for each trigger from the scheduled timeline entries provided by the timeline provider
|
|
// NOTE: widget views do not adhere to statefulness
|
|
// so, Combine constructs such as @State, @StateObject, @ObservedObject etc are simply ignored
|
|
ActiveAppsWidgetView(entry: entry, widgetID: widgetID)
|
|
}
|
|
.supportedFamilies([.systemMedium])
|
|
.configurationDisplayName("Active Apps")
|
|
.description("View remaining days until your active apps expire. Tap the countdown timers to refresh them in the background.")
|
|
|
|
return staticConfig
|
|
}
|
|
else
|
|
{
|
|
// Can't mark ActiveAppsWidget as requiring iOS 17 directly without causing crash on older versions.
|
|
// So instead we just return EmptyWidgetConfiguration pre-iOS 17.
|
|
return EmptyWidgetConfiguration()
|
|
}
|
|
}
|
|
}
|
|
|
|
@available(iOS 17, *)
|
|
private struct ActiveAppsWidgetView: View
|
|
{
|
|
var entry: AppsEntry
|
|
var widgetID: String
|
|
|
|
@Environment(\.colorScheme)
|
|
private var colorScheme
|
|
|
|
var body: some View {
|
|
Group {
|
|
if entry.apps.isEmpty
|
|
{
|
|
placeholder
|
|
}
|
|
else
|
|
{
|
|
content
|
|
}
|
|
}
|
|
.foregroundStyle(.white)
|
|
.containerBackground(for: .widget) {
|
|
if colorScheme == .dark
|
|
{
|
|
LinearGradient(colors: [.altGradientDark, .altGradientExtraDark], startPoint: .top, endPoint: .bottom)
|
|
}
|
|
else
|
|
{
|
|
LinearGradient(colors: [.altGradientLight, .altGradientDark], startPoint: .top, endPoint: .bottom)
|
|
}
|
|
}
|
|
}
|
|
|
|
private var content: some View {
|
|
GeometryReader { (geometry) in
|
|
|
|
let MAX_ROWS_PER_PAGE = PaginationDataHolder.MAX_ROWS_PER_PAGE
|
|
|
|
let preferredRowHeight = (geometry.size.height / Double(MAX_ROWS_PER_PAGE)) - 8
|
|
let rowHeight = min(preferredRowHeight, geometry.size.height / 2)
|
|
|
|
HStack(alignment: .center) {
|
|
LazyVStack(spacing: 12) {
|
|
ForEach(Array(entry.apps.enumerated()), id: \.offset) { index, app in
|
|
|
|
let icon: UIImage = app.icon ?? UIImage(named: "SideStore")!
|
|
|
|
// 1024x1024 images are not supported by previews but supported by device
|
|
// so we scale the image to 97% so as to reduce its actual size but not too much
|
|
// to somewhere below value, acceptable by previews ie < 1042x948
|
|
let scalingFactor = 0.97
|
|
|
|
let resizedSize = CGSize(
|
|
width: icon.size.width * scalingFactor,
|
|
height: icon.size.height * scalingFactor
|
|
)
|
|
|
|
let resizedIcon = icon.resizing(to: resizedSize)!
|
|
|
|
let daysRemaining = app.expirationDate.numberOfCalendarDays(since: entry.date)
|
|
let cornerRadius = rowHeight / 5.0
|
|
|
|
HStack(spacing: 10) {
|
|
Image(uiImage: resizedIcon)
|
|
.resizable()
|
|
.aspectRatio(contentMode: .fit)
|
|
.cornerRadius(cornerRadius)
|
|
|
|
VStack(alignment: .leading, spacing: 1) {
|
|
Text(app.name)
|
|
.font(.system(size: 15, weight: .semibold, design: .rounded))
|
|
|
|
let text = if entry.date > app.expirationDate
|
|
{
|
|
Text("Expired")
|
|
}
|
|
else
|
|
{
|
|
Text("Expires in \(daysRemaining) ") + (daysRemaining == 1 ? Text("day") : Text("days"))
|
|
}
|
|
|
|
text
|
|
.font(.system(size: 13, weight: .semibold, design: .rounded))
|
|
.foregroundStyle(.secondary)
|
|
}
|
|
|
|
Spacer()
|
|
|
|
Countdown(startDate: app.refreshedDate,
|
|
endDate: app.expirationDate,
|
|
currentDate: entry.date,
|
|
strokeWidth: 3.0) // Slightly thinner circle stroke width
|
|
.background {
|
|
Color.black.opacity(0.1)
|
|
.mask(Capsule())
|
|
.padding(.all, -5)
|
|
}
|
|
.font(.system(size: 16, weight: .semibold, design: .rounded))
|
|
// this modifier invalidates the view (disables userinteraction and shows a blinking effect)
|
|
// until new timeline events occur, unless a observable boolean state is presented as parameter
|
|
.invalidatableContent()
|
|
.activatesRefreshAllAppsIntent()
|
|
}
|
|
.frame(height: rowHeight)
|
|
}
|
|
}
|
|
|
|
Spacer(minLength: 16)
|
|
|
|
let buttonWidth: CGFloat = 16
|
|
VStack {
|
|
Image(systemName: "arrow.up")
|
|
.resizable()
|
|
.frame(width: buttonWidth, height: buttonWidth)
|
|
.opacity(0.3)
|
|
// .mask(Capsule())
|
|
.pageUpButton(widgetID)
|
|
|
|
Spacer()
|
|
|
|
Image(systemName: "arrow.down")
|
|
.resizable()
|
|
.frame(width: buttonWidth, height: buttonWidth)
|
|
.opacity(0.3)
|
|
// .mask(Capsule())
|
|
.pageDownButton(widgetID)
|
|
}
|
|
.padding(.vertical)
|
|
}
|
|
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
|
}
|
|
}
|
|
|
|
private var placeholder: some View {
|
|
Text("App Not Found")
|
|
.font(.system(.body, design: .rounded))
|
|
.fontWeight(.semibold)
|
|
.foregroundColor(Color.white.opacity(0.4))
|
|
}
|
|
}
|
|
|
|
@available(iOS 17, *)
|
|
#Preview(as: .systemMedium) {
|
|
return ActiveAppsWidget()
|
|
} timeline: {
|
|
let expiredDate = Date().addingTimeInterval(1 * 60 * 60 * 24 * 7)
|
|
let (altstore, delta, clip, longAltStore, longDelta, longClip) = AppSnapshot.makePreviewSnapshots()
|
|
|
|
AppsEntry(date: Date(), apps: [altstore, delta, clip])
|
|
AppsEntry(date: Date(), apps: [longAltStore, longDelta, longClip])
|
|
|
|
AppsEntry(date: expiredDate, apps: [altstore, delta, clip])
|
|
|
|
AppsEntry(date: Date(), apps: [altstore, delta])
|
|
AppsEntry(date: Date(), apps: [altstore])
|
|
|
|
AppsEntry(date: Date(), apps: [])
|
|
AppsEntry(date: Date(), apps: [], isPlaceholder: true)
|
|
}
|