Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit c01ad32

Browse files
committed
Newly created parties get fetched instantly, added prettier UI lock when doing full refresh, updated project and sdks to 10.2
1 parent d430d4d commit c01ad32

5 files changed

+49
-21
lines changed

App2Night.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@
377377
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
378378
GCC_WARN_UNUSED_FUNCTION = YES;
379379
GCC_WARN_UNUSED_VARIABLE = YES;
380-
IPHONEOS_DEPLOYMENT_TARGET = 10.1;
380+
IPHONEOS_DEPLOYMENT_TARGET = 10.2;
381381
MTL_ENABLE_DEBUG_INFO = YES;
382382
ONLY_ACTIVE_ARCH = YES;
383383
SDKROOT = iphoneos;
@@ -421,7 +421,7 @@
421421
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
422422
GCC_WARN_UNUSED_FUNCTION = YES;
423423
GCC_WARN_UNUSED_VARIABLE = YES;
424-
IPHONEOS_DEPLOYMENT_TARGET = 10.1;
424+
IPHONEOS_DEPLOYMENT_TARGET = 10.2;
425425
MTL_ENABLE_DEBUG_INFO = NO;
426426
SDKROOT = iphoneos;
427427
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
@@ -439,7 +439,7 @@
439439
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
440440
PRODUCT_BUNDLE_IDENTIFIER = de.dhbw.App2Night;
441441
PRODUCT_NAME = "$(TARGET_NAME)";
442-
SWIFT_VERSION = 3.0.1;
442+
SWIFT_VERSION = 3.0;
443443
TARGETED_DEVICE_FAMILY = 1;
444444
};
445445
name = Debug;
@@ -454,7 +454,7 @@
454454
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
455455
PRODUCT_BUNDLE_IDENTIFIER = de.dhbw.App2Night;
456456
PRODUCT_NAME = "$(TARGET_NAME)";
457-
SWIFT_VERSION = 3.0.1;
457+
SWIFT_VERSION = 3.0;
458458
TARGETED_DEVICE_FAMILY = 1;
459459
};
460460
name = Release;

App2Night/PartyCollectionViewCell.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,10 @@ extension PartyCollectionViewController {
171171
//rating.centerYAnchor.constraint(equalTo: self.centerYAnchor).isActive = true
172172

173173
// labels
174-
_ = name.anchor(nil, left: thumbnail.rightAnchor, bottom: nil, right: distance.leftAnchor, topConstant: 0, leftConstant: 13, bottomConstant: 0, rightConstant: 13, widthConstant: 0, heightConstant: 24)
174+
_ = name.anchor(nil, left: thumbnail.rightAnchor, bottom: nil, right: distance.leftAnchor, topConstant: 0, leftConstant: 13, bottomConstant: 0, rightConstant: 4, widthConstant: 0, heightConstant: 24)
175175
name.centerYAnchor.constraint(equalTo: self.centerYAnchor, constant: -24).isActive = true
176176

177-
_ = subtitle.anchor(name.bottomAnchor, left: thumbnail.rightAnchor, bottom: nil, right: distance.leftAnchor, topConstant: 0, leftConstant: 13, bottomConstant: 0, rightConstant: 13, widthConstant: 0, heightConstant: 24)
177+
_ = subtitle.anchor(name.bottomAnchor, left: thumbnail.rightAnchor, bottom: nil, right: distance.leftAnchor, topConstant: 0, leftConstant: 13, bottomConstant: 0, rightConstant: 4, widthConstant: 0, heightConstant: 24)
178178

179179
// seperator lines
180180
_ = upperDivider.anchor(self.topAnchor, left: self.leftAnchor, bottom: nil, right: self.rightAnchor, topConstant: 0, leftConstant: 0, bottomConstant: 0, rightConstant: 0, widthConstant: 0, heightConstant: 0.5)

App2Night/PartyCollectionViewController.swift

+25-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import RealmSwift
1313
protocol PartyCollectionViewControllerDelegate: class {
1414

1515
func updateParties()
16+
func reloadRealm()
1617

1718
}
1819

@@ -21,6 +22,9 @@ class PartyCollectionViewController: UICollectionViewController, UICollectionVie
2122
// get parties from realm
2223
var parties = try! Realm().objects(Party.self)
2324

25+
// cell lock based on refresh
26+
var lock: Bool = false
27+
2428
// location things
2529
let locationManager = CLLocationManager()
2630
var currentLocation = CLLocationCoordinate2D()
@@ -33,6 +37,11 @@ class PartyCollectionViewController: UICollectionViewController, UICollectionVie
3337
return rc
3438
}()
3539

