Last active
February 1, 2018 07:24
-
-
Save srdanrasic/ad868087ce39915d3e2b01580fb5fd30 to your computer and use it in GitHub Desktop.
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
import UIKit | |
public struct Style<View: UIView> { | |
public let style: (View) -> Void | |
public init(style: @escaping (View) -> Void) { | |
self.style = style | |
} | |
/// Applies self to the view. | |
public func apply(to view: View) { | |
style(view) | |
} | |
/// Style that does nothing (keeps the default/native style). | |
public static var native: Style<View> { | |
return Style { _ in } | |
} | |
} | |
extension UIView { | |
/// For example: `let nameLabel = UILabel(style: Stylesheet.Profile.name)`. | |
public convenience init<V>(style: Style<V>) { | |
self.init(frame: .zero) | |
apply(style) | |
} | |
/// Applies the given style to self. | |
public func apply<V>(_ style: Style<V>) { | |
guard let view = self as? V else { | |
print("💥 Could not apply style for \(V.self) to \(type(of: self))") | |
return | |
} | |
style.apply(to: view) | |
} | |
/// Returns self with the style applied. For example: `let nameLabel = UILabel().styled(with: Stylesheet.Profile.name)`. | |
public func styled<V>(with style: Style<V>) -> Self { | |
guard let view = self as? V else { | |
print("💥 Could not apply style for \(V.self) to \(type(of: self))") | |
return self | |
} | |
style.apply(to: view) | |
return self | |
} | |
} | |
extension Style { | |
/// Returns current style modified by the given closure. | |
public func modifying(_ other: @escaping (View) -> Void) -> Style { | |
return Style { | |
self.apply(to: $0) | |
other($0) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment