summaryrefslogtreecommitdiff
path: root/Jel/Views/Item/Person/ItemPeopleView.swift
blob: f007796178d0a842e2bba3850d16f98711132d90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//
//  ItemPeopleView.swift
//  Jel
//
//  Created by zerocool on 1/8/24.
//

import SwiftUI
import JellyfinKit
import NukeUI

struct ItemPeopleView: View {
  
  var item: BaseItemDto
  
  var body: some View {
    VStack(alignment: .leading) {
      Text("Cast and Crew")
        .font(.title2)
        .padding(.leading)
      
      ScrollView(.horizontal) {
        // FIXME: For some reason, a LazyHStack clips the text for this view
        HStack(alignment: .top) {
          ForEach(item.people ?? [], id: \.iterId) {person in
            NavigationLink {
              VStack {
                ItemPersonIconView(person: person)
                Text("Subview")
              }
              .navigationTitle(person.name ?? "Unnamed")
            } label: {
              ItemPersonIconView(person: person)
            }
          }
        }
        .padding(.horizontal)
      }
      .scrollIndicators(.hidden)
    }
  }
}

//#Preview {
//    ItemPeopleView()
//}