Feed tab: Replaced news/transaction feed with league-wide highlights and condensed game replays. FeedViewModel now fetches highlights from all games concurrently, splits into condensed games vs individual highlights. Cards show team color thumbnails with play button overlay. Today tab: Removed duplicate Live games shelf — LiveSituationBar already shows all live games at the top, so the shelf was redundant. Intel tab: Removed schedule section (already on Today tab). Updated header description and stat pills. Added division hydration to standings API call so division names display correctly instead of "Division". Focus: Added .platformFocusable() to standings cards and leaderboard cards so tvOS remote can scroll horizontally through them. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
109 lines
3.5 KiB
Swift
109 lines
3.5 KiB
Swift
import Foundation
|
|
import Observation
|
|
import OSLog
|
|
|
|
private let feedLogger = Logger(subsystem: "com.treyt.mlbTVOS", category: "Feed")
|
|
|
|
private func logFeed(_ message: String) {
|
|
feedLogger.debug("\(message, privacy: .public)")
|
|
print("[Feed] \(message)")
|
|
}
|
|
|
|
struct HighlightItem: Identifiable, Sendable {
|
|
let id: String
|
|
let headline: String
|
|
let gameTitle: String
|
|
let awayCode: String
|
|
let homeCode: String
|
|
let hlsURL: URL?
|
|
let mp4URL: URL?
|
|
let isCondensedGame: Bool
|
|
}
|
|
|
|
@Observable
|
|
@MainActor
|
|
final class FeedViewModel {
|
|
var highlights: [HighlightItem] = []
|
|
var isLoading = false
|
|
|
|
@ObservationIgnored
|
|
private var refreshTask: Task<Void, Never>?
|
|
|
|
private let serverAPI = MLBServerAPI()
|
|
|
|
func loadHighlights(games: [Game]) async {
|
|
isLoading = true
|
|
logFeed("loadHighlights start gameCount=\(games.count)")
|
|
|
|
let gamesWithPk = games.filter { $0.gamePk != nil }
|
|
|
|
// Fetch highlights for all games concurrently
|
|
await withTaskGroup(of: [HighlightItem].self) { group in
|
|
for game in gamesWithPk {
|
|
group.addTask { [serverAPI] in
|
|
do {
|
|
let raw = try await serverAPI.fetchHighlights(
|
|
gamePk: game.gamePk!,
|
|
gameDate: game.gameDate
|
|
)
|
|
return raw.compactMap { highlight -> HighlightItem? in
|
|
guard let headline = highlight.headline,
|
|
let hlsStr = highlight.hlsURL ?? highlight.mp4URL,
|
|
let _ = URL(string: hlsStr) else { return nil }
|
|
|
|
let isCondensed = headline.lowercased().contains("condensed")
|
|
|| headline.lowercased().contains("recap")
|
|
|
|
return HighlightItem(
|
|
id: highlight.id ?? UUID().uuidString,
|
|
headline: headline,
|
|
gameTitle: "\(game.awayTeam.code) @ \(game.homeTeam.code)",
|
|
awayCode: game.awayTeam.code,
|
|
homeCode: game.homeTeam.code,
|
|
hlsURL: highlight.hlsURL.flatMap(URL.init),
|
|
mp4URL: highlight.mp4URL.flatMap(URL.init),
|
|
isCondensedGame: isCondensed
|
|
)
|
|
}
|
|
} catch {
|
|
return []
|
|
}
|
|
}
|
|
}
|
|
|
|
var allHighlights: [HighlightItem] = []
|
|
for await batch in group {
|
|
allHighlights.append(contentsOf: batch)
|
|
}
|
|
highlights = allHighlights
|
|
}
|
|
|
|
isLoading = false
|
|
logFeed("loadHighlights complete count=\(highlights.count)")
|
|
}
|
|
|
|
var condensedGames: [HighlightItem] {
|
|
highlights.filter(\.isCondensedGame)
|
|
}
|
|
|
|
var latestHighlights: [HighlightItem] {
|
|
highlights.filter { !$0.isCondensedGame }
|
|
}
|
|
|
|
func startAutoRefresh(games: [Game]) {
|
|
stopAutoRefresh()
|
|
refreshTask = Task { [weak self] in
|
|
while !Task.isCancelled {
|
|
try? await Task.sleep(for: .seconds(300))
|
|
guard !Task.isCancelled, let self else { break }
|
|
await self.loadHighlights(games: games)
|
|
}
|
|
}
|
|
}
|
|
|
|
func stopAutoRefresh() {
|
|
refreshTask?.cancel()
|
|
refreshTask = nil
|
|
}
|
|
}
|