feat(creator): 라이브 탭 기반을 추가한다

This commit is contained in:
Yu Sung
2026-07-03 23:53:08 +09:00
parent 03d286e8a9
commit ce923ab2d7
11 changed files with 944 additions and 3 deletions

View File

@@ -0,0 +1,24 @@
import Foundation
enum ContentSort: String, Decodable, CaseIterable, Hashable {
case latest = "LATEST"
case popular = "POPULAR"
case owned = "OWNED"
case priceHigh = "PRICE_HIGH"
case priceLow = "PRICE_LOW"
var title: String {
switch self {
case .latest:
return I18n.CreatorChannelLive.Sort.latest
case .popular:
return I18n.CreatorChannelLive.Sort.popular
case .owned:
return I18n.CreatorChannelLive.Sort.owned
case .priceHigh:
return I18n.CreatorChannelLive.Sort.priceHigh
case .priceLow:
return I18n.CreatorChannelLive.Sort.priceLow
}
}
}