Skip to content

Commit a952dde

Browse files
AppStorage: add support for Date values (#3470)
Co-authored-by: Stephen Celis <[email protected]>
1 parent fdad435 commit a952dde

File tree

2 files changed

+71
-0
lines changed

2 files changed

+71
-0
lines changed

Sources/ComposableArchitecture/SharedState/PersistenceKey/AppStorageKey.swift

+32
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,15 @@ extension PersistenceReaderKey {
4747
AppStorageKey(key)
4848
}
4949

50+
/// Creates a persistence key that can read and write to a Date user default.
51+
///
52+
/// - Parameter key: The key to read and write the value to in the user defaults store.
53+
/// - Returns: A user defaults persistence key.
54+
public static func appStorage(_ key: String) -> Self
55+
where Self == AppStorageKey<Date> {
56+
AppStorageKey(key)
57+
}
58+
5059
/// Creates a persistence key that can read and write to a user default as data.
5160
///
5261
/// - Parameter key: The key to read and write the value to in the user defaults store.
@@ -121,6 +130,15 @@ extension PersistenceReaderKey {
121130
AppStorageKey(key)
122131
}
123132

133+
/// Creates a persistence key that can read and write to an optional Date user default.
134+
///
135+
/// - Parameter key: The key to read and write the value to in the user defaults store.
136+
/// - Returns: A user defaults persistence key.
137+
public static func appStorage(_ key: String) -> Self
138+
where Self == AppStorageKey<Date?> {
139+
AppStorageKey(key)
140+
}
141+
124142
/// Creates a persistence key that can read and write to a user default as optional data.
125143
///
126144
/// - Parameter key: The key to read and write the value to in the user defaults store.
@@ -198,6 +216,13 @@ public struct AppStorageKey<Value: Sendable>: Sendable {
198216
self.store = UncheckedSendable(store)
199217
}
200218

219+
fileprivate init(_ key: String) where Value == Date {
220+
@Dependency(\.defaultAppStorage) var store
221+
self.lookup = CastableLookup()
222+
self.key = key
223+
self.store = UncheckedSendable(store)
224+
}
225+
201226
fileprivate init(_ key: String) where Value == Data {
202227
@Dependency(\.defaultAppStorage) var store
203228
self.lookup = CastableLookup()
@@ -254,6 +279,13 @@ public struct AppStorageKey<Value: Sendable>: Sendable {
254279
self.store = UncheckedSendable(store)
255280
}
256281

282+
fileprivate init(_ key: String) where Value == Date? {
283+
@Dependency(\.defaultAppStorage) var store
284+
self.lookup = OptionalLookup(base: CastableLookup())
285+
self.key = key
286+
self.store = UncheckedSendable(store)
287+
}
288+
257289
fileprivate init(_ key: String) where Value == Data? {
258290
@Dependency(\.defaultAppStorage) var store
259291
self.lookup = OptionalLookup(base: CastableLookup())

Tests/ComposableArchitectureTests/AppStorageTests.swift

+39
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,38 @@ final class AppStorageTests: XCTestCase {
5151
XCTAssertEqual(defaults.url(forKey: "url"), URL(string: "https://example.com"))
5252
}
5353

54+
func testDefaultsReadDate() {
55+
let expectedDate = Date()
56+
@Dependency(\.defaultAppStorage) var defaults
57+
defaults.set(expectedDate, forKey: "date")
58+
@Shared(.appStorage("date")) var date: Date?
59+
XCTAssertEqual(date, expectedDate)
60+
}
61+
62+
func testDefaultsRegistered_Date() {
63+
let expectedDate = Date()
64+
@Dependency(\.defaultAppStorage) var defaults
65+
@Shared(.appStorage("date")) var date: Date = expectedDate
66+
XCTAssertEqual(defaults.object(forKey: "date") as? Date, expectedDate)
67+
68+
let newDate = Date().addingTimeInterval(60)
69+
date = newDate
70+
XCTAssertEqual(date, newDate)
71+
XCTAssertEqual(defaults.object(forKey: "date") as? Date, newDate)
72+
}
73+
74+
func testDefaultsRegistered_Optional_Date() {
75+
let initialDate: Date? = Date()
76+
@Dependency(\.defaultAppStorage) var defaults
77+
@Shared(.appStorage("date")) var date: Date? = initialDate
78+
XCTAssertEqual(defaults.object(forKey: "date") as? Date, initialDate)
79+
80+
let newDate = Date().addingTimeInterval(60)
81+
date = newDate
82+
XCTAssertEqual(date, newDate)
83+
XCTAssertEqual(defaults.object(forKey: "date") as? Date, newDate)
84+
}
85+
5486
func testDefaultsRegistered_Optional() {
5587
@Dependency(\.defaultAppStorage) var defaults
5688
@Shared(.appStorage("data")) var data: Data?
@@ -184,6 +216,13 @@ final class AppStorageTests: XCTestCase {
184216
XCTAssertEqual(url2, nil)
185217
}
186218

219+
func testOptionalInitializers_Date() {
220+
@Shared(.appStorage("date1")) var date1: Date?
221+
XCTAssertEqual(date1, nil)
222+
@Shared(.appStorage("date2")) var date2: Date? = nil
223+
XCTAssertEqual(date2, nil)
224+
}
225+
187226
func testRemoveDuplicates() {
188227
@Dependency(\.defaultAppStorage) var store
189228
@Shared(.appStorage("count")) var count = 0

0 commit comments

Comments
 (0)