X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6a7e4474cba9d8be4b2ec445e10f1691f7277c50..refs/heads/master:/examples/key-feed-viewer/viewer/FeedViewer.js diff --git a/examples/key-feed-viewer/viewer/FeedViewer.js b/examples/key-feed-viewer/viewer/FeedViewer.js new file mode 100644 index 00000000..0382a139 --- /dev/null +++ b/examples/key-feed-viewer/viewer/FeedViewer.js @@ -0,0 +1,103 @@ +/* + +This file is part of Ext JS 4 + +Copyright (c) 2011 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. + +*/ +/** + * @class FeedViewer.FeedViewer + * @extends Ext.container.Viewport + * + * The main FeedViewer application + * + * @constructor + * Create a new Feed Viewer app + * @param {Object} config The config object + */ +Ext.define('FeedViewer.App', { + extend: 'Ext.container.Viewport', + + initComponent: function(){ + + Ext.define('Feed', { + extend: 'Ext.data.Model', + fields: ['title', 'url'] + }); + + Ext.define('FeedItem', { + extend: 'Ext.data.Model', + fields: ['title', 'author', { + name: 'pubDate', + type: 'date' + }, 'link', 'description', 'content'] + }); + + Ext.apply(this, { + layout: 'border', + padding: 5, + items: [this.createFeedPanel(), this.createFeedInfo()] + }); + this.callParent(arguments); + }, + + /** + * Create the list of fields to be shown on the left + * @private + * @return {FeedViewer.FeedPanel} feedPanel + */ + createFeedPanel: function(){ + this.feedPanel = Ext.create('widget.feedpanel', { + region: 'west', + collapsible: true, + width: 225, + floatable: false, + split: true, + minWidth: 175, + feeds: [{ + title: 'Sencha Blog', + url: 'http://feeds.feedburner.com/extblog' + }, { + title: 'Sencha Forums', + url: 'http://sencha.com/forum/external.php?type=RSS2' + }, { + title: 'Ajaxian', + url: 'http://feeds.feedburner.com/ajaxian' + }], + listeners: { + scope: this, + feedselect: this.onFeedSelect + } + }); + return this.feedPanel; + }, + + /** + * Create the feed info container + * @private + * @return {FeedViewer.FeedInfo} feedInfo + */ + createFeedInfo: function(){ + this.feedInfo = Ext.create('widget.feedinfo', { + region: 'center', + minWidth: 300 + }); + return this.feedInfo; + }, + + /** + * Reacts to a feed being selected + * @private + */ + onFeedSelect: function(feed, title, url){ + this.feedInfo.addFeed(title, url); + } +}); +