2023-08-17 10:12:26 +02:00
|
|
|
import SwiftUI
|
2023-08-18 22:47:24 +02:00
|
|
|
import SFSafeSymbols
|
2023-08-21 09:16:45 +02:00
|
|
|
import UniformTypeIdentifiers
|
2023-08-17 10:12:26 +02:00
|
|
|
|
|
|
|
struct ContentView: View {
|
2023-08-18 22:47:24 +02:00
|
|
|
|
2023-08-18 22:56:11 +02:00
|
|
|
@Environment(\.colorScheme)
|
|
|
|
var defaultColorScheme: ColorScheme
|
|
|
|
|
2023-08-21 09:16:45 +02:00
|
|
|
@State
|
|
|
|
var content: [CVInfo]
|
2023-08-18 22:47:24 +02:00
|
|
|
|
|
|
|
let style: CVStyle
|
2023-08-18 22:56:11 +02:00
|
|
|
|
2023-08-20 13:11:13 +02:00
|
|
|
init(content: [CVInfo], style: CVStyle) {
|
2023-08-21 09:16:45 +02:00
|
|
|
self._content = .init(initialValue: content)
|
2023-08-18 22:56:11 +02:00
|
|
|
self.style = style
|
|
|
|
}
|
|
|
|
|
|
|
|
@State
|
|
|
|
var darkModeEnabled = true
|
|
|
|
|
|
|
|
@State
|
|
|
|
var didReadDarkMode = false
|
|
|
|
|
2023-08-20 13:11:13 +02:00
|
|
|
@State
|
|
|
|
var selectedLanguageIndex = 0
|
|
|
|
|
2023-08-18 22:56:11 +02:00
|
|
|
var colorStyle: ColorScheme {
|
|
|
|
darkModeEnabled ? .dark : .light
|
|
|
|
}
|
2023-08-20 13:11:13 +02:00
|
|
|
|
|
|
|
var info: CVInfo {
|
|
|
|
content[selectedLanguageIndex]
|
|
|
|
}
|
2023-08-18 22:47:24 +02:00
|
|
|
|
2023-08-17 10:12:26 +02:00
|
|
|
var body: some View {
|
2023-08-18 22:47:24 +02:00
|
|
|
VStack(alignment: .leading) {
|
|
|
|
HStack {
|
2023-08-20 13:11:13 +02:00
|
|
|
Picker("", selection: $selectedLanguageIndex) {
|
|
|
|
ForEach(Array(content.enumerated()), id: \.element) { content in
|
|
|
|
Text(content.element.language)
|
|
|
|
.tag(content.offset)
|
|
|
|
}
|
2023-08-21 09:16:45 +02:00
|
|
|
}.frame(maxWidth: 100)
|
2023-08-18 22:47:24 +02:00
|
|
|
Button(action: createAndSavePDF) {
|
2023-08-21 09:16:45 +02:00
|
|
|
Label("Save PDF", systemSymbol: .squareAndArrowDown)
|
|
|
|
.padding(3)
|
|
|
|
}
|
|
|
|
Button(action: exportData) {
|
|
|
|
Label("Export", systemSymbol: .squareAndArrowUp)
|
|
|
|
.padding(3)
|
|
|
|
}
|
|
|
|
Button(action: importData) {
|
|
|
|
Label("Import", systemSymbol: .docBadgePlus)
|
|
|
|
.padding(8)
|
2023-08-18 22:47:24 +02:00
|
|
|
}
|
2023-08-20 13:11:13 +02:00
|
|
|
Spacer()
|
2023-08-18 22:56:11 +02:00
|
|
|
Toggle("Dark mode", isOn: $darkModeEnabled)
|
2023-08-20 13:11:13 +02:00
|
|
|
.toggleStyle(SwitchToggleStyle())
|
2023-08-18 22:47:24 +02:00
|
|
|
}
|
2023-08-21 09:16:45 +02:00
|
|
|
.padding()
|
2023-08-18 22:47:24 +02:00
|
|
|
ScrollView(.vertical) {
|
|
|
|
CV(info: info, style: style)
|
|
|
|
}.frame(width: style.pageWidth)
|
|
|
|
}
|
2023-08-18 22:56:11 +02:00
|
|
|
.preferredColorScheme(colorStyle)
|
|
|
|
.onAppear {
|
|
|
|
guard !didReadDarkMode else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
darkModeEnabled = defaultColorScheme == .dark
|
|
|
|
didReadDarkMode = true
|
|
|
|
}
|
2023-08-18 22:47:24 +02:00
|
|
|
}
|
|
|
|
|
2023-08-21 09:16:45 +02:00
|
|
|
private func exportData() {
|
|
|
|
let encoder = JSONEncoder()
|
|
|
|
encoder.outputFormatting = .prettyPrinted
|
|
|
|
let data: Data
|
|
|
|
do {
|
|
|
|
data = try encoder.encode(info)
|
|
|
|
} catch {
|
|
|
|
print("Failed to encode data: \(error)")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
guard let url = showDataSavePanel() else {
|
|
|
|
print("No url to save data")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
try data.write(to: url)
|
|
|
|
} catch {
|
|
|
|
print("Failed to write data: \(error)")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private func importData() {
|
|
|
|
guard let url = showOpenFilePanel() else {
|
|
|
|
print("No url to import")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
let data: Data
|
|
|
|
do {
|
|
|
|
data = try Data(contentsOf: url)
|
|
|
|
} catch {
|
|
|
|
print("Failed to open file: \(error)")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
let newData: CVInfo
|
|
|
|
do {
|
|
|
|
newData = try JSONDecoder().decode(CVInfo.self, from: data)
|
|
|
|
} catch {
|
|
|
|
print("Failed to decode data: \(error)")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
guard let index = content.firstIndex(where: { $0.language == newData.language }) else {
|
|
|
|
content.append(newData)
|
|
|
|
selectedLanguageIndex = content.count - 1
|
|
|
|
return
|
|
|
|
}
|
|
|
|
content[index] = newData
|
|
|
|
selectedLanguageIndex = index
|
|
|
|
}
|
|
|
|
|
2023-08-18 22:47:24 +02:00
|
|
|
private func createAndSavePDF() {
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
guard let pdfURL = renderPDF() else {
|
|
|
|
return
|
|
|
|
}
|
2023-08-21 09:16:45 +02:00
|
|
|
guard let url = showPdfSavePanel() else {
|
|
|
|
print("No url to save PDF")
|
2023-08-18 22:47:24 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
writePDF(at: pdfURL, to: url)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-21 09:16:45 +02:00
|
|
|
private func showOpenFilePanel() -> URL? {
|
|
|
|
let panel = NSOpenPanel()
|
|
|
|
panel.allowedContentTypes = [.json]
|
|
|
|
panel.canCreateDirectories = true
|
|
|
|
panel.isExtensionHidden = false
|
|
|
|
panel.allowsOtherFileTypes = false
|
|
|
|
panel.title = "Load JSON"
|
|
|
|
panel.message = "Choose a JSON file of resume data to import"
|
|
|
|
panel.nameFieldLabel = "File name:"
|
|
|
|
panel.nameFieldStringValue = "CV.json"
|
|
|
|
let response = panel.runModal()
|
|
|
|
guard response == .OK else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return panel.url
|
|
|
|
}
|
|
|
|
|
|
|
|
private func showDataSavePanel() -> URL? {
|
|
|
|
showPanel(
|
|
|
|
type: .json,
|
|
|
|
title: "Save JSON",
|
|
|
|
fileName: "CV.json",
|
|
|
|
message: "Choose a location to save a JSON file of the resume data")
|
|
|
|
}
|
|
|
|
|
|
|
|
private func showPdfSavePanel() -> URL? {
|
|
|
|
showPanel(
|
|
|
|
type: .pdf,
|
|
|
|
title: "Save PDF",
|
|
|
|
fileName: "CV.pdf",
|
|
|
|
message: "Choose a location to save a PDF of the resume")
|
|
|
|
}
|
|
|
|
|
|
|
|
private func showPanel(type: UTType, title: String, fileName: String, message: String) -> URL? {
|
2023-08-18 22:47:24 +02:00
|
|
|
let savePanel = NSSavePanel()
|
2023-08-21 09:16:45 +02:00
|
|
|
savePanel.allowedContentTypes = [type]
|
2023-08-18 22:47:24 +02:00
|
|
|
savePanel.canCreateDirectories = true
|
|
|
|
savePanel.isExtensionHidden = false
|
|
|
|
savePanel.allowsOtherFileTypes = false
|
2023-08-21 09:16:45 +02:00
|
|
|
savePanel.title = title
|
|
|
|
savePanel.message = message
|
2023-08-18 22:47:24 +02:00
|
|
|
savePanel.nameFieldLabel = "File name:"
|
2023-08-21 09:16:45 +02:00
|
|
|
savePanel.nameFieldStringValue = fileName
|
2023-08-18 22:47:24 +02:00
|
|
|
|
|
|
|
let response = savePanel.runModal()
|
|
|
|
guard response == .OK else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return savePanel.url
|
|
|
|
}
|
|
|
|
|
|
|
|
private func writePDF(at source: URL, to destination: URL) {
|
|
|
|
do {
|
|
|
|
if FileManager.default.fileExists(atPath: destination.path) {
|
|
|
|
try FileManager.default.removeItem(at: destination)
|
|
|
|
}
|
|
|
|
try FileManager.default.copyItem(at: source, to: destination)
|
|
|
|
} catch {
|
|
|
|
print("Failed to save pdf: \(error)")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-20 13:11:13 +02:00
|
|
|
private var renderContent: some View {
|
2023-08-18 22:47:24 +02:00
|
|
|
CV(info: info, style: style)
|
|
|
|
.frame(width: style.pageWidth, height: style.pageHeight)
|
|
|
|
}
|
|
|
|
|
|
|
|
@MainActor
|
|
|
|
private func renderPDF() -> URL? {
|
|
|
|
let pdfURL = URL.documentsDirectory.appending(path: "cv.pdf")
|
2023-08-20 13:11:13 +02:00
|
|
|
let renderer = ImageRenderer(content: renderContent)
|
2023-08-18 22:47:24 +02:00
|
|
|
|
|
|
|
var didFinish = false
|
|
|
|
renderer.render { size, context in
|
|
|
|
var box = CGRect(x: 0, y: 0, width: size.width, height: size.height)
|
|
|
|
|
|
|
|
guard let pdf = CGContext(pdfURL as CFURL, mediaBox: &box, nil) else {
|
|
|
|
print("Failed to create CGContext")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let options: [CFString: Any] = [
|
|
|
|
kCGPDFContextMediaBox: CGRect(origin: .zero, size: size)
|
|
|
|
]
|
|
|
|
|
|
|
|
pdf.beginPDFPage(options as CFDictionary)
|
|
|
|
context(pdf)
|
|
|
|
pdf.endPDFPage()
|
|
|
|
pdf.closePDF()
|
|
|
|
didFinish = true
|
|
|
|
}
|
|
|
|
guard didFinish else {
|
|
|
|
return nil
|
2023-08-17 10:12:26 +02:00
|
|
|
}
|
2023-08-18 22:47:24 +02:00
|
|
|
print("PDF created")
|
|
|
|
return pdfURL
|
2023-08-17 10:12:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ContentView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2023-08-20 13:11:13 +02:00
|
|
|
ContentView(content: [cvInfoEnglish, cvInfoGerman], style: cvStyle)
|
2023-08-18 22:47:24 +02:00
|
|
|
.frame(width: 600, height: 600 * sqrt(2))
|
2023-08-17 10:12:26 +02:00
|
|
|
}
|
|
|
|
}
|