mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 13:50:32 +05:30
18 lines
502 B
Swift
18 lines
502 B
Swift
import Defaults
|
|
import SwiftyJSON
|
|
|
|
struct RecentlyOpenedImporter {
|
|
var json: JSON
|
|
|
|
func performImport() {
|
|
if let recentlyOpened = json["recentlyOpened"].array {
|
|
for recentlyOpenedJSON in recentlyOpened {
|
|
let dict = recentlyOpenedJSON.dictionaryValue.mapValues { json in json.stringValue }
|
|
if let item = RecentItemBridge().deserialize(dict) {
|
|
RecentsModel.shared.add(item)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|