generated from element-hq/.github
-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expose sliding sync proxy URL on the server selection screen; make ap…
…p more resilient to slidinc sync configuration errors, remove fatal errors
- Loading branch information
1 parent
2fd0491
commit 8c0e9f5
Showing
11 changed files
with
159 additions
and
54 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
69 changes: 69 additions & 0 deletions
69
ElementX/Sources/Other/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,69 @@ | ||
// | ||
// 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) | ||
} | ||
let tmpKey = key | ||
DispatchQueue.main.async { | ||
NotificationCenter.default.post(name: .userDefaultValueUpdated, | ||
object: tmpKey) | ||
} | ||
} | ||
} | ||
} | ||
|
||
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 } | ||
} | ||
|
||
extension Notification.Name { | ||
static let userDefaultValueUpdated = Notification.Name("userDefaultValueUpdated") | ||
} |
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
Oops, something went wrong.