blob: 9f8cd1506aabf59923919a61f42f9b8141188c49 (
plain) (
blame)
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
76
77
78
79
80
81
82
83
84
85
|
import SwiftUI
struct RepositoryRowView: View {
let repository: RepositorySummary
var body: some View {
VStack(alignment: .leading, spacing: 4) {
HStack(alignment: .firstTextBaseline) {
Text(repository.name)
.font(.headline)
Spacer()
if repository.service == .hg {
Text("HG")
.font(.caption2.weight(.medium))
.padding(.horizontal, 6)
.padding(.vertical, 2)
.background(Color.cyan.opacity(0.15), in: Capsule())
.foregroundStyle(.cyan)
}
VisibilityBadge(visibility: repository.visibility)
}
Text(repository.owner.canonicalName)
.font(.subheadline)
.foregroundStyle(.secondary)
if let description = repository.description,
!description.isEmpty {
Text(description)
.font(.subheadline)
.foregroundStyle(.secondary)
.lineLimit(2)
}
HStack(spacing: 12) {
if let head = repository.head {
Label(head.name, systemImage: "arrow.triangle.branch")
.font(.caption)
.foregroundStyle(.secondary)
}
Spacer()
Text(repository.updated.relativeDescription)
.font(.caption)
.foregroundStyle(.tertiary)
}
}
.padding(.vertical, 2)
}
}
// MARK: - VisibilityBadge
struct VisibilityBadge: View {
let visibility: Visibility
var body: some View {
Text(label)
.font(.caption2.weight(.medium))
.padding(.horizontal, 6)
.padding(.vertical, 2)
.background(color.opacity(0.15), in: Capsule())
.foregroundStyle(color)
}
private var label: String {
switch visibility {
case .public: "PUBLIC"
case .unlisted: "UNLISTED"
case .private: "PRIVATE"
}
}
private var color: Color {
switch visibility {
case .public: .green
case .unlisted: .orange
case .private: .red
}
}
}
|