mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-22 08:20:59 +00:00
6297a428a3
* Compile on iOS 18
* Fix more warnings
* Tweak build settings
* Migrate to Swift Tests
* better tests
* Fix
* Fix tests
* More TabView cleanup
Bump to iOS 18 only + remove custom sidebar
* Revert "More TabView cleanup"
This reverts commit e051437fcb
.
* Tabbar fix + bump to iOS 18
* Remove popToRoot
* Cleanup scrollToTop
* Support both TapBar
* Better TabView support
* Better TabView support
* Cleanup
* Disable TabView animations
* Remove id in ForEach
* Remove external init for StatusRowView
* Cleanup
* More Swift 6 concurrency
* Swift 6 mode
* Fixes
* Full Swift 6 packages support
* For now compile env in Swift 5 mode
* Fix archive
* More fix to Archive
* Address `dispatch_assert_queue_fail` (#2161)
See https://twitter.com/dimillian/status/1823089444397724003?s=61&t=SC3rvyJQWn1NQqAgMVrT0Q
* Bump Env to Swift 6
* Fix push notification
* Remove unecessary workaround
* Cleanup
* Move to @Entry
* Fix TabView on Catalyst
* Fix build
* Fix build 2
* fix warning
* Fix icons for iOS 18
---------
Co-authored-by: NachoSoto <NachoSoto@users.noreply.github.com>
88 lines
3.4 KiB
Swift
88 lines
3.4 KiB
Swift
import DesignSystem
|
|
import Models
|
|
import Network
|
|
import SwiftUI
|
|
import Timeline
|
|
import WidgetKit
|
|
|
|
struct MentionsWidgetProvider: AppIntentTimelineProvider {
|
|
func placeholder(in _: Context) -> PostsWidgetEntry {
|
|
.init(date: Date(),
|
|
title: "Mentions",
|
|
statuses: [.placeholder()],
|
|
images: [:])
|
|
}
|
|
|
|
func snapshot(for configuration: MentionsWidgetConfiguration, in context: Context) async -> PostsWidgetEntry {
|
|
if let entry = await timeline(for: configuration, context: context).entries.first {
|
|
return entry
|
|
}
|
|
return .init(date: Date(),
|
|
title: "Mentions",
|
|
statuses: [],
|
|
images: [:])
|
|
}
|
|
|
|
func timeline(for configuration: MentionsWidgetConfiguration, in context: Context) async -> Timeline<PostsWidgetEntry> {
|
|
await timeline(for: configuration, context: context)
|
|
}
|
|
|
|
private func timeline(for configuration: MentionsWidgetConfiguration, context _: Context) async -> Timeline<PostsWidgetEntry> {
|
|
do {
|
|
guard let account = configuration.account else {
|
|
return Timeline(entries: [.init(date: Date(),
|
|
title: "Mentions",
|
|
statuses: [],
|
|
images: [:])],
|
|
policy: .atEnd)
|
|
}
|
|
let client = Client(server: account.account.server,
|
|
oauthToken: account.account.oauthToken)
|
|
var excludedTypes = Models.Notification.NotificationType.allCases
|
|
excludedTypes.removeAll(where: { $0 == .mention })
|
|
let notifications: [Models.Notification] =
|
|
try await client.get(endpoint: Notifications.notifications(minId: nil,
|
|
maxId: nil,
|
|
types: excludedTypes.map(\.rawValue),
|
|
limit: 5))
|
|
let statuses = notifications.compactMap { $0.status }
|
|
let images = try await loadImages(urls: statuses.map { $0.account.avatar })
|
|
return Timeline(entries: [.init(date: Date(),
|
|
title: "Mentions",
|
|
statuses: statuses,
|
|
images: images)], policy: .atEnd)
|
|
} catch {
|
|
return Timeline(entries: [.init(date: Date(),
|
|
title: "Mentions",
|
|
statuses: [],
|
|
images: [:])],
|
|
policy: .atEnd)
|
|
}
|
|
}
|
|
}
|
|
|
|
struct MentionsWidget: Widget {
|
|
let kind: String = "MentionsWidget"
|
|
|
|
var body: some WidgetConfiguration {
|
|
AppIntentConfiguration(kind: kind,
|
|
intent: MentionsWidgetConfiguration.self,
|
|
provider: MentionsWidgetProvider())
|
|
{ entry in
|
|
PostsWidgetView(entry: entry)
|
|
.containerBackground(Color("WidgetBackground").gradient, for: .widget)
|
|
}
|
|
.configurationDisplayName("Mentions")
|
|
.description("Show the latest mentions for the selected account.")
|
|
.supportedFamilies([.systemLarge, .systemExtraLarge])
|
|
}
|
|
}
|
|
|
|
#Preview(as: .systemMedium) {
|
|
MentionsWidget()
|
|
} timeline: {
|
|
PostsWidgetEntry(date: .now,
|
|
title: "Mentions",
|
|
statuses: [.placeholder(), .placeholder(), .placeholder(), .placeholder()],
|
|
images: [:])
|
|
}
|