格式化后跳转结果页查看

This commit is contained in:
2026-07-12 15:57:10 +08:00
parent 5321277cec
commit 193a44f472
2 changed files with 94 additions and 58 deletions
+12 -58
View File
@@ -9,14 +9,13 @@ import SwiftUI
struct FormatterView: View {
@State private var inputText: String = ""
@State private var outputText: String = ""
@State private var showCopied: Bool = false
@State private var resultText: String?
var body: some View {
NavigationStack {
VStack(spacing: 16) {
TextEditor(text: $inputText)
.frame(minHeight: 120)
.frame(minHeight: 160)
.padding(8)
.background(Color(.systemGray6))
.cornerRadius(8)
@@ -25,7 +24,7 @@ struct FormatterView: View {
.stroke(Color(.systemGray4), lineWidth: 1)
)
Button(action: formatText) {
Button(action: formatAndNavigate) {
Label("格式化", systemImage: "wand.and.stars")
.font(.headline)
.frame(maxWidth: .infinity)
@@ -35,55 +34,22 @@ struct FormatterView: View {
.cornerRadius(10)
}
if !outputText.isEmpty {
VStack(alignment: .leading, spacing: 8) {
HStack {
Text("格式化结果")
.font(.subheadline)
.foregroundStyle(.secondary)
Spacer()
Button(action: copyOutput) {
Image(systemName: "doc.on.doc")
}
}
TextEditor(text: .constant(outputText))
.frame(minHeight: 120)
.padding(8)
.background(Color(.systemGray6))
.cornerRadius(8)
.overlay(
RoundedRectangle(cornerRadius: 8)
.stroke(Color(.systemGray4), lineWidth: 1)
)
}
}
Spacer()
}
.padding()
.navigationTitle("文案格式化")
.overlay {
if showCopied {
VStack {
Spacer()
Text("已复制")
.font(.subheadline)
.padding(.horizontal, 16)
.padding(.vertical, 8)
.background(Color.black.opacity(0.75))
.foregroundStyle(.white)
.cornerRadius(20)
.padding(.bottom, 32)
}
.transition(.opacity)
}
.navigationDestination(item: $resultText) { text in
ResultView(formattedText: text)
}
}
}
private func formatText() {
var content = inputText
private func formatAndNavigate() {
resultText = format(inputText)
}
private func format(_ text: String) -> String {
var content = text
// #
content = content.replacingOccurrences(of: "# ", with: "")
@@ -113,19 +79,7 @@ struct FormatterView: View {
content = content.replacingOccurrences(of: "二、交易方面", with: "## 二、交易方面")
content = content.replacingOccurrences(of: "三、工作方面", with: "## 三、工作方面")
outputText = content
}
private func copyOutput() {
UIPasteboard.general.string = outputText
withAnimation {
showCopied = true
}
DispatchQueue.main.asyncAfter(deadline: .now() + 1.5) {
withAnimation {
showCopied = false
}
}
return content
}
}