-
Notifications
You must be signed in to change notification settings - Fork 534
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
Attribute rework #150
Attribute rework #150
Conversation
this.attr = new this.attrDef; | ||
|
||
if (debug.enabled && window.console) { | ||
definedKeys = Object.keys(this.attr); |
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.
Should this be for-in? I'm not sure. We discussed in person.
This could be a good time to address #141 too. |
Is it worth aliasing to |
@necolas: Indeed, originally had it so that this.attributes was an alternate system that worked alongside this.attributes. Think I might go back to that. |
What's the thinking on this now, a few months later? This might break TweetDeck, but not badly. Afaik, we're only passing an object to attachTo in a few places and from a quick scan of the code, the attributes are defined in most places. One thing I'd like to add to this discussion: a misconception I had when starting with Flight was that the component function was run once per instance at attach time. That meant I did things like: this.defaultAttrs({
rifftumbles: []
});
this.somethingGood = function () {
this.attr.rifftumbles.push({
beep: 'boop'
});
}; Of course, then the My question then is: should instance-specific state go in This seems to verbose, not to mention the redundant static data it would produce. this.attributes(function () {
return {
boopSelector: '.boop',
rifftumbles: []
};
}); |
}); | ||
``` | ||
|
||
The object will be assigned to, or merged with, the `attr` property of the | ||
Component or Mixin. It can be accessed accordingly: | ||
This defines a set of attributes that the mixin makes use of. If you define a value it |
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.
Use single spaces after .
} | ||
this.initialize = function(node, attrs) { | ||
attrs = attrs || {}; | ||
this.identity = componentId++; |
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 think we should only assign an identity if there isn't already one - initialize can be called multiple times
this.identity || (this.identity = componentId++)
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.
That is a good plan, its not part of my patch though, I just moved it around. Maybe address as a separate commit?
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.
It was done in the pre-patch code :)
Introduced new attribute system via this.attribute method. this.defaultAttrs will be deprecated shortly.
This patch introduces this.attributes (which we alias to this.defaultAttrs) which improves attributes interaction with mixins and introduces some extra assertions to help developers.
It's all backwards compatible apart from one big change (which I think we need to be cautious about before merging):
If you pass any attributes into attachTo that the component has not declared then they are ignored. Example:
I think this will be a breaking change for Twitter's code base. In might well be for others. Thoughts?
UPDATE: I've completely separated out the old a new behaviour and new behavior. If you define a component using this.defaultAttrs then you get old behaviour, if you use this.attributes you get new behaviour. Now a non-breaking change.
Also, we might want to go to a read only attribute model while we are changing this. Two approaches here:
this.attribute('thing') //=> returns value
this.$attribute('thing') //=> returns jQueried version of that value
This would allow us to do some interesting things because we could around this function in components to add behavior such as logging.