GupShup.html.index = {};

GupShup.html.index.methods = {
	process : function(appDirStr){
		var appList = GupShup.util.getJsonFromResponse(appDirStr);
		if((typeof(appList.status) != 'undefined') && (appList.status == 'SUCCESS'))
		{
			var appListArray = appList.appDetails;
			if(appListArray.length > 0)
			{
				var slicedArr = appListArray.slice(0,4);
				var template = GupShup.util.getInnerHTML('appShowcaseTemplate');
				var html = GupShup.util.expandTemplate(template, GupShup.html.apps.appShowMap, slicedArr);
				GupShup.util.setInnerHTML('appShowcaseContainer', html);	
			}
		}
	}
};