Files
sing-box-for-apple/ApplicationLibrary/Views/Setting/ServiceLogView.swift
T
2023-07-29 09:44:31 +08:00

99 lines
2.7 KiB
Swift

import Foundation
import Library
import SwiftUI
import UniformTypeIdentifiers
public struct ServiceLogView: View {
#if os(macOS)
public static let windowID = "service-log"
#endif
@State private var isLoading = true
@State private var content = ""
@State private var fileExporterPresented = false
private let logFont = Font.system(.caption, design: .monospaced)
public init() {}
public var body: some View {
viewBuilder {
if isLoading {
ProgressView().onAppear {
Task.detached {
loadContent()
}
}
} else {
if content.isEmpty {
Text("Empty content")
} else {
ScrollView {
Text(content).font(logFont)
}
.padding()
}
}
}
#if !os(tvOS)
.toolbar {
Button("Export") {
fileExporterPresented = true
}
.disabled(content.isEmpty)
}
#endif
#if !os(tvOS)
.fileExporter(
isPresented: $fileExporterPresented,
document: LogDocument(content),
contentType: .text,
defaultFilename: "service-log.txt",
onCompletion: { _ in }
)
#endif
.navigationTitle("Service Log")
#if os(iOS)
.navigationBarTitleDisplayMode(.inline)
#endif
#if os(tvOS)
.focusable()
#endif
}
private func loadContent() {
do {
content = try String(contentsOf: FilePath.cacheDirectory.appendingPathComponent("stderr.log"))
} catch {}
if content.isEmpty {
do {
content = try String(contentsOf: FilePath.cacheDirectory.appendingPathComponent("stderr.log.old"))
} catch {}
}
isLoading = false
}
#if !os(tvOS)
private struct LogDocument: FileDocument {
static var readableContentTypes = [UTType.text]
let content: String
init(_ content: String) {
self.content = content
}
init(configuration: ReadConfiguration) throws {
if let data = configuration.file.regularFileContents {
content = String(decoding: data, as: UTF8.self)
} else {
content = ""
}
}
func fileWrapper(configuration _: WriteConfiguration) throws -> FileWrapper {
FileWrapper(regularFileWithContents: Data(content.utf8))
}
}
#endif
}