summaryrefslogtreecommitdiff
path: root/Jel/Views/Item/Person/ItemPersonIconView.swift
blob: 5b4c33ca89ba92ec022dff70f477f78c7c06af30 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//
//  ItemPersonIconView.swift
//  Jel
//
//  Created by zerocool on 1/8/24.
//

import SwiftUI
import JellyfinKit
import NukeUI

struct ItemPersonIconPlaceholderView: View {
  var body: some View {
    ZStack {
      Color(uiColor: UIColor.secondarySystemBackground)
      Image(systemName: "person.fill")
        .resizable()
        .aspectRatio(contentMode: .fit)
        .padding()
        .foregroundStyle(Color(uiColor: UIColor.secondarySystemFill))
    }
    .frame(height: 150)
    .clipShape(RoundedRectangle(cornerRadius: 5))
  }
}

struct ItemPersonIconView: View {
  @ObservedObject var authState: AuthStateController = AuthStateController.shared
  @EnvironmentObject var jellyfinClient: JellyfinClientController
  
  var person: BaseItemPerson
  
  @State var personImageUrl: URL?
  
  var body: some View {
    VStack {
      LazyImage(url: personImageUrl) {state in
        if let image = state.image {
          image
            .resizable()
            .aspectRatio(contentMode: .fit)
            .clipShape(RoundedRectangle(cornerRadius: 5))
        } else {
          ItemPersonIconPlaceholderView()
        }
      }
      .frame(height: 170)
      
      VStack(alignment: .leading) {
        Text(person.name ?? "---")
          .font(.footnote)
          .lineLimit(nil)
        Text(person.role ?? "---")
          .font(.caption)
          .foregroundStyle(Color(uiColor: UIColor.secondaryLabel))
          .fixedSize(horizontal: false, vertical: true)
          .lineLimit(nil)
      }
      .multilineTextAlignment(.leading)
    }
    .frame(width: 100)
    .onAppear {
      Task {
        let request = Paths.getItemImage(itemID: person.id ?? "", imageType: "Primary")
        
        let serverUrl = jellyfinClient.getUrl()
        personImageUrl = serverUrl?.appending(path: request.url?.absoluteString ?? "")
      }
    }
  }
}

//#Preview {
//    ItemPersonView()
//}