Click here to Skip to main content
15,884,537 members
Articles / Web Development / HTML

Simple IGoogle Gadget

Rate me:
Please Sign up or sign in to vote.
3.64/5 (6 votes)
1 Jul 2008CPOL2 min read 40.8K   17   4
Simple IGoogle gadget to display Expedia RSS.

Introduction

This is a short article about iGoogle gadgets. The Gadgets API is easy to use, but documentation is really fuzzy.

Background

Gadgets are mini applications that use the IGoogle framework and can live inside other sites. In short, it's a page inside an iFrame.

There are several steps to creating your first gadget:

  1. Sign up for the Sandbox. Note: the behavior of the application in Sandbox is different from that in the IGoogle home page (looks like they use different JS libraries).
  2. Add developer tools. These tools will protect your gadget from caching.
  3. Use the online editor or any other editor to create your gadget.
  4. Publish your gadget.

Using the code

The full gadget code is available here.

I decided to create a gadget which displays the hot deals from Expedia.com. After a few minutes in Google, I found the DataSource for my gadget - Expedia RSS Feed.

IGoogle Gadget for Expedia Deals

The gadget has two presentation parts:

  • a form to configure the gadget;
  • a list of entries from the feed;
XML
<ModulePrefs 
   title="Travel Deals on Expedia" 
   description="Hot Travel Deals from Expedia.com. Cheap flights 
                and hotels, cruises and top deals." 
   title_url="http://www.expedia.com/daily/outposts/rss/expedia_rss.asp"
   author="Maxim Kazitov"
   author_email=mvkazit@tut.by
   screenshot="http://www.yogageneration.com/~mvkazit/expedia/iexpedia/screen.jpg" 
   thumbnail="http://www.yogageneration.com/~mvkazit/expedia/iexpedia/thumbnail.gif"
   directory_title="IG Expedia Hot Deals" 
   height="250"
   width="250">

   <icon>http://www.yogageneration.com/~mvkazit/expedia/iexpedia/icon.gif</icon>
   <Require feature="setprefs"/>
   <Require feature="dynamic-height"/>
</ModulePrefs>

In the code above, we are setting up all the required settings for a future gadget and including two modules at the end: "setprefs" and "dynamic-height". The first module allows us to programmatically save the user settings, the second one allows to adjust the height of the IFrame (if content height was changed).

JavaScript
_IG_RegisterOnloadHandler(pgLoad);
function pgLoad()
{
    //...................
}

The pgLoad function will be called and a page will finish the loading process. Actually, the IG framework will add the following line at the end of the body.

JavaScript
_IG_TriggerEvent("domload");

Note: looks like "registerOnLoadHandler()" works only inside the Sandbox.

JavaScript
.................
var m_UsrPref   = new _IG_Prefs(__MODULE_ID__);
m_UsrPref.getBool("hasCfg"))
m_UsrPref.set("hasCfg", true);

It's easy to read/write settings, but you must declare these settings first.

Now, we want to read the RSS feed:

JavaScript
_IG_FetchFeedAsJSON(buildURL(), parseResponse);

function parseResponse(obj) 
{  
    var html = ""; 
      if(obj && obj.Entry)
    {
        var n = obj.Entry.length;
        for(var i=0; i<n; i++)
        {
            html+= buildEntryHTML(obj.Entry[i]);
        }
    }
    rssRender(html); 
}

The framework will automatically refresh feed every 60 minutes or so.

Note: looks like "gadgets.io.makeRequest()" works only inside the Sandbox. In general, gadgets.io* functions work only in the dev environment, and only _IG_* is really working.

JavaScript
_IG_AdjustIFrameHeight();

This call will adjust the size of the IFrame to fit the content height (again, don't try to use adjustHeight). Now, we can publish our gadget and share it with friends.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneraliGoogle gadgets on Microsoft 2003 SharePoint server. Pin
happyUser16-Jan-09 7:22
happyUser16-Jan-09 7:22 
GeneralRe: iGoogle gadgets on Microsoft 2003 SharePoint server. Pin
Maxim Kazitov19-Jan-09 10:49
Maxim Kazitov19-Jan-09 10:49 
GeneralNice. Pin
Rajib Ahmed1-Jul-08 18:51
Rajib Ahmed1-Jul-08 18:51 
GeneralRe: Nice. Pin
Moped1-Apr-10 2:40
Moped1-Apr-10 2:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.