2012-12-23 21:54:42 +00:00
|
|
|
/**
|
|
|
|
* @fileoverview TODO
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
goog.provide('camlistore.BlobItemContainer');
|
2012-12-23 23:18:09 +00:00
|
|
|
goog.provide('camlistore.BlobItemContainer.EventType');
|
2012-12-23 21:54:42 +00:00
|
|
|
|
|
|
|
goog.require('goog.dom');
|
|
|
|
goog.require('goog.dom.classes');
|
2012-12-23 23:18:09 +00:00
|
|
|
goog.require('goog.events.Event');
|
2012-12-23 21:54:42 +00:00
|
|
|
goog.require('goog.events.EventHandler');
|
|
|
|
goog.require('goog.events.EventType');
|
|
|
|
goog.require('goog.ui.Container');
|
|
|
|
goog.require('camlistore.BlobItem');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2012-12-23 22:36:59 +00:00
|
|
|
* @param {camlistore.ServerConnection} connection Connection to the server
|
|
|
|
* for fetching blobrefs and other queries.
|
2012-12-23 21:54:42 +00:00
|
|
|
* @param {goog.dom.DomHelper=} opt_domHelper DOM helper to use.
|
|
|
|
*
|
|
|
|
* @extends {goog.ui.Container}
|
|
|
|
* @constructor
|
|
|
|
*/
|
2012-12-23 22:36:59 +00:00
|
|
|
camlistore.BlobItemContainer = function(connection, opt_domHelper) {
|
2012-12-23 21:54:42 +00:00
|
|
|
goog.base(this, opt_domHelper);
|
2012-12-23 22:36:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @type {camlistore.ServerConnection}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this.connection_ = connection;
|
|
|
|
|
2012-12-23 21:54:42 +00:00
|
|
|
/**
|
|
|
|
* @type {goog.events.EventHandler}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this.eh_ = new goog.events.EventHandler(this);
|
|
|
|
};
|
|
|
|
goog.inherits(camlistore.BlobItemContainer, goog.ui.Container);
|
|
|
|
|
|
|
|
|
2012-12-23 23:18:09 +00:00
|
|
|
/**
|
|
|
|
* @enum {string}
|
|
|
|
*/
|
|
|
|
camlistore.BlobItemContainer.EventType = {
|
|
|
|
SHOW_RECENT: 'Camlistore_BlobInfoContainer_ShowRecent'
|
|
|
|
};
|
|
|
|
|
2012-12-23 21:54:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an initial DOM representation for the component.
|
|
|
|
*/
|
|
|
|
camlistore.BlobItemContainer.prototype.createDom = function() {
|
|
|
|
this.decorateInternal(this.dom_.createElement('div'));
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decorates an existing HTML DIV element.
|
|
|
|
* @param {Element} element The DIV element to decorate.
|
|
|
|
*/
|
|
|
|
camlistore.BlobItemContainer.prototype.decorateInternal = function(element) {
|
|
|
|
camlistore.BlobItemContainer.superClass_.decorateInternal.call(this, element);
|
|
|
|
|
|
|
|
var el = this.getElement();
|
|
|
|
goog.dom.classes.add(el, 'cam-blobitemcontainer');
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** @override */
|
|
|
|
camlistore.BlobItemContainer.prototype.disposeInternal = function() {
|
|
|
|
camlistore.BlobItemContainer.superClass_.disposeInternal.call(this);
|
|
|
|
this.eh_.dispose();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when component's element is known to be in the document.
|
|
|
|
*/
|
|
|
|
camlistore.BlobItemContainer.prototype.enterDocument = function() {
|
|
|
|
camlistore.BlobItemContainer.superClass_.enterDocument.call(this);
|
2012-12-23 22:36:59 +00:00
|
|
|
|
2012-12-23 23:18:09 +00:00
|
|
|
this.eh_.listen(
|
|
|
|
this, camlistore.BlobItemContainer.EventType.SHOW_RECENT,
|
|
|
|
this.showRecent_);
|
2012-12-23 21:54:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when component's element is known to have been removed from the
|
|
|
|
* document.
|
|
|
|
*/
|
|
|
|
camlistore.BlobItemContainer.prototype.exitDocument = function() {
|
|
|
|
camlistore.BlobItemContainer.superClass_.exitDocument.call(this);
|
2012-12-23 22:36:59 +00:00
|
|
|
this.eh_.removeAll();
|
2012-12-23 21:54:42 +00:00
|
|
|
};
|
2012-12-23 23:18:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show recent blobs.
|
|
|
|
*/
|
|
|
|
camlistore.BlobItemContainer.prototype.showRecent_ = function() {
|
|
|
|
this.connection_.getRecentlyUpdatedPermanodes(
|
|
|
|
goog.bind(this.showRecentDone_, this),
|
|
|
|
100); // TODO(bslatkin): Use instance variable for thumbnail size
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {Object} result JSON response to this request.
|
|
|
|
*/
|
|
|
|
camlistore.BlobItemContainer.prototype.showRecentDone_ = function(result) {
|
|
|
|
console.log('Done getting blobs');
|
|
|
|
console.log(result);
|
|
|
|
};
|