40+
func reloadRealm() {
41+
self.parties = try! Realm().objects(Party.self)
42+
self.collectionView?.reloadData()
43+
}
44+
3645
// handle the refresh
3746
func handleRefresh(_ refreshControl: UIRefreshControl) {
3847
lockUI()
@@ -96,7 +105,9 @@ class PartyCollectionViewController: UICollectionViewController, UICollectionVie
96105
let offset = self.collectionView?.contentOffset
97106
self.refreshControl.endRefreshing()
98107
self.refreshControl.beginRefreshing()
99-
self.collectionView?.contentOffset = offset!
108+
UIView.animate(withDuration: 0.5, delay: 0, usingSpringWithDamping: 1, initialSpringVelocity: 1, options: .curveEaseOut, animations: {
109+
self.collectionView?.contentOffset = offset!
110+
}, completion: nil)
100111
}
101112
}
102113

@@ -163,6 +174,15 @@ class PartyCollectionViewController: UICollectionViewController, UICollectionVie
163174
break
164175
}
165176

177+
if self.lock {
178+
cell.isUserInteractionEnabled = false
179+
// hacky way to call overlay
180+
cell.isSelected = true
181+
} else {
182+
cell.isUserInteractionEnabled = true
183+
cell.isSelected = false
184+
}
185+
166186
return cell
167187
}
168188

@@ -212,12 +232,14 @@ class PartyCollectionViewController: UICollectionViewController, UICollectionVie
212232
}
213233

214234
func lockUI() {
215-
self.collectionView?.isUserInteractionEnabled = false
235+
self.lock = true
236+
self.collectionView?.reloadData()
216237
self.tabBarController?.tabBar.items?[1].isEnabled = false
217238
}
218239

219240
func unlockUI() {
220-
self.collectionView?.isUserInteractionEnabled = true
241+
self.lock = false
242+
self.collectionView?.reloadData()
221243
self.tabBarController?.tabBar.items?[1].isEnabled = true
222244
}
223245

App2Night/PartyCreateFormViewController.swift

+14-9
Original file line numberDiff line numberDiff line change
@@ -166,23 +166,28 @@ class PartyCreateFormViewController: FormViewController {
166166
SwaggerCommunication.shared.validateLocation(with: assembledParty.toLocationRawData()) { (success) in
167167
if success {
168168
SwiftSpinner.show("Deine Party wird gepostet...")
169-
SwaggerCommunication.shared.postParty(with: assembledParty.toPartyRawData()) { (success) in
169+
SwaggerCommunication.shared.postParty(with: assembledParty.toPartyRawData()) { (success, id) in
170170
if success {
171171
print("POST OK.")
172-
173-
// start updating parties after succesful post
174-
// self.delegate?.updateParties()
175-
// stop the spinner
176-
SwiftSpinner.hide()
177-
// dismiss this view
178-
self.dismissView()
172+
SwiftSpinner.show("Deine Party wird geladen...")
173+
SwaggerCommunication.shared.getParty(for: id!) { (success) in
174+
if success {
175+
// update previous view
176+
self.delegate?.reloadRealm()
177+
SwiftSpinner.hide()
178+
self.dismissView()
179+
} else {
180+
SwiftSpinner.hide()
181+
self.displayAlert(title: "Party wurde nicht geladen!", message: "Laden ist schiefgelaufen.", buttonTitle: "Okay")
182+
}
183+
}
179184
} else {
180185
print("POST FAILED.")
181186

182187
// stop the spinner
183188
SwiftSpinner.hide()
184189

185-
self.displayAlert(title: "Party wurde nicht gepostet!", message: "Irgendetwas ist schiefgelaufen.", buttonTitle: "Okay")
190+
self.displayAlert(title: "Party wurde nicht gepostet!", message: "Posten ist schiefgelaufen.", buttonTitle: "Okay")
186191
}
187192
}
188193
} else {

App2Night/SwaggerCommunication.swift

+4-3
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class SwaggerCommunication {
100100
}
101101

102102
// posts a party with authorization
103-
func postParty(with party: Data, completionHandler: @escaping (Bool) -> ()) {
103+
func postParty(with party: Data, completionHandler: @escaping (Bool, String?) -> ()) {
104104
let currentUser = try! Realm().object(ofType: You.self, forPrimaryKey: "0")
105105

106106
let tokenType = (currentUser?.tokenType)!
@@ -125,12 +125,13 @@ class SwaggerCommunication {
125125
switch response.result {
126126
case .success:
127127
DispatchQueue.main.async(execute: { () -> Void in
128-
completionHandler(true)
128+
let json = JSON(response.result.value!)
129+
completionHandler(true, json.stringValue)
129130
})
130131
case .failure(let e):
131132
print(e)
132133
DispatchQueue.main.async(execute: { () -> Void in
133-
completionHandler(false)
134+
completionHandler(false, nil)
134135
})
135136
}
136137
}.resume()

0 commit comments

Comments
 (0)