CF8 Ajax Feed Reader Redux

There's been a lot of discussion recently about the page size being generated by the CF8 Ajax components and most of it has been really positive with Adobe assuring us that they're working on minimizing the YUI, Ext and Spry libs before final release.

I've been having a great exchange with Damon and Ashwin of Adobe about this and sent the code for my version of Todd Sharp's CF8 Feed Reader app. Todd did a great job leveraging CF8's Ajax widgets and when I saw the results, I was truly floored by the simplicity of the implementation.
Well, Ashwin really stepped it up and took it a step further. With a few tweaks, he was able to take it a step further and come up with a VERY clean and concise version of the feed reader. I was shocked at how clean this was. He also managed to get it down from 717k to 242k. He also mentioned that the Ajax indicator (loading.gif) had not been optimized (107k) and he was going to update that as well. That would probably bring the page size down another 80-100k! That is amazing work Ashwin!!

Below is Ashwin's code:

index.cfm:

Notice that he uses the CFDIV tag to dynamically bind the results of feeds.cfm to the div. Very sweet!




Ashwin's version of Todd Sharp's Feed Reader






feeds.cfm:

The big change from Todd & my code here is that Ashwin built the links on the fly within the CF page and used the ColdFusion.navigate method to create the XHR call to feed.cfm and bind it to the feedContainer div. Again very sweet!


http://cfsilence.com/blog/client/rss.cfm?mode=fullTodd Sharphttp://feeds.feedburner.com/RaymondCamdensColdfusionBlogRaymond Camdenhttp://www.remotesynthesis.com/blog/rss.cfm?mode=fullBrian Rinaldi



#feedList.feeds.feed[i].feedTitle.xmltext#


feed.cfm:




#feedData.description#




#publishedDate#

#content#



I have to say that I truly love this version. Its very streamlined and so easy. The *only* thing that I didn't like was the inline JS being created in feeds.cfm using ColdFusion.navigate. I would prefer to have an more unobtrusive method and dynamically bind the click event after the feed authors have been returned. I'm not sure if that's possible. Ashwin?

Overall, this is a REALLY awesome implementation and shows how powerful the CF8 Ajax functionality can be.