summaryrefslogtreecommitdiff
path: root/Hutch/Views/Pastes/PasteDetailView.swift
blob: df3a8be8189039212643ee6e02e787f2a7b2e2de (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
import SwiftUI

struct PasteDetailView: View {
    let paste: Paste
    var onUpdated: ((Paste) -> Void)? = nil
    var onDeleted: ((String) -> Void)? = nil

    @Environment(AppState.self) private var appState
    @Environment(\.dismiss) private var dismiss
    @State private var viewModel: PasteDetailViewModel?
    @State private var showVisibilitySheet = false
    @State private var showDeleteConfirmation = false

    var body: some View {
        Group {
            if let viewModel {
                content(viewModel)
            } else {
                SRHTLoadingStateView(message: "Loading paste…")
            }
        }
        .navigationTitle(displayTitle)
        .navigationBarTitleDisplayMode(.inline)
        .toolbar {
            ToolbarItemGroup(placement: .topBarTrailing) {
                SRHTShareButton(
                    url: currentPaste.flatMap { SRHTWebURL.paste(ownerCanonicalName: $0.user.canonicalName, pasteId: $0.id) },
                    target: .paste
                ) {
                    Image(systemName: "square.and.arrow.up")
                }

                if viewModel != nil {
                    Menu {
                        Button {
                            showVisibilitySheet = true
                        } label: {
                            Label("Change Visibility", systemImage: "eye")
                        }

                        Button(role: .destructive) {
                            showDeleteConfirmation = true
                        } label: {
                            Label("Delete Paste", systemImage: "trash")
                        }
                    } label: {
                        Image(systemName: "ellipsis.circle")
                    }
                }
            }
        }
        .sheet(isPresented: $showVisibilitySheet) {
            if let viewModel, let currentPaste {
                PasteVisibilitySheet(
                    currentVisibility: currentPaste.visibility,
                    isUpdating: viewModel.isUpdatingVisibility
                ) { visibility in
                    if let updated = await viewModel.updateVisibility(visibility) {
                        onUpdated?(updated)
                        showVisibilitySheet = false
                    }
                }
            }
        }
        .alert("Delete Paste?", isPresented: $showDeleteConfirmation) {
            Button("Cancel", role: .cancel) {}
            Button("Delete", role: .destructive) {
                Task {
                    if await viewModel?.deletePaste() == true {
                        onDeleted?(paste.id)
                        dismiss()
                    }
                }
            }
        } message: {
            Text("This paste will be permanently removed.")
        }
        .task {
            if viewModel == nil {
                let vm = PasteDetailViewModel(
                    pasteID: paste.id,
                    initialPaste: paste,
                    service: PasteService(client: appState.client)
                )
                viewModel = vm
                await vm.loadPaste()
            }
        }
    }

    private var currentPaste: Paste? {
        viewModel?.paste ?? paste
    }

    private var displayTitle: String {
        if let filename = currentPaste?.files.first?.filename, !filename.isEmpty {
            return filename
        }
        return "Paste \(paste.id)"
    }

    @ViewBuilder
    private func content(_ viewModel: PasteDetailViewModel) -> some View {
        @Bindable var vm = viewModel

        if viewModel.isLoading, viewModel.paste == nil {
            SRHTLoadingStateView(message: "Loading paste…")
        } else if let error = viewModel.error, viewModel.paste == nil {
            SRHTErrorStateView(
                title: "Couldn't Load Paste",
                message: error,
                retryAction: { await viewModel.loadPaste() }
            )
        } else if let paste = viewModel.paste {
            List {
                Section("Details") {
                    LabeledContent("ID", value: paste.id)
                    LabeledContent("Owner", value: paste.user.canonicalName)
                    LabeledContent("Created", value: paste.created.relativeDescription)
                    LabeledContent("Visibility", value: visibilityLabel(paste.visibility))
                    LabeledContent("Files", value: "\(paste.files.count)")
                }

                if paste.files.count > 1 {
                    Section("Files") {
                        Picker("Selected File", selection: Binding(
                            get: { viewModel.selectedFileHash ?? paste.files.first?.hash ?? "" },
                            set: { viewModel.selectFile(hash: $0) }
                        )) {
                            ForEach(paste.files) { file in
                                Text(file.filename ?? String(file.hash.prefix(8)))
                                    .tag(file.hash)
                            }
                        }
                    }
                }

                if let file = viewModel.selectedFile {
                    Section("Current File") {
                        if let filename = file.filename, !filename.isEmpty {
                            LabeledContent("Filename", value: filename)
                        }
                        LabeledContent("Hash", value: file.hash)
                    }

                    Section {
                        if viewModel.loadingFileHashes.contains(file.hash) && viewModel.selectedFileContents == nil {
                            SRHTLoadingStateView(message: "Loading paste contents…")
                                .frame(minHeight: 180)
                        } else if let contents = viewModel.selectedFileContents {
                            PasteCodeBlock(text: contents)
                        } else {
                            Text("This file’s contents are unavailable.")
                                .foregroundStyle(.secondary)
                        }
                    } header: {
                        Text("Contents")
                    }
                }
            }
            .listStyle(.insetGrouped)
            .srhtErrorBanner(error: $vm.error)
            .refreshable {
                await viewModel.loadPaste()
            }
        }
    }

    private func visibilityLabel(_ visibility: Visibility) -> String {
        switch visibility {
        case .public:
            return "Public"
        case .unlisted:
            return "Unlisted"
        case .private:
            return "Private"
        }
    }
}

private struct PasteCodeBlock: View {
    let text: String

    var body: some View {
        ScrollView([.horizontal, .vertical], showsIndicators: true) {
            Text(text.isEmpty ? " " : text)
                .font(.system(.body, design: .monospaced))
                .textSelection(.enabled)
                .frame(maxWidth: .infinity, alignment: .leading)
                .padding(.vertical, 4)
        }
        .frame(minHeight: 220)
    }
}

private struct PasteVisibilitySheet: View {
    let currentVisibility: Visibility
    let isUpdating: Bool
    let onSave: (Visibility) async -> Void

    @Environment(\.dismiss) private var dismiss
    @State private var visibility: Visibility

    init(currentVisibility: Visibility, isUpdating: Bool, onSave: @escaping (Visibility) async -> Void) {
        self.currentVisibility = currentVisibility
        self.isUpdating = isUpdating
        self.onSave = onSave
        _visibility = State(initialValue: currentVisibility)
    }

    var body: some View {
        NavigationStack {
            List {
                ForEach(visibilityOptions, id: \.self) { option in
                    Button {
                        visibility = option
                    } label: {
                        HStack {
                            VStack(alignment: .leading, spacing: 2) {
                                Text(title(for: option))
                                    .foregroundStyle(.primary)
                                Text(description(for: option))
                                    .font(.caption)
                                    .foregroundStyle(.secondary)
                            }

                            Spacer()

                            if visibility == option {
                                Image(systemName: "checkmark")
                                    .foregroundStyle(.tint)
                            }
                        }
                        .contentShape(Rectangle())
                    }
                    .buttonStyle(.plain)
                }
            }
            .listStyle(.insetGrouped)
            .navigationTitle("Visibility")
            .navigationBarTitleDisplayMode(.inline)
            .toolbar {
                ToolbarItem(placement: .cancellationAction) {
                    Button("Cancel") { dismiss() }
                }
                ToolbarItem(placement: .confirmationAction) {
                    Button("Save") {
                        Task {
                            await onSave(visibility)
                        }
                    }
                    .disabled(isUpdating || visibility == currentVisibility)
                }
            }
            .overlay {
                if isUpdating {
                    ProgressView()
                }
            }
        }
    }

    private var visibilityOptions: [Visibility] {
        [.public, .unlisted, .private]
    }

    private func title(for visibility: Visibility) -> String {
        switch visibility {
        case .public:
            "Public"
        case .unlisted:
            "Unlisted"
        case .private:
            "Private"
        }
    }

    private func description(for visibility: Visibility) -> String {
        switch visibility {
        case .public:
            "Visible to everyone and listed on your profile."
        case .unlisted:
            "Visible to anyone with the URL, but not listed on your profile."
        case .private:
            "Visible only to explicitly allowed viewers."
        }
    }
}