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

Commit 885f788

Browse files
committed
More Apple Watch improvements, Add Read Later support
1 parent aeb84d3 commit 885f788

File tree

6 files changed

+53
-9
lines changed

6 files changed

+53
-9
lines changed

Slide for Apple Watch Extension/InterfaceController.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,13 @@ class InterfaceController: Votable {
116116
}
117117

118118
func loadData(_ session: WCSession) {
119+
print("Heartbeat")
119120
if session.isReachable && session.activationState == .activated {
120121
checkTimer?.invalidate()
121122
checkTimer = nil
122123
} else if checkTimer == nil {
123124
checkTimer = Timer.scheduledTimer(withTimeInterval: 1, repeats: true, block: { (_) in
124-
self.loadData(WCSession.default)
125+
self.loadData(session)
125126
})
126127
return
127128
} else {

Slide for Apple Watch Extension/PostActionMenuController.swift

+9
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@ class PostActionMenuController: Votable {
2121
public var parent: InterfaceController?
2222
@IBOutlet var thumbImage: WKInterfaceImage!
2323
@IBOutlet var thumbGroup: WKInterfaceGroup!
24+
@IBOutlet var readlater: WKInterfaceButton!
2425
@IBOutlet var upvoteButton: WKInterfaceButton!
2526
@IBOutlet var downvoteButton: WKInterfaceButton!
2627
@IBOutlet var linkInfo: WKInterfaceLabel!
2728
var id: String?
29+
var sub: String?
2830
@IBAction func didUpvote() {
2931
(WKExtension.shared().visibleInterfaceController as? Votable)?.sharedUp = upvoteButton
3032
(WKExtension.shared().visibleInterfaceController as? Votable)?.sharedDown = downvoteButton
@@ -36,6 +38,11 @@ class PostActionMenuController: Votable {
3638
(WKExtension.shared().visibleInterfaceController as? Votable)?.doVote(id: id!, upvote: false, downvote: true)
3739
}
3840

41+
@IBAction func didSaveLater() {
42+
(WKExtension.shared().visibleInterfaceController as? Votable)?.sharedReadLater = readlater
43+
(WKExtension.shared().visibleInterfaceController as? Votable)?.doReadLater(id: id!, sub: sub!)
44+
}
45+
3946
@IBAction func openComments() {
4047
// if !(self.parent?.isPro ?? true) {
4148
// self.parent?.presentController(withName: "Pro", context: parent!)
@@ -89,9 +96,11 @@ class PostActionMenuController: Votable {
8996

9097
upvoteButton.setBackgroundColor((myModel.dictionary["upvoted"] ?? false) as! Bool ? UIColor.init(hexString: "#FF5700") : UIColor.gray)
9198
downvoteButton.setBackgroundColor((myModel.dictionary["downvoted"] ?? false) as! Bool ? UIColor.init(hexString: "#9494FF") : UIColor.gray)
99+
readlater.setBackgroundColor((myModel.dictionary["readLater"] ?? false) as! Bool ? UIColor.init(hexString: "#4CAF50") : UIColor.gray)
92100

93101
scoreLabel.setText(myModel.scoreText)
94102
id = myModel.id
103+
sub = myModel.sub
95104
commentLabel.setText(myModel.commentText)
96105
WCSession.default.sendMessage(["comments": myModel.id!], replyHandler: { (message) in
97106
self.comments = message["comments"] as? [NSDictionary] ?? []

Slide for Apple Watch Extension/SubmissionRowController.swift

+4-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ public class SubmissionRowController: NSObject {
4747
}
4848

4949
@IBAction func didSaveLater() {
50+
(WKExtension.shared().visibleInterfaceController as? Votable)?.sharedReadLater = readlater
51+
(WKExtension.shared().visibleInterfaceController as? Votable)?.doReadLater(id: id!, sub: sub!)
5052
}
5153

5254
func setData(dictionary: NSDictionary, color: UIColor) {
@@ -145,7 +147,8 @@ public class SubmissionRowController: NSObject {
145147
default:
146148
text = "Link"
147149
}
148-
150+
151+
readlater.setBackgroundColor((dictionary["readLater"] ?? false) as! Bool ? UIColor.init(hexString: "#4CAF50") : UIColor.gray)
149152
upvote.setBackgroundColor((dictionary["upvoted"] ?? false) as! Bool ? UIColor.init(hexString: "#FF5700") : UIColor.gray)
150153
downvote.setBackgroundColor((dictionary["downvoted"] ?? false) as! Bool ? UIColor.init(hexString: "#9494FF") : UIColor.gray)
151154
readlater.setBackgroundColor(UIColor.gray)

Slide for Apple Watch Extension/Votable.swift

+18
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ import WatchKit
1313
class Votable: WKInterfaceController {
1414
weak var sharedUp: WKInterfaceButton?
1515
weak var sharedDown: WKInterfaceButton?
16+
weak var sharedReadLater: WKInterfaceButton?
17+
1618
func doVote(id: String, upvote: Bool, downvote: Bool) {
1719
print("Doing vote")
1820
WCSession.default.sendMessage(["vote": id, "upvote": upvote, "downvote": downvote], replyHandler: { (result) in
@@ -23,6 +25,22 @@ class Votable: WKInterfaceController {
2325
} else {
2426
WKInterfaceDevice.current().play(.failure)
2527
}
28+
self.sharedUp = nil
29+
self.sharedDown = nil
30+
}, errorHandler: { (error) in
31+
print(error)
32+
})
33+
}
34+
35+
func doReadLater(id: String, sub: String) {
36+
WCSession.default.sendMessage(["readlater": id, "sub": sub], replyHandler: { (result) in
37+
if result["failed"] == nil {
38+
WKInterfaceDevice.current().play(.success)
39+
self.sharedReadLater?.setBackgroundColor((result["isReadLater"] ?? false) as! Bool ? UIColor.init(hexString: "#4CAF50") : UIColor.gray)
40+
} else {
41+
WKInterfaceDevice.current().play(.failure)
42+
}
43+
self.sharedReadLater = nil
2644
}, errorHandler: { (error) in
2745
print(error)
2846
})

Slide for Apple Watch/Base.lproj/Interface.storyboard

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<document type="com.apple.InterfaceBuilder.WatchKit.Storyboard" version="3.0" toolsVersion="16095" targetRuntime="watchKit" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="AgC-eL-Hgc">
2+
<document type="com.apple.InterfaceBuilder.WatchKit.Storyboard" version="3.0" toolsVersion="15505" targetRuntime="watchKit" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="AgC-eL-Hgc">
33
<device id="watch38"/>
44
<dependencies>
55
<deployment identifier="watchOS"/>
6-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="16084.1"/>
7-
<plugIn identifier="com.apple.InterfaceBuilder.IBWatchKitPlugin" version="16012"/>
6+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15509"/>
7+
<plugIn identifier="com.apple.InterfaceBuilder.IBWatchKitPlugin" version="15501"/>
88
</dependencies>
99
<scenes>
1010
<!--DetailView-->
@@ -49,10 +49,13 @@
4949
</label>
5050
</items>
5151
</group>
52-
<group width="114" alignment="center" spacing="20" id="0H8-4W-QOW">
52+
<group alignment="center" spacing="20" id="0H8-4W-QOW">
5353
<items>
5454
<button width="25" height="25" alignment="left" backgroundImage="readLater" id="qt7-eH-tmW">
5555
<color key="titleColor" red="1" green="0.64263265049999996" blue="0.23978169960000001" alpha="1" colorSpace="custom" customColorSpace="displayP3"/>
56+
<connections>
57+
<action selector="didSaveLater" destination="lXM-Ia-ysh" id="CCa-BF-E9i"/>
58+
</connections>
5659
</button>
5760
<button width="25" height="25" alignment="left" backgroundImage="upvote" id="5aK-kC-jcp">
5861
<color key="titleColor" red="1" green="0.64263265049999996" blue="0.23978169960000001" alpha="1" colorSpace="custom" customColorSpace="displayP3"/>
@@ -100,6 +103,7 @@
100103
<outlet property="downvoteButton" destination="TB9-mU-nTN" id="84v-nV-s1E"/>
101104
<outlet property="imageGroup" destination="UZW-Un-KSZ" id="pQL-zA-1E1"/>
102105
<outlet property="linkInfo" destination="k9a-cP-5NH" id="F0Y-6Z-bam"/>
106+
<outlet property="readlater" destination="qt7-eH-tmW" id="Dpj-0S-sJi"/>
103107
<outlet property="scoreLabel" destination="TtZ-h5-zAT" id="zQQ-Ug-haI"/>
104108
<outlet property="thumbGroup" destination="lCG-GK-WZC" id="Ucv-Pu-mzg"/>
105109
<outlet property="thumbImage" destination="VCe-ez-bLZ" id="TDg-wz-TD0"/>

Slide for Reddit/WatchSessionManager.swift

+12-3
Original file line numberDiff line numberDiff line change
@@ -122,14 +122,23 @@ public class WatchSessionManager: NSObject, WCSessionDelegate {
122122
replyHandler(["failed": true])
123123
}
124124
} else if message["readlater"] != nil {
125-
ReadLater.addReadLater(id: message["readlater"] as! String, subreddit: message["sub"] as! String)
126-
replyHandler([:])
125+
DispatchQueue.main.async {
126+
if ReadLater.isReadLater(id: message["readlater"] as! String) {
127+
ReadLater.removeReadLater(id: message["readlater"] as! String)
128+
replyHandler(["isReadLater": false])
129+
} else {
130+
ReadLater.addReadLater(id: message["readlater"] as! String, subreddit: message["sub"] as! String)
131+
replyHandler(["isReadLater": true])
132+
}
133+
}
127134
} else if message["sublist"] != nil {
128135
var colorDict = [String: String]()
129136
var sublist = Subscriptions.pinned
130137
sublist.append(contentsOf: Subscriptions.subreddits)
131138
for sub in Subscriptions.subreddits {
132-
colorDict[sub] = ColorUtil.getColorForSub(sub: sub).hexString()
139+
if !sub.contains("m/") {
140+
colorDict[sub] = ColorUtil.getColorForSub(sub: sub).hexString()
141+
}
133142
}
134143
replyHandler(["subs": colorDict, "orderedsubs": sublist, "pro": SettingValues.isPro])
135144
} else if message["links"] != nil {

0 commit comments

Comments
 (0)