This repository was archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathViewControllerProfile.swift
125 lines (110 loc) · 3.93 KB
/
ViewControllerProfile.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
//
// ViewControllerProfile.swift
// RsyncOSX
//
// Created by Thomas Evensen on 17/10/2016.
// Copyright © 2016 Thomas Evensen. All rights reserved.
//
import Cocoa
import Foundation
// Protocol for adding new profiles
protocol NewProfile: AnyObject {
func newprofile(profile: String?, selectedindex: Int?)
func reloadprofilepopupbutton()
}
class ViewControllerProfile: NSViewController, SetConfigurations, Delay {
private var profilesArray: [String]?
private var profile: CatalogProfile?
private var useprofile: String?
@IBOutlet var loadbutton: NSButton!
@IBOutlet var newprofile: NSTextField!
@IBOutlet var profilesTable: NSTableView!
@IBAction func closeview(_: NSButton) {
view.window?.close()
}
@IBAction func defaultProfile(_: NSButton) {
_ = Selectprofile(profile: nil, selectedindex: nil)
view.window?.close()
}
@IBAction func deleteProfile(_: NSButton) {
if let useprofile = useprofile {
profile?.deleteProfileDirectory(profileName: useprofile)
_ = Selectprofile(profile: nil, selectedindex: nil)
}
view.window?.close()
}
// Use profile or close
@IBAction func close(_: NSButton) {
let newprofile = self.newprofile.stringValue
guard newprofile.isEmpty == false else {
if useprofile != nil {
_ = Selectprofile(profile: useprofile, selectedindex: nil)
}
view.window?.close()
return
}
let success = profile?.createprofilecatalog(profile: newprofile)
guard success == true else {
view.window?.close()
return
}
_ = Selectprofile(profile: newprofile, selectedindex: nil)
view.window?.close()
}
override func viewDidLoad() {
super.viewDidLoad()
profilesTable.delegate = self
profilesTable.dataSource = self
profilesTable.target = self
newprofile.delegate = self
profilesTable.doubleAction = #selector(tableViewDoubleClick(sender:))
}
override func viewDidAppear() {
super.viewDidAppear()
profile = CatalogProfile()
profilesArray = profile?.getcatalogsasstringnames()
globalMainQueue.async { () in
self.profilesTable.reloadData()
}
newprofile.stringValue = ""
}
@objc(tableViewDoubleClick:) func tableViewDoubleClick(sender _: AnyObject) {
_ = Selectprofile(profile: useprofile, selectedindex: nil)
view.window?.close()
}
}
extension ViewControllerProfile: NSTableViewDataSource {
func numberOfRows(in _: NSTableView) -> Int {
return profilesArray?.count ?? 0
}
}
extension ViewControllerProfile: NSTableViewDelegate {
func tableView(_ tableView: NSTableView, viewFor _: NSTableColumn?, row: Int) -> NSView? {
if let cell = tableView.makeView(withIdentifier: NSUserInterfaceItemIdentifier(rawValue: "profilesID"),
owner: self) as? NSTableCellView
{
cell.textField?.stringValue = profilesArray?[row] ?? ""
return cell
} else {
return nil
}
}
func tableViewSelectionDidChange(_ notification: Notification) {
let myTableViewFromNotification = (notification.object as? NSTableView)!
let indexes = myTableViewFromNotification.selectedRowIndexes
if let index = indexes.first {
useprofile = profilesArray![index]
}
}
}
extension ViewControllerProfile: NSTextFieldDelegate {
func controlTextDidChange(_: Notification) {
delayWithSeconds(0.5) {
if self.newprofile.stringValue.count > 0 {
self.loadbutton.title = NSLocalizedString("Save", comment: DictionaryStrings.profile.rawValue)
} else {
self.loadbutton.title = NSLocalizedString("Load", comment: DictionaryStrings.profile.rawValue)
}
}
}
}