Browse Source

Consolidating startup code and incrementing build number.

pull/92/head
Abhishek 5 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>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.6.09</string>
<string>1.6.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>64</string>
<string>65</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>

17
Clocker/Onboarding/OnboardingParentViewController.swift

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

2
Clocker/Panel/Data Layer/TimezoneData.swift

@ -244,7 +244,7 @@ class TimezoneData: NSObject, NSCoding {
let old = NSKeyedUnarchiver.unarchiveObject(with: timezone)
if let oldModel = old as? CLTimezoneData {
// 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)
newModels.append(newTimezone)
} else if let newModel = old as? TimezoneData {

108
Clocker/Preferences/General/PreferencesViewController.swift

@ -22,8 +22,9 @@ enum RowType {
}
struct TimezoneMetadata {
let timezone: Timezone
let tages: Set<String> = Set()
let timezone: NSTimeZone
let tags: Set<String>
let formattedName: String
}
class PreferencesViewController: ParentViewController {
@ -43,8 +44,8 @@ class PreferencesViewController: ParentViewController {
private lazy var startupManager = StartupManager()
private var filteredArray: [Any] = []
private var timezoneArray: [String] = []
private var timezoneFilteredArray: [String] = []
private var timezoneArray: [TimezoneMetadata] = []
private var timezoneFilteredArray: [TimezoneMetadata] = []
private var dataTask: URLSessionDataTask? = .none
private lazy var notimezoneView: NoTimezoneView? = {
@ -122,11 +123,11 @@ class PreferencesViewController: ParentViewController {
private func calculateArray() {
finalArray = []
func addTimezonesIfNeeded(_ data: [String]) {
func addTimezonesIfNeeded(_ data: [TimezoneMetadata]) {
if !data.isEmpty {
finalArray.append(.timezoneHeader)
}
data.forEach { (_) in
data.forEach { _ in
finalArray.append(.timezone)
}
}
@ -137,7 +138,7 @@ class PreferencesViewController: ParentViewController {
if !filteredArray.isEmpty {
finalArray.append(.cityHeader)
}
filteredArray.forEach { (_) in
filteredArray.forEach { _ in
finalArray.append(.city)
}
addTimezonesIfNeeded(timezoneFilteredArray)
@ -357,20 +358,20 @@ extension PreferencesViewController: NSTableViewDataSource, NSTableViewDelegate
return numberOfSearchResults()
}
func tableView(_ tableView: NSTableView, isGroupRow row: Int) -> Bool {
func tableView(_: NSTableView, isGroupRow row: Int) -> Bool {
let currentRowType = finalArray[row]
return
currentRowType == .timezoneHeader ||
currentRowType == .cityHeader
}
func tableView(_ tableView: NSTableView, shouldSelectRow row: Int) -> Bool {
func tableView(_: NSTableView, shouldSelectRow row: Int) -> Bool {
print("Should Select Row")
let currentRowType = finalArray[row]
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!)")
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 {
let datasource = searchField.stringValue.isEmpty ? timezoneArray : timezoneFilteredArray
guard !datasource.isEmpty else {
return nil
}
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 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 {
guard let timezoneData = filteredArray[row % filteredArray.count] as? TimezoneData else {
assertionFailure()
return nil
@ -595,7 +595,16 @@ extension PreferencesViewController {
private func findLocalSearchResultsForTimezones() {
timezoneFilteredArray = []
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 {
@ -808,9 +817,42 @@ extension PreferencesViewController {
private func setupTimezoneDatasource() {
timezoneArray = []
timezoneArray.append("UTC")
timezoneArray.append("Anywhere on Earth")
timezoneArray.append(contentsOf: NSTimeZone.knownTimeZoneNames)
let anywhereOnEarth = TimezoneMetadata(timezone: NSTimeZone(abbreviation: "GMT-1200")!,
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) {
@ -911,14 +953,14 @@ extension PreferencesViewController {
let metaInfo = metadata(for: currentSelection)
data.timezoneID = metaInfo.0
data.formattedAddress = metaInfo.1
data.formattedAddress = metaInfo.1.formattedName
} else {
let currentSelection = timezoneArray[availableTimezoneTableView.selectedRow - 1]
let metaInfo = metadata(for: currentSelection)
data.timezoneID = metaInfo.0
data.formattedAddress = metaInfo.1
data.formattedAddress = metaInfo.1.formattedName
}
data.selectionType = .timezone
@ -928,33 +970,26 @@ extension PreferencesViewController {
filteredArray = []
timezoneFilteredArray = []
placeholderLabel.placeholderString = CLEmptyString
searchField.stringValue = CLEmptyString
reloadSearchResults()
refreshTimezoneTableView()
refreshMainTable()
timezonePanel.close()
placeholderLabel.placeholderString = CLEmptyString
searchField.stringValue = CLEmptyString
searchField.placeholderString = "Enter a city, state or country name"
availableTimezoneTableView.isHidden = false
isActivityInProgress = false
}
private func metadata(for selection: String) -> (String, String) {
if selection == "Anywhere on Earth" {
private func metadata(for selection: TimezoneMetadata) -> (String, TimezoneMetadata) {
if selection.formattedName == "Anywhere on Earth" {
return ("GMT-1200", selection)
} else if selection == "UTC" {
} else if selection.formattedName == "UTC" {
return ("GMT", selection)
} 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?) {
messageLabel.stringValue = CLEmptyString
@ -1095,7 +1125,7 @@ extension PreferencesViewController {
extension PreferencesViewController {
@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
struct StartupManager {
func toggleLogin(_ sender: NSButton) {
if !SMLoginItemSetEnabled("com.abhishek.ClockerHelper" as CFString, sender.state == .on) {
func toggleLogin(_ shouldStartAtLogin: Bool) {
if !SMLoginItemSetEnabled("com.abhishek.ClockerHelper" as CFString, shouldStartAtLogin) {
Logger.log(object: ["Successful": "NO"], for: "Start Clocker Login")
addClockerToLoginItemsManually()
} else {

Loading…
Cancel
Save