unioil-loyalty-rn-app/ios/Pods/lottie-ios/Sources/Private/Model/ShapeItems/Rectangle.swift

73 lines
2.3 KiB
Swift

//
// Rectangle.swift
// lottie-swift
//
// Created by Brandon Withrow on 1/8/19.
//
import Foundation
final class Rectangle: ShapeItem {
// MARK: Lifecycle
required init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: Rectangle.CodingKeys.self)
direction = try container.decodeIfPresent(PathDirection.self, forKey: .direction) ?? .clockwise
position = try container.decode(KeyframeGroup<Vector3D>.self, forKey: .position)
size = try container.decode(KeyframeGroup<Vector3D>.self, forKey: .size)
cornerRadius = try container.decode(KeyframeGroup<Vector1D>.self, forKey: .cornerRadius)
try super.init(from: decoder)
}
required init(dictionary: [String: Any]) throws {
if
let directionRawType = dictionary[CodingKeys.direction.rawValue] as? Int,
let direction = PathDirection(rawValue: directionRawType)
{
self.direction = direction
} else {
direction = .clockwise
}
let positionDictionary: [String: Any] = try dictionary.value(for: CodingKeys.position)
position = try KeyframeGroup<Vector3D>(dictionary: positionDictionary)
let sizeDictionary: [String: Any] = try dictionary.value(for: CodingKeys.size)
size = try KeyframeGroup<Vector3D>(dictionary: sizeDictionary)
let cornerRadiusDictionary: [String: Any] = try dictionary.value(for: CodingKeys.cornerRadius)
cornerRadius = try KeyframeGroup<Vector1D>(dictionary: cornerRadiusDictionary)
try super.init(dictionary: dictionary)
}
// MARK: Internal
/// The direction of the rect.
let direction: PathDirection
/// The position
let position: KeyframeGroup<Vector3D>
/// The size
let size: KeyframeGroup<Vector3D>
/// The Corner radius of the rectangle
let cornerRadius: KeyframeGroup<Vector1D>
override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(direction, forKey: .direction)
try container.encode(position, forKey: .position)
try container.encode(size, forKey: .size)
try container.encode(cornerRadius, forKey: .cornerRadius)
}
// MARK: Private
private enum CodingKeys: String, CodingKey {
case direction = "d"
case position = "p"
case size = "s"
case cornerRadius = "r"
}
}