-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix field with multiple constraints. #77
Conversation
@@ -38,7 +38,16 @@ public struct Constraint { | |||
public static func constraints(name: String, attribute: XMLAttribute) throws -> [Constraint] { | |||
let layoutAttributes = try LayoutAttribute.deserialize(name) | |||
let tokens = Lexer.tokenize(input: attribute.text) | |||
return try layoutAttributes.flatMap { try ConstraintParser(tokens: tokens, layoutAttribute: $0).parse() } | |||
var constraints = try layoutAttributes.flatMap { try ConstraintParser(tokens: tokens, layoutAttribute: $0).parse() } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you think it could be possible to create a tuple
that would let me use the constraintName
along with the constraint itself? Something like constraintName.left
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean like this:
indexedConstraint.field = field + ".\(constraint.attribute)"
(outputs eg: "progressFill.right")
Or I was thinking I could add a property multipleConstraint: Bool
and add the suffix in LiveUIApplier.swift
.
Using tuple would maybe unnecessarily duplicate the field
and attribute
... ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure about the inner workings of ReactantUI in this area, but I'm thinking about creating a tuple so that when you want to reference a constraint in Swift code, you don't have to check whether you're working with right or left variant by using indices and using progressFill.left
instead.
Again, not sure if it's even possible if RUI is not ready for this kind of approach.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, tuple solution would be great, but AFAICT it would not be very easy to do. Maybe first fix this bug and then create another issue marked as enhancement ... ?
@@ -38,7 +38,16 @@ public struct Constraint { | |||
public static func constraints(name: String, attribute: XMLAttribute) throws -> [Constraint] { | |||
let layoutAttributes = try LayoutAttribute.deserialize(name) | |||
let tokens = Lexer.tokenize(input: attribute.text) | |||
return try layoutAttributes.flatMap { try ConstraintParser(tokens: tokens, layoutAttribute: $0).parse() } | |||
var constraints = try layoutAttributes.flatMap { try ConstraintParser(tokens: tokens, layoutAttribute: $0).parse() } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure about the inner workings of ReactantUI in this area, but I'm thinking about creating a tuple so that when you want to reference a constraint in Swift code, you don't have to check whether you're working with right or left variant by using indices and using progressFill.left
instead.
Again, not sure if it's even possible if RUI is not ready for this kind of approach.
return try layoutAttributes.flatMap { try ConstraintParser(tokens: tokens, layoutAttribute: $0).parse() } | ||
var constraints = try layoutAttributes.flatMap { try ConstraintParser(tokens: tokens, layoutAttribute: $0).parse() } | ||
if constraints.count > 1 { | ||
for (index, constraint) in constraints.enumerated() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like this could be easily refactored into a more functional style.
|
||
guard | ||
constraints.count > 1, | ||
let field = constraints.first?.field |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this a potential problem? You got this field from every individual constraint before.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think so, here you can get only constraints belonging to the same constraintField
, eg fillHorizontally
returns two constraints, one leading
and one trailing
Fix #76