DefaultCodable is a Swift µpackage that provides a convenient way to define default values in Codable types for properties that are not present or have a nil value.
Usage
Consider a hypothetical model for Apple products., in which only the property name is required.
enum ProductType: String, Codable, CaseIterable {
case phone, pad, mac, accesory
}
struct Product: Codable {
var name: String
var description: String?
var isAvailable: Bool?
var type: ProductType?
}
Using the @Default property wrapper, we can provide default values for the properties not required and thus get rid of the optionals in our model.
struct Product: Codable {
var name: String
@Default<Empty>
var description: String
@Default<True>
var isAvailable: Bool
@Default<FirstCase>
var type: ProductType
}
With that in place, we can safely decode the following JSON into a Product type.
{
"name": "iPhone 11 Pro"
}
The resulting Product instance is using the default values for those properties not present in the JSON.
▿ Product
- name : "iPhone 11 Pro"
- description : ""
- isAvailable : true
- type : ProductType.phone
If you encode the result back, the resulting JSON will be the same as the one we started with. The @Default property wrapper will not encode the value if it is equal to the default value.
The @Default property wrapper takes a DefaultValueProvider as a parameter. This type provides the default value when a value is not present or is nil.
protocol DefaultValueProvider {
associatedtype Value: Equatable & Codable
static var `default`: Value { get }
}
DefaultCodable provides the following implementations for your convenience:
Empty
It provides an empty instance of a String, Array or any type that implements RangeReplaceableCollection.
EmptyDictionary
It provides an empty instance of a Dictionary.
True and False
Provide true and false respectively for Bool properties.
Zero and One
Provide 0 and 1 respectively for Int properties.
FirstCase
It provides the first case of an enum type as the default value. The enum must implement the CaseIterable protocol.
ZeroDouble
Provide 0 for Double properties.
Default values for custom types
Your custom type must implement the DefaultValueProvider protocol to be compatible with the @Default property wrapper.
Consider the following type that models a role in a conversation:
struct Role: Codable, Equatable, Hashable, RawRepresentable {
let rawValue: String
init?(rawValue: String) {
self.rawValue = rawValue
}
static let user = Role(rawValue: "user")!
static let bot = Role(rawValue: "bot")!
}
If we want the default role to be user, we can implement DefaultValueProvider as follows:
extension Role: DefaultValueProvider {
static let `default` = user
}
With that in place, we can use the @Default property wrapper in any type that has a property of type Role:
struct ChannelAccount: Codable {
var name: String
@Default<Role>
var role: Role
}
DefaultCodable
DefaultCodable is a Swift µpackage that provides a convenient way to define default values in
Codable
types for properties that are not present or have anil
value.Usage
Consider a hypothetical model for Apple products., in which only the property
name
is required.Using the
@Default
property wrapper, we can provide default values for the properties not required and thus get rid of the optionals in our model.With that in place, we can safely decode the following JSON into a
Product
type.The resulting
Product
instance is using the default values for those properties not present in the JSON.If you encode the result back, the resulting JSON will be the same as the one we started with. The
@Default
property wrapper will not encode the value if it is equal to the default value.The
@Default
property wrapper takes aDefaultValueProvider
as a parameter. This type provides the default value when a value is not present or isnil
.DefaultCodable provides the following implementations for your convenience:
Empty
It provides an empty instance of a
String
,Array
or any type that implementsRangeReplaceableCollection
.EmptyDictionary
It provides an empty instance of a
Dictionary
.True
andFalse
Provide
true
andfalse
respectively forBool
properties.Zero
andOne
Provide
0
and1
respectively forInt
properties.FirstCase
It provides the first case of an
enum
type as the default value. Theenum
must implement theCaseIterable
protocol.ZeroDouble
Provide
0
forDouble
properties.Default values for custom types
Your custom type must implement the
DefaultValueProvider
protocol to be compatible with the@Default
property wrapper.Consider the following type that models a role in a conversation:
If we want the default role to be
user
, we can implementDefaultValueProvider
as follows:With that in place, we can use the
@Default
property wrapper in any type that has a property of typeRole
:Installation
Using the Swift Package Manager
Add DefaultCodable as a dependency to your
Package.swift
file. For more information, see the Swift Package Manager documentation.Help & Feedback
DefaultCodable
.