Question

I'm new to Adobe Flex, and am working on a desktop Air application. The jist of my problem is figuring out how a child component can be aware of one of its parents properties. The parent might be more than one level up.

Here's a simplified example to illustrate.

I have a custom component that is made up of a few child components, in the example there is only a single button. I have several instances of this custom component next to each other. When one of the child buttons is pressed, I want to generate an event that lets another part of my application know which instance of the custom component the button belonged to. I understand how to create custom events, so I left that part out of the sample code.

My current approach involves creating a property, (e.g. a "position" integer) that I assign to each of the parent components in mxml. The children components also have the position property, which is set to match the parent when the "preinitialize" event occurs. According to the component lifecyle, the preinitialize event occurs in parent components first, then goes down the line of children. Is this safe? Or is there a better way to do this?

Using data binding seems a waste of resources, because the position property never changes after the application loads.

Here are some relevant code snippets.

main.mxml

<s:VGroup>
    <components:CustomComponent position="0"/>
    <components:CustomComponent position="1"/>
    <components:CustomComponent position="2"/>
</s:VGroup>

CustomComponent.mxml

<fx:Script>
    <![CDATA[
        [Bindable]
        public var position:int;
    ]]>
</fx:Script>

<components:CustomButton 
    preinitialize="(event.target as CustomButton).setPosition(position)"/>

CustomButton.mxml

<s:Button>
    <fx:Script>
        <![CDATA[
            public var position:int;

            public function setPosition(position:int):void
            {
                this.position = position;
            }
        ]]>
    </fx:Script>    
</s:Button>
Was it helpful?

Solution

"how a child component can be aware of one of its parents properties."

-> this.parent.propertyName;

The parent might be more than one level up. -> Then it is not a parent, but an ancestor. You might need to go up the parent chain. this.parent.parent.

Also look into this.document and this.owner. For list based controls these mean different things.

Finally, Look into event bubbling. Sounds like you want your events to bubble up to your top level container.

OTHER TIPS

Generally, this is where a framework/microarchitecture comes into play. You have to keep in mind, that the Flex/Adobe Air library is first and foremost a component library. That means you don't get anything out of the box to help with things such as communication between different part of the app. Sometimes folks will try to use the Singleton Pattern to manage dependencies, but I can tell you from experience that is a horrible mistake that will cost you in the long run as the code becomes very brittle and fragile with high cyclomatic complexity.

Nowadays, there are many frameworks designed to help you with the problem and others that you have and will face. A list of these frameworks can be found through Google, but Swiz, Mate, Robotlegs and Parsley is a great starting point.

There are other frameworks that you may run across such as Cairngorm and PureMVC. Those are generally termed "first generation" frameworks. Personally, I shy away from those because they feel a little too heavy an intrusive.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top