Browse Source

Consolidating startup code and incrementing build number.

pull/92/head
Abhishek 6 years ago
parent
commit
0404302dc5
  1. 4
      Clocker/Clocker/Clocker-Info.plist
  2. 17
      Clocker/Onboarding/OnboardingParentViewController.swift
  3. 2
      Clocker/Panel/Data Layer/TimezoneData.swift
  4. 108
      Clocker/Preferences/General/PreferencesViewController.swift
  5. 5
      Clocker/Preferences/StartupManager.swift

4
Clocker/Clocker/Clocker-Info.plist

@ -13,11 +13,11 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.6.09</string> <string>1.6.10</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>64</string> <string>65</string>
<key>Fabric</key> <key>Fabric</key>
<dict> <dict>
<key>APIKey</key> <key>APIKey</key>

17
Clocker/Onboarding/OnboardingParentViewController.swift

@ -1,7 +1,6 @@
// Copyright © 2015 Abhishek Banthia // Copyright © 2015 Abhishek Banthia
import Cocoa import Cocoa
import ServiceManagement
extension NSStoryboard.SceneIdentifier { extension NSStoryboard.SceneIdentifier {
static let welcomeIdentifier = NSStoryboard.SceneIdentifier("welcomeVC") static let welcomeIdentifier = NSStoryboard.SceneIdentifier("welcomeVC")
@ -26,6 +25,8 @@ class OnboardingParentViewController: NSViewController {
@IBOutlet private var backButton: NSButton! @IBOutlet private var backButton: NSButton!
@IBOutlet private var positiveButton: NSButton! @IBOutlet private var positiveButton: NSButton!
private lazy var startupManager = StartupManager()
private lazy var welcomeVC = (storyboard?.instantiateController(withIdentifier: .welcomeIdentifier) as? WelcomeViewController) private lazy var welcomeVC = (storyboard?.instantiateController(withIdentifier: .welcomeIdentifier) as? WelcomeViewController)
private lazy var permissionsVC = (storyboard?.instantiateController(withIdentifier: .onboardingPermissionsIdentifier) as? OnboardingPermissionsViewController) private lazy var permissionsVC = (storyboard?.instantiateController(withIdentifier: .onboardingPermissionsIdentifier) as? OnboardingPermissionsViewController)
@ -283,19 +284,11 @@ class OnboardingParentViewController: NSViewController {
} }
UserDefaults.standard.set(shouldStart ? 1 : 0, forKey: CLStartAtLogin) UserDefaults.standard.set(shouldStart ? 1 : 0, forKey: CLStartAtLogin)
startupManager.toggleLogin(shouldStart)
if !SMLoginItemSetEnabled("com.abhishek.ClockerHelper" as CFString, shouldStart) { shouldStart ?
Logger.log(object: ["Successful": "NO"], for: "Start Clocker Login") Logger.log(object: [:], for: "Enable Launch at Login while Onboarding") :
} else {
Logger.log(object: ["Successful": "YES"], for: "Start Clocker Login")
}
if shouldStart {
Logger.log(object: [:], for: "Enable Launch at Login while Onboarding")
} else {
Logger.log(object: [:], for: "Disable Launch at Login while Onboarding") Logger.log(object: [:], for: "Disable Launch at Login while Onboarding")
} }
}
func logExitPoint() { func logExitPoint() {
let currentViewController = currentController() let currentViewController = currentController()

2
Clocker/Panel/Data Layer/TimezoneData.swift

@ -244,7 +244,7 @@ class TimezoneData: NSObject, NSCoding {
let old = NSKeyedUnarchiver.unarchiveObject(with: timezone) let old = NSKeyedUnarchiver.unarchiveObject(with: timezone)
if let oldModel = old as? CLTimezoneData { if let oldModel = old as? CLTimezoneData {
// Convert it to new model and add it // Convert it to new model and add it
print("We're still using old Objective-C models"); print("We're still using old Objective-C models")
let newTimezone = TimezoneData(with: oldModel) let newTimezone = TimezoneData(with: oldModel)
newModels.append(newTimezone) newModels.append(newTimezone)
} else if let newModel = old as? TimezoneData { } else if let newModel = old as? TimezoneData {

108
Clocker/Preferences/General/PreferencesViewController.swift

@ -22,8 +22,9 @@ enum RowType {
} }
struct TimezoneMetadata { struct TimezoneMetadata {
let timezone: Timezone let timezone: NSTimeZone
let tages: Set<String> = Set() let tags: Set<String>
let formattedName: String
} }
class PreferencesViewController: ParentViewController { class PreferencesViewController: ParentViewController {
@ -43,8 +44,8 @@ class PreferencesViewController: ParentViewController {
private lazy var startupManager = StartupManager() private lazy var startupManager = StartupManager()
private var filteredArray: [Any] = [] private var filteredArray: [Any] = []
private var timezoneArray: [String] = [] private var timezoneArray: [TimezoneMetadata] = []
private var timezoneFilteredArray: [String] = [] private var timezoneFilteredArray: [TimezoneMetadata] = []
private var dataTask: URLSessionDataTask? = .none private var dataTask: URLSessionDataTask? = .none
private lazy var notimezoneView: NoTimezoneView? = { private lazy var notimezoneView: NoTimezoneView? = {
@ -122,11 +123,11 @@ class PreferencesViewController: ParentViewController {
private func calculateArray() { private func calculateArray() {
finalArray = [] finalArray = []
func addTimezonesIfNeeded(_ data: [String]) { func addTimezonesIfNeeded(_ data: [TimezoneMetadata]) {
if !data.isEmpty { if !data.isEmpty {
finalArray.append(.timezoneHeader) finalArray.append(.timezoneHeader)
} }
data.forEach { (_) in data.forEach { _ in
finalArray.append(.timezone) finalArray.append(.timezone)
} }
} }
@ -137,7 +138,7 @@ class PreferencesViewController: ParentViewController {
if !filteredArray.isEmpty { if !filteredArray.isEmpty {
finalArray.append(.cityHeader) finalArray.append(.cityHeader)
} }
filteredArray.forEach { (_) in filteredArray.forEach { _ in
finalArray.append(.city) finalArray.append(.city)
} }
addTimezonesIfNeeded(timezoneFilteredArray) addTimezonesIfNeeded(timezoneFilteredArray)
@ -357,20 +358,20 @@ extension PreferencesViewController: NSTableViewDataSource, NSTableViewDelegate
return numberOfSearchResults() return numberOfSearchResults()
} }
func tableView(_ tableView: NSTableView, isGroupRow row: Int) -> Bool { func tableView(_: NSTableView, isGroupRow row: Int) -> Bool {
let currentRowType = finalArray[row] let currentRowType = finalArray[row]
return return
currentRowType == .timezoneHeader || currentRowType == .timezoneHeader ||
currentRowType == .cityHeader currentRowType == .cityHeader
} }
func tableView(_ tableView: NSTableView, shouldSelectRow row: Int) -> Bool { func tableView(_: NSTableView, shouldSelectRow row: Int) -> Bool {
print("Should Select Row") print("Should Select Row")
let currentRowType = finalArray[row] let currentRowType = finalArray[row]
return !(currentRowType == .timezoneHeader || currentRowType == .cityHeader) return !(currentRowType == .timezoneHeader || currentRowType == .cityHeader)
} }
func tableView(_ tableView: NSTableView, selectionIndexesForProposedSelection proposedSelectionIndexes: IndexSet) -> IndexSet { func tableView(_: NSTableView, selectionIndexesForProposedSelection proposedSelectionIndexes: IndexSet) -> IndexSet {
// print("Selection Indexes for Proposed Selection: \(proposedSelectionIndexes.first!)") // print("Selection Indexes for Proposed Selection: \(proposedSelectionIndexes.first!)")
return proposedSelectionIndexes return proposedSelectionIndexes
} }
@ -388,22 +389,21 @@ extension PreferencesViewController: NSTableViewDataSource, NSTableViewDelegate
} }
} }
private func timezoneCell(_ tableView: NSTableView, _ rowType: RowType, _ row: Int) -> NSView? { private func timezoneCell(_ tableView: NSTableView, _: RowType, _ row: Int) -> NSView? {
if let message = tableView.makeView(withIdentifier: NSUserInterfaceItemIdentifier(rawValue: "resultCell"), owner: self) as? SearchResultTableViewCell { if let message = tableView.makeView(withIdentifier: NSUserInterfaceItemIdentifier(rawValue: "resultCell"), owner: self) as? SearchResultTableViewCell {
let datasource = searchField.stringValue.isEmpty ? timezoneArray : timezoneFilteredArray let datasource = searchField.stringValue.isEmpty ? timezoneArray : timezoneFilteredArray
guard !datasource.isEmpty else { guard !datasource.isEmpty else {
return nil return nil
} }
let index = searchField.stringValue.isEmpty ? row - 1 : row let index = searchField.stringValue.isEmpty ? row - 1 : row
message.sourceName.stringValue = datasource[index % datasource.count] message.sourceName.stringValue = datasource[index % datasource.count].formattedName
return message return message
} }
return nil return nil
} }
private func cityCell(_ tableView: NSTableView, _ rowType: RowType, _ row: Int) -> NSView? { private func cityCell(_ tableView: NSTableView, _: RowType, _ row: Int) -> NSView? {
if let cityCell = tableView.makeView(withIdentifier: NSUserInterfaceItemIdentifier(rawValue: "resultCell"), owner: self) as? SearchResultTableViewCell { if let cityCell = tableView.makeView(withIdentifier: NSUserInterfaceItemIdentifier(rawValue: "resultCell"), owner: self) as? SearchResultTableViewCell {
guard let timezoneData = filteredArray[row % filteredArray.count] as? TimezoneData else { guard let timezoneData = filteredArray[row % filteredArray.count] as? TimezoneData else {
assertionFailure() assertionFailure()
return nil return nil
@ -595,7 +595,16 @@ extension PreferencesViewController {
private func findLocalSearchResultsForTimezones() { private func findLocalSearchResultsForTimezones() {
timezoneFilteredArray = [] timezoneFilteredArray = []
let lowercasedSearchString = searchField.stringValue.lowercased() let lowercasedSearchString = searchField.stringValue.lowercased()
timezoneFilteredArray = timezoneArray.filter { $0.lowercased().contains(lowercasedSearchString) }
timezoneFilteredArray = timezoneArray.filter { (timezoneMetadata) -> Bool in
let tags = timezoneMetadata.tags
for tag in tags where tag.contains(lowercasedSearchString) {
return true
}
return false
}
print(timezoneFilteredArray)
} }
private func generateSearchURL() -> String { private func generateSearchURL() -> String {
@ -808,9 +817,42 @@ extension PreferencesViewController {
private func setupTimezoneDatasource() { private func setupTimezoneDatasource() {
timezoneArray = [] timezoneArray = []
timezoneArray.append("UTC")
timezoneArray.append("Anywhere on Earth") let anywhereOnEarth = TimezoneMetadata(timezone: NSTimeZone(abbreviation: "GMT-1200")!,
timezoneArray.append(contentsOf: NSTimeZone.knownTimeZoneNames) tags: ["aoe", "anywhere on earth"],
formattedName: "Anywhere on Earth")
timezoneArray.append(anywhereOnEarth)
for (abbreviation, timezone) in TimeZone.abbreviationDictionary {
var tags: Set<String> = [abbreviation.lowercased(), timezone.lowercased()]
var extraTags: [String] = []
if abbreviation == "IST" {
extraTags = ["india", "indian", "kolkata", "calcutta", "mumbai", "delhi", "hyderabad", "noida"]
}
if abbreviation == "PST" {
extraTags = ["los", "los angeles", "california", "san francisco", "bay area", "pacific standard time"]
}
if abbreviation == "UTC" {
extraTags = ["utc", "universal"]
}
if abbreviation == "EST" {
extraTags = ["florida", "new york"]
}
extraTags.forEach { tag in
tags.insert(tag)
}
let timezoneIdentifier = NSTimeZone(name: timezone)!
let timezoneMetadata = TimezoneMetadata(timezone: timezoneIdentifier, tags: tags, formattedName: timezone)
timezoneArray.append(timezoneMetadata)
}
print(TimeZone.knownTimeZoneIdentifiers.count)
print(timezoneArray.count)
} }
@IBAction func addTimeZone(_: NSButton) { @IBAction func addTimeZone(_: NSButton) {
@ -911,14 +953,14 @@ extension PreferencesViewController {
let metaInfo = metadata(for: currentSelection) let metaInfo = metadata(for: currentSelection)
data.timezoneID = metaInfo.0 data.timezoneID = metaInfo.0
data.formattedAddress = metaInfo.1 data.formattedAddress = metaInfo.1.formattedName
} else { } else {
let currentSelection = timezoneArray[availableTimezoneTableView.selectedRow - 1] let currentSelection = timezoneArray[availableTimezoneTableView.selectedRow - 1]
let metaInfo = metadata(for: currentSelection) let metaInfo = metadata(for: currentSelection)
data.timezoneID = metaInfo.0 data.timezoneID = metaInfo.0
data.formattedAddress = metaInfo.1 data.formattedAddress = metaInfo.1.formattedName
} }
data.selectionType = .timezone data.selectionType = .timezone
@ -928,33 +970,26 @@ extension PreferencesViewController {
filteredArray = [] filteredArray = []
timezoneFilteredArray = [] timezoneFilteredArray = []
placeholderLabel.placeholderString = CLEmptyString
searchField.stringValue = CLEmptyString
reloadSearchResults() reloadSearchResults()
refreshTimezoneTableView() refreshTimezoneTableView()
refreshMainTable() refreshMainTable()
timezonePanel.close() timezonePanel.close()
placeholderLabel.placeholderString = CLEmptyString
searchField.stringValue = CLEmptyString
searchField.placeholderString = "Enter a city, state or country name" searchField.placeholderString = "Enter a city, state or country name"
availableTimezoneTableView.isHidden = false availableTimezoneTableView.isHidden = false
isActivityInProgress = false isActivityInProgress = false
} }
private func metadata(for selection: String) -> (String, String) { private func metadata(for selection: TimezoneMetadata) -> (String, TimezoneMetadata) {
if selection == "Anywhere on Earth" { if selection.formattedName == "Anywhere on Earth" {
return ("GMT-1200", selection) return ("GMT-1200", selection)
} else if selection == "UTC" { } else if selection.formattedName == "UTC" {
return ("GMT", selection) return ("GMT", selection)
} else { } else {
return (selection, selection) return (selection.formattedName, selection)
} }
} }
@ -1058,11 +1093,6 @@ extension PreferencesViewController {
} }
} }
@IBAction func filterTimezoneArray(_: Any?) {
let lowercasedSearchString = searchField.stringValue.lowercased()
timezoneFilteredArray = timezoneArray.filter { $0.lowercased().contains(lowercasedSearchString) }
}
@IBAction func filterArray(_: Any?) { @IBAction func filterArray(_: Any?) {
messageLabel.stringValue = CLEmptyString messageLabel.stringValue = CLEmptyString
@ -1095,7 +1125,7 @@ extension PreferencesViewController {
extension PreferencesViewController { extension PreferencesViewController {
@IBAction func loginPreferenceChanged(_ sender: NSButton) { @IBAction func loginPreferenceChanged(_ sender: NSButton) {
startupManager.toggleLogin(sender) startupManager.toggleLogin(sender.state == .on)
} }
} }

5
Clocker/Preferences/StartupManager.swift

@ -4,9 +4,8 @@ import Cocoa
import ServiceManagement import ServiceManagement
struct StartupManager { struct StartupManager {
func toggleLogin(_ shouldStartAtLogin: Bool) {
func toggleLogin(_ sender: NSButton) { if !SMLoginItemSetEnabled("com.abhishek.ClockerHelper" as CFString, shouldStartAtLogin) {
if !SMLoginItemSetEnabled("com.abhishek.ClockerHelper" as CFString, sender.state == .on) {
Logger.log(object: ["Successful": "NO"], for: "Start Clocker Login") Logger.log(object: ["Successful": "NO"], for: "Start Clocker Login")
addClockerToLoginItemsManually() addClockerToLoginItemsManually()
} else { } else {

Loading…
Cancel
Save