Huge refactor to add better structure to the project. Separating features with their associated view and model structure. This should be better organization and will allow us to improve the overall architecture in the future. I forsee many more improvements that can follow this change. e.g. MVVM Arch As well as cleaning up duplicate, unused, functionality. Many files have global functions that can also be moved or be renamed. damus/ ├── Features/ │ ├── <Feature>/ │ │ ├── Views/ │ │ └── Models/ ├── Shared/ │ ├── Components/ │ ├── Media/ │ ├── Buttons/ │ ├── Extensions/ │ ├── Empty Views/ │ ├── ErrorHandling/ │ ├── Modifiers/ │ └── Utilities/ ├── Core/ │ ├── Nostr/ │ ├── NIPs/ │ ├── DIPs/ │ ├── Types/ │ ├── Networking/ │ └── Storage/ Signed-off-by: ericholguin <ericholguin@apache.org>
71 lines
1.7 KiB
Swift
71 lines
1.7 KiB
Swift
//
|
|
// BookmarksManager.swift
|
|
// damus
|
|
//
|
|
// Created by Joel Klabo on 2/18/23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
fileprivate func get_bookmarks_key(pubkey: Pubkey) -> String {
|
|
pk_setting_key(pubkey, key: "bookmarks")
|
|
}
|
|
|
|
func load_bookmarks(pubkey: Pubkey) -> [NostrEvent] {
|
|
let key = get_bookmarks_key(pubkey: pubkey)
|
|
return (UserDefaults.standard.stringArray(forKey: key) ?? []).compactMap {
|
|
event_from_json(dat: $0)
|
|
}
|
|
}
|
|
|
|
func save_bookmarks(pubkey: Pubkey, current_value: [NostrEvent], value: [NostrEvent]) -> Bool {
|
|
let uniq_bookmarks = uniq(value)
|
|
|
|
if uniq_bookmarks != current_value {
|
|
let encoded = uniq_bookmarks.map(event_to_json)
|
|
UserDefaults.standard.set(encoded, forKey: get_bookmarks_key(pubkey: pubkey))
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
class BookmarksManager: ObservableObject {
|
|
|
|
private let pubkey: Pubkey
|
|
|
|
private var _bookmarks: [NostrEvent]
|
|
var bookmarks: [NostrEvent] {
|
|
get {
|
|
return _bookmarks
|
|
}
|
|
set {
|
|
if save_bookmarks(pubkey: pubkey, current_value: _bookmarks, value: newValue) {
|
|
self._bookmarks = newValue
|
|
self.objectWillChange.send()
|
|
}
|
|
}
|
|
}
|
|
|
|
init(pubkey: Pubkey) {
|
|
self._bookmarks = load_bookmarks(pubkey: pubkey)
|
|
self.pubkey = pubkey
|
|
}
|
|
|
|
func isBookmarked(_ ev: NostrEvent) -> Bool {
|
|
return bookmarks.contains(ev)
|
|
}
|
|
|
|
func updateBookmark(_ ev: NostrEvent) {
|
|
if isBookmarked(ev) {
|
|
bookmarks = bookmarks.filter { $0 != ev }
|
|
} else {
|
|
bookmarks.insert(ev, at: 0)
|
|
}
|
|
}
|
|
|
|
func clearAll() {
|
|
bookmarks = []
|
|
}
|
|
}
|