-
Notifications
You must be signed in to change notification settings - Fork 500
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using a property wrapper for UserDefaults backed application settings…
… (RiotSettings).
- Loading branch information
1 parent
495ce11
commit c88199a
Showing
7 changed files
with
243 additions
and
626 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
61 changes: 61 additions & 0 deletions
61
Riot/PropertyWrappers/UserDefaultsBackedPropertyWrapper.swift
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,61 @@ | ||
// | ||
// Copyright 2021 New Vector Ltd | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
// Taken from https://www.swiftbysundell.com/articles/property-wrappers-in-swift/ | ||
|
||
import Foundation | ||
|
||
@propertyWrapper | ||
struct UserDefault<Value> { | ||
|
||
private let key: String | ||
private let defaultValue: Value | ||
private let storage: UserDefaults | ||
|
||
init(key: String, defaultValue: Value, storage: UserDefaults = .standard) { | ||
self.defaultValue = defaultValue | ||
self.key = key | ||
self.storage = storage | ||
} | ||
|
||
var wrappedValue: Value { | ||
get { | ||
let value = storage.value(forKey: key) as? Value | ||
return value ?? defaultValue | ||
} | ||
set { | ||
if let optional = newValue as? AnyOptional, optional.isNil { | ||
storage.removeObject(forKey: key) | ||
} else { | ||
storage.setValue(newValue, forKey: key) | ||
} | ||
} | ||
} | ||
} | ||
|
||
extension UserDefault where Value: ExpressibleByNilLiteral { | ||
init(key: String, storage: UserDefaults = .standard) { | ||
self.init(key: key, defaultValue: nil, storage: storage) | ||
} | ||
} | ||
|
||
private protocol AnyOptional { | ||
var isNil: Bool { get } | ||
} | ||
|
||
extension Optional: AnyOptional { | ||
var isNil: Bool { self == nil } | ||
} |
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
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 @@ | ||
Using a property wrapper for UserDefaults backed application settings (RiotSettings). |