Yattee v2 rewrite

This commit is contained in:
Arkadiusz Fal
2026-02-08 18:31:16 +01:00
parent 20d0cfc0c7
commit 05f921d605
1043 changed files with 163875 additions and 68430 deletions

View File

@@ -0,0 +1,17 @@
//
// CommentsLoadState.swift
// Yattee
//
// Comments loading state definitions.
//
import Foundation
enum CommentsLoadState: Equatable {
case idle
case loading
case loaded
case loadingMore
case disabled
case error
}

View File

@@ -0,0 +1,15 @@
//
// VideoDetailsLoadState.swift
// Yattee
//
// Video details loading state definitions.
//
import Foundation
enum VideoDetailsLoadState: Equatable {
case idle // No video loaded
case loading // Fetching full details from API
case loaded // Full details available
case error // Failed to load details
}