-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add heart, thumbs up/down as default-reactions to frequently used rea…
…ctions if there are none (#2112)
- Loading branch information
1 parent
d05bb32
commit 8362ab9
Showing
3 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import Foundation | ||
|
||
extension UserDefaults { | ||
func populateDefaultEmojis() { | ||
let keys = DefaultReactions.allCases | ||
.map { return "\($0.emoji)-usage-timestamps" } | ||
|
||
for key in keys { | ||
if array(forKey: key) == nil { | ||
setValue([Date().timeIntervalSince1970], forKey: key) | ||
} else if let timestamps = array(forKey: key), timestamps.isEmpty { | ||
setValue([Date().timeIntervalSince1970], forKey: key) | ||
} | ||
} | ||
} | ||
} |