This commit is contained in:
Alin
2024-06-18 22:20:22 -06:00
parent bdf6578126
commit 3232c81e80
6 changed files with 77 additions and 18 deletions
+27 -1
View File
@@ -80,7 +80,33 @@ struct AppCommands: Commands {
}
// Tools Menu
CommandMenu(Text("Tools", comment: "Tools Menu")) {
Button
{
if !appState.appInfo.bundleIdentifier.isEmpty {
appState.showConditionBuilder = true
}
} label: {
Label("Condition Builder", systemImage: "hammer")
}
.keyboardShortcut("b", modifiers: .command)
Button
{
if !appState.appInfo.bundleIdentifier.isEmpty {
saveURLsToFile(urls: appState.selectedItems, appState: appState)
}
} label: {
Label("Export Files", systemImage: "square.and.arrow.up")
}
.keyboardShortcut("e", modifiers: .command)
}
// GitHub Menu
CommandMenu(Text("GitHub", comment: "Github Repo")) {
+1
View File
@@ -33,6 +33,7 @@ class AppState: ObservableObject {
@Published var permissionResults: PermissionsCheckResults?
@Published var showUninstallAlert: Bool = false
@Published var oneShotMode: Bool = false
@Published var showConditionBuilder: Bool = false
+34 -1
View File
@@ -185,7 +185,40 @@ func caskCleanup(app: String) {
process.waitUntilExit() // Ensure the process completes
let data = pipe.fileHandleForReading.readDataToEndOfFile()
let output = (String(data: data, encoding: .utf8) ?? "") as String
print(output)
printOS(output)
}
}
// Print list of files locally
func saveURLsToFile(urls: Set<URL>, appState: AppState) {
let panel = NSOpenPanel()
panel.canChooseFiles = false
panel.canChooseDirectories = true
panel.allowsMultipleSelection = false
panel.prompt = "Select Folder"
if panel.runModal() == .OK, let selectedFolder = panel.url {
let filePath = selectedFolder.appendingPathComponent("Export-\(appState.appInfo.appName)(v\(appState.appInfo.appVersion)).txt")
var fileContent = ""
var count = 1
let sortedUrls = urls.sorted { $0.path < $1.path }
for url in sortedUrls {
fileContent += "[\(count)] - \(url.path)\n"
count += 1
}
do {
try fileContent.write(to: filePath, atomically: true, encoding: .utf8)
printOS("File saved successfully at \(filePath.path)")
// Open Finder and select the file
NSWorkspace.shared.selectFile(filePath.path, inFileViewerRootedAtPath: filePath.deletingLastPathComponent().path)
} catch {
printOS("Error saving file: \(error)")
}
} else {
printOS("Folder selection was canceled.")
}
}