Trickmaker | Solution to hidden treasure of technology
Register or
Login with Facebook for commenting
RSS Trickmaker Home Page Print the Page Mobile Version Trickmaker Desktop Version Trickmaker
advertisement

Be a Guest Blogger

Thursday, December 2, 2010

Extending AIR Feed Reader application with Flash Builder 4

By
Pin It
advertisement
Share It
-----------------------






Previously we created an RSS Feed reading application in Adobe AIR using Flash Builder 4. Our previous application had a simple UI which allowed us to enter a URL for the feed, has two panes one below another. One to list the items in the feed, and has two panes one below another. One to list the items in the feed, and  the other to display the summary of the selected item.
                We assume you have completed the previous part in this series (refer to http://www.trickmaker.com/2010/09/creating-simple-rss-feed-reader-with.html).
                Our previous application could only handle a single feed at a time, which is a rather huge limitation for a feed reading application. In this article we will develop our application further by adding support for reading multiple feeds. We will make a Feed browser of sorts which will display a “tab bar” for switching between active feeds. Each “tab” will display its own list of feed items, and we will be able to select any item read the summary.

Understanding the changes to our application:
                So how do we go about exactly? Let us first take into account the visual additions, in the form on controls/components. We will need:

A tab bar:
                We will simply use a button bar for this. A ButtonBar component makes it easy to add multiple buttons in a row. Each button will have a label corresponding to the title of the feed.

A button to add a new feed:
                Since we have to handle multiple feeds now, we need to have a button for adding a new feed. We will re-purpose the “Load” button of our previous application for this.

A close button:
                We should have some way to remove the currently active tab if we want. This  could be simple button labeled ”X” or if you wish to make it look better you can create an icon for it: this will cover our needs from this application.
                                Now about the changes inside the application. Since  we are now going to handle multiple feeds at the same time, we will need to have an array holding data for all the feeds, so it is ready when we click on it.
                                To wire everything so that it works, with minimal coding we will bind the array of feeds to the ButtonBar. This will automatically ensure that the feeds and tabs are in sync. We will also bind the feed data for active tab to the list showing the data items. This way the data will automatically change as we change the current tab.
                                The HTML component is already bound to this list, so that bit will work as always. What we need to do is to write the code that will add  tabs to this array of tabs and load the corresponding data. We also need code for closing a tab and removing that feed from the array. The rest will work by itself!

                The UI:
                                Our UI not changing drastically. Our load button now transform to a button labeled, “Add Feed”. Our previous code was simply a horizontal group with a text input for the URL and a load button. Right after this we will now add the following:
<s:HGroup width=”100%”>
<s:ButtonBar id=”feedTabs” requireSelection=”true” width=”100%” />
<s:Button label=”X” />
</s:HGroup>
This is another horizontal group with two components. The first is a ButtonBar which will display our tabs and let us switch between them. We have set its width to 100% so it takes us as much space as is available and pushes the close button to the edge. The second is the button to close the currently active tab, labeled simply “X”. The requireSelection=”true” bit in the code is to ensure that at least one tab is selected at any given time (if there is at least one tab of course). This is all we need to add, however the old “Load” button may be renamed to “Add Feed” or simply “+” if required.

                The Code:
                                First of all we will define a new data type for the data associated with out feeds. For each feed tab, we will need to store a title and the feed data at least. Since this is a simple example, we will not manage refreshing the feeds every few minutes, otherwise it would have been wise to store the feed URL as well.
                                For this we will define a new Action-Script 3 class. This is simple to do with Flash Builder 4; simply right- click on your project, and under the “New” menu select ActionScript Class. This will pop up a new dialog box wherein you can enter details of your new class. Here is a little about some of the relevant parameters in the dialog:
                                The first option is labeled “Package”. When you create a new libraries of code, it is a good idea to organize them so that they can be reused later on without problems. If you are creating a new Class for retrieving stocks information from Yahoo! Called “YahooStocks” for a project called “Stock Manager”, you might want to have a package such as com.stockmanager. Although it is recommended that you always place your classes inside a package, we will do without one here since it is a simple example.
                                The second option is for a name for your class . We are giving our class a name of “FeedTab”. The convention is to have a class name where each word begins with a capital such as MultiTouchManager or ArrayCollection.
                                Superclass is used if you are extending an already existing class. Those familiar with object-orinted programming will understand what this means. Those unfamiliar, should look up inheritance in object-oriented programming. You could use this feature for example to create your custom version of the “Video” class called “SubtitledVideo” to provide support for subtitled.
                                Interfaces are a way of making different classes compatible with each other .For example, while ArrayCollection, and XMLListCollecton classes are very different – one stores data as an unstructured array, and the other as structured XML - both can be used as a source for the list.  This is because both implement the IList interface. For them to be part of a list they both need to provide a few featured, such as moving forward and backward in a list and getting the length of the list. If you create your own custom class which implements IList, it too will be usable.
                                This is entirely of Our “FeedTab” class:
Package
{
Import mx.collection.XMLListCollection;
Public class FeedTab
{
Public var title:String
Public var
data:XMLListCollection;
public function
FeedTab(title:String,data:XMLListCllection) {
This.title=title;
This.data=data;
}
}
}
                                All it is doing is storing the data needed by our tab, which is: a title for the feed, and the feed data itself. The feed data itself contains a title, however this make a things little bit simpler. The FeedTab function which serves as a constructor for this Class takes two the two pieces of data this class needs and stores them in the public variables which make up this class.
                                Finally we will modify our main code. First of all remove the variable feedData, we will no longer need it a we handle multiple feeds. Secondly, we will add a new variable, and array to store all our feed’s data.
                [Bindable]
                private var
feeds:ArrayCollection = new
ArrayCollection();
                                Now in our onFeedLoaded function, we will need to add this feed to our list of feeds instead.
                private function
                onFeedLoaded(event:Event):void {
                var rssFeed:XML =
                XML((event.target as URLLoader).data);
                var
                feedData:XMLListCollection = new
XMLListCollection(rssFeed.channel.item);
var feedTab:FeedTab = new
FeedTab(rssFeed.channel.titles,feedData);
feeds.addItem(feedTab);
feedTabs.selectedItem = feed;
}
                                The first line remains unchanged, and in the second line we are temporarily storing the XMLListCollection made up of all the items in the RSS feed, in a variable called feedData. Then we go on to create a FeedTab item (which is the class we just created), by giving it the title of the feed (which can be found under channel.item of the RSS feed), and the feedData. We then push this FeedTabitem into our list of feeds, and finally make the newly added FeedTab the new selected tab.
                                We should now go ahead and add “feeds” as the dataProvider for the ButtonBar, and set the ButtonBar’s labelField attribute to “title” since that is the name of the field where we are storing the title of the feed that is to be used as a label for the button.
                                Finally, we need to handle removing tabs. This is easily done by adding a click handler for the close button with the following simple line fo code:
feeds.removeItemAt(feedTabs.selectedIndex);
                                Here feedTabs is the id of the ButtonBar that lists the feed items. We are removing the item at the selectedIndex of the ButtonBar based tab bar, from the feeds array. This is only  working as expected as the order of items in the feeds array and the tab is the same.
                                Believe it or not, at this point we have a functional multi-tab feed browser! Go ahead and test your code.
                                For an expanded version of this tutorial and the full code of this tutorial and the full code of this application you can check out this article online at http://www.thinkdigit.com/fb4_tut1_5 .

Source: thinkdigit magazine


Other recommended posts:

Attachments:


If you LIKE this, then copy the below and put this in your WEBSITE or BLOG