mirror of
https://github.com/yattee/yattee.git
synced 2026-02-19 17:29:45 +00:00
52 lines
1.4 KiB
Swift
52 lines
1.4 KiB
Swift
//
|
|
// ShareSheet.swift
|
|
// Yattee
|
|
//
|
|
// Cross-platform share sheet for exporting content.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
#if os(iOS)
|
|
struct ShareSheet: UIViewControllerRepresentable {
|
|
let items: [Any]
|
|
|
|
func makeUIViewController(context: Context) -> UIActivityViewController {
|
|
UIActivityViewController(activityItems: items, applicationActivities: nil)
|
|
}
|
|
|
|
func updateUIViewController(_ uiViewController: UIActivityViewController, context: Context) {}
|
|
}
|
|
#elseif os(macOS)
|
|
struct ShareSheet: View {
|
|
let items: [Any]
|
|
|
|
var body: some View {
|
|
VStack {
|
|
Text(String(localized: "settings.advanced.logs.export.instructions"))
|
|
.padding()
|
|
|
|
if let text = items.first as? String {
|
|
ScrollView {
|
|
Text(text)
|
|
.font(.caption)
|
|
.fontDesign(.monospaced)
|
|
.textSelection(.enabled)
|
|
.padding()
|
|
}
|
|
.frame(maxHeight: 400)
|
|
}
|
|
|
|
Button(String(localized: "settings.advanced.logs.export.copy")) {
|
|
if let text = items.first as? String {
|
|
NSPasteboard.general.clearContents()
|
|
NSPasteboard.general.setString(text, forType: .string)
|
|
}
|
|
}
|
|
.padding()
|
|
}
|
|
.frame(minWidth: 400, minHeight: 300)
|
|
}
|
|
}
|
|
#endif
|