2011-11-05 16:46:53 +00:00
|
|
|
'use strict';
|
|
|
|
|
2012-05-21 10:38:18 +00:00
|
|
|
/*@
|
2012-05-31 10:32:54 +00:00
|
|
|
Ox.InfoList <f> Info List
|
2012-05-21 10:38:18 +00:00
|
|
|
options <o> Options
|
|
|
|
self <o> Shared private variable
|
2012-07-04 11:29:18 +00:00
|
|
|
([options[, self]]) -> <o:Ox.List> Info List
|
2012-05-21 10:38:18 +00:00
|
|
|
@*/
|
2011-08-19 06:41:48 +00:00
|
|
|
Ox.InfoList = function(options, self) {
|
2011-11-03 15:42:41 +00:00
|
|
|
|
2011-08-19 06:41:48 +00:00
|
|
|
self = self || {};
|
|
|
|
var that = Ox.Element({}, self)
|
|
|
|
.defaults({
|
|
|
|
borderRadius: 0,
|
|
|
|
defaultRatio: 1,
|
|
|
|
draggable: false,
|
|
|
|
id: '',
|
|
|
|
item: null,
|
|
|
|
items: null,
|
|
|
|
keys: [],
|
|
|
|
max: -1,
|
|
|
|
min: 0,
|
2012-06-19 12:15:20 +00:00
|
|
|
query: {conditions: [], operator: '&'},
|
2012-06-29 12:19:34 +00:00
|
|
|
selectAsYouType: '',
|
2011-08-19 06:41:48 +00:00
|
|
|
selected: [],
|
|
|
|
size: 192,
|
|
|
|
sort: [],
|
2012-10-26 14:46:14 +00:00
|
|
|
sums: [],
|
2011-08-19 06:41:48 +00:00
|
|
|
unique: ''
|
|
|
|
})
|
|
|
|
.options(options || {})
|
2012-05-28 19:35:41 +00:00
|
|
|
.update({
|
|
|
|
items: function() {
|
2012-06-19 12:15:20 +00:00
|
|
|
that.$element.options({items: self.options.items});
|
|
|
|
},
|
|
|
|
query: function() {
|
|
|
|
that.$element.options({query: self.options.query});
|
2012-05-28 19:35:41 +00:00
|
|
|
},
|
|
|
|
selected: function() {
|
2012-06-19 12:15:20 +00:00
|
|
|
that.$element.options({selected: self.options.selected});
|
2012-05-28 19:35:41 +00:00
|
|
|
},
|
|
|
|
sort: function() {
|
|
|
|
updateKeys();
|
2012-06-19 12:15:20 +00:00
|
|
|
that.$element.options({sort: self.options.sort});
|
2012-05-28 19:35:41 +00:00
|
|
|
},
|
|
|
|
width: function() {
|
|
|
|
var width = getItemWidth();
|
|
|
|
$('.OxInfoElement').each(function() {
|
|
|
|
var $parent = $(this).parent(),
|
2012-06-13 08:37:07 +00:00
|
|
|
id = parseInt(/OxId(.*?)$/.exec(this.className)[1], 10);
|
2012-05-28 19:35:41 +00:00
|
|
|
$parent.css({width: width - 144});
|
|
|
|
$parent.parent().css({width: width - 144});
|
|
|
|
$parent.parent().parent().css({width: width - 8});
|
|
|
|
Ox.UI.elements[id].options({width: width - 152});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2011-08-19 06:41:48 +00:00
|
|
|
|
2011-10-17 10:23:16 +00:00
|
|
|
self.iconSize = Math.round(self.options.size * 2/3);
|
2011-08-19 06:41:48 +00:00
|
|
|
self.itemHeight = self.options.size;
|
|
|
|
|
2012-04-22 11:50:57 +00:00
|
|
|
that.setElement(
|
|
|
|
Ox.List({
|
2011-08-19 06:41:48 +00:00
|
|
|
construct: constructItem,
|
|
|
|
draggable: self.options.draggable,
|
|
|
|
id: self.options.id,
|
|
|
|
itemHeight: self.itemHeight,
|
|
|
|
items: self.options.items,
|
|
|
|
itemWidth: getItemWidth(),
|
|
|
|
keys: self.options.keys,
|
|
|
|
max: self.options.max,
|
|
|
|
min: self.options.min,
|
|
|
|
orientation: 'vertical',
|
|
|
|
pageLength: 10,
|
2012-06-19 12:15:20 +00:00
|
|
|
query: self.options.query,
|
2012-06-29 12:19:34 +00:00
|
|
|
selectAsYouType: self.options.selectAsYouType,
|
2011-08-19 06:41:48 +00:00
|
|
|
selected: self.options.selected,
|
|
|
|
sort: self.options.sort,
|
2012-10-26 14:46:14 +00:00
|
|
|
sums: self.options.sums,
|
2011-08-19 06:41:48 +00:00
|
|
|
type: 'info',
|
|
|
|
unique: self.options.unique
|
2012-06-30 09:20:37 +00:00
|
|
|
})
|
2011-10-16 12:32:02 +00:00
|
|
|
.addClass('OxInfoList')
|
2012-06-30 09:20:37 +00:00
|
|
|
.bindEvent(function(data, event) {
|
2012-06-30 16:12:05 +00:00
|
|
|
if (event == 'select') {
|
|
|
|
self.options.selected = data.ids;
|
|
|
|
}
|
2012-06-30 09:20:37 +00:00
|
|
|
that.triggerEvent(event, data);
|
2012-04-22 11:50:57 +00:00
|
|
|
})
|
|
|
|
);
|
2011-08-19 06:41:48 +00:00
|
|
|
|
|
|
|
updateKeys();
|
|
|
|
|
|
|
|
function constructItem(data) {
|
|
|
|
var isEmpty = Ox.isEmpty(data),
|
|
|
|
data = !isEmpty
|
|
|
|
? self.options.item(data, self.options.sort, self.options.size)
|
|
|
|
: {
|
|
|
|
icon: {
|
2011-10-17 10:23:16 +00:00
|
|
|
width: Math.round(self.iconSize * (
|
2011-08-19 06:41:48 +00:00
|
|
|
self.options.defaultRatio >= 1 ? 1 : self.options.defaultRatio
|
|
|
|
)),
|
2011-10-17 10:23:16 +00:00
|
|
|
height: Math.round(self.iconSize / (
|
2011-08-19 06:41:48 +00:00
|
|
|
self.options.defaultRatio <= 1 ? 1 : self.options.defaultRatio
|
|
|
|
))
|
|
|
|
},
|
|
|
|
info: {}
|
2012-02-01 11:57:21 +00:00
|
|
|
},
|
|
|
|
$icon = Ox.Element()
|
2011-08-19 06:41:48 +00:00
|
|
|
.css({
|
|
|
|
float: 'left',
|
2011-10-16 12:32:02 +00:00
|
|
|
width: '132px',
|
2011-10-16 12:46:27 +00:00
|
|
|
height: '192px',
|
2012-05-26 15:48:19 +00:00
|
|
|
margin: '4px 2px 4px 2px'
|
2011-08-19 06:41:48 +00:00
|
|
|
})
|
|
|
|
.append(
|
|
|
|
Ox.IconItem(Ox.extend(data.icon, {
|
|
|
|
borderRadius: self.options.borderRadius,
|
2011-10-17 10:23:16 +00:00
|
|
|
iconHeight: self.iconSize,
|
|
|
|
iconWidth: self.iconSize,
|
|
|
|
imageHeight: data.icon.height,
|
|
|
|
imageWidth: data.icon.width,
|
2011-08-19 06:41:48 +00:00
|
|
|
itemHeight: self.itemHeight,
|
2011-10-17 10:23:16 +00:00
|
|
|
itemWidth: 128
|
2011-08-19 06:41:48 +00:00
|
|
|
}))
|
2011-10-16 12:32:02 +00:00
|
|
|
.addClass('OxInfoIcon')
|
2011-08-19 06:41:48 +00:00
|
|
|
.css({
|
|
|
|
position: 'absolute'
|
|
|
|
})
|
|
|
|
),
|
|
|
|
$info = Ox.Element()
|
|
|
|
.css({
|
|
|
|
float: 'left',
|
2011-10-17 10:23:16 +00:00
|
|
|
width: getItemWidth() - 144 + 'px',
|
2012-05-26 15:48:19 +00:00
|
|
|
height: 196 + 'px'
|
2011-08-19 06:41:48 +00:00
|
|
|
}),
|
|
|
|
$infobox = Ox.Element()
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
2011-10-17 10:23:16 +00:00
|
|
|
width: getItemWidth() - 144 + 'px',
|
|
|
|
height: 196 + 'px',
|
2011-10-17 15:13:12 +00:00
|
|
|
marginTop: '-2px',
|
2011-08-19 06:41:48 +00:00
|
|
|
overflow: 'hidden'
|
|
|
|
})
|
2011-11-05 17:27:11 +00:00
|
|
|
.appendTo($info),
|
2011-08-19 06:41:48 +00:00
|
|
|
$item = Ox.Element()
|
|
|
|
.css({
|
|
|
|
width: getItemWidth() - 8 + 'px',
|
2011-10-16 12:46:27 +00:00
|
|
|
height: 196 + 'px',
|
2012-05-26 15:48:19 +00:00
|
|
|
margin: '4px'
|
2011-08-19 06:41:48 +00:00
|
|
|
})
|
|
|
|
.append($icon)
|
|
|
|
.append($info);
|
|
|
|
if (!isEmpty) {
|
|
|
|
var $element = data.info.element(Ox.extend(data.info.options, {
|
|
|
|
width: getItemWidth() - 152
|
|
|
|
}))
|
2011-10-17 10:23:16 +00:00
|
|
|
.addClass('OxInfoElement');
|
|
|
|
data.info.css && $element.css(data.info.css);
|
|
|
|
data.info.events && $element.bindEvent(data.info.events);
|
2012-06-13 08:37:07 +00:00
|
|
|
$element.addClass('OxId' + $element.oxid); // fixme: needed?
|
2011-08-19 06:41:48 +00:00
|
|
|
$infobox.append($element);
|
|
|
|
}
|
|
|
|
return $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getItemWidth(cached) {
|
|
|
|
if (!cached) {
|
|
|
|
self.cachedWidth = that.$element.width() - Ox.UI.SCROLLBAR_SIZE;
|
|
|
|
} else if (!self.cachedWidth || self.cachedWidthTime < +new Date() - 5000) {
|
|
|
|
self.cachedWidth = that.$element.width() - Ox.UI.SCROLLBAR_SIZE;
|
|
|
|
self.cachedWidthTime = +new Date();
|
|
|
|
}
|
|
|
|
return self.cachedWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateKeys() {
|
|
|
|
that.$element.options({
|
2012-05-24 07:45:33 +00:00
|
|
|
keys: Ox.unique(
|
|
|
|
[self.options.sort[0].key].concat(self.options.keys)
|
2012-05-24 07:46:42 +00:00
|
|
|
)
|
2011-08-19 06:41:48 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-05-21 10:38:18 +00:00
|
|
|
/*@
|
2012-05-28 19:35:41 +00:00
|
|
|
closePreview <f> closePreview
|
2012-05-21 10:38:18 +00:00
|
|
|
@*/
|
2011-08-19 06:41:48 +00:00
|
|
|
that.closePreview = function() {
|
|
|
|
that.$element.closePreview();
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
2012-05-21 10:38:18 +00:00
|
|
|
/*@
|
|
|
|
gainFocus <f> gainFocus
|
|
|
|
@*/
|
2012-04-24 08:21:00 +00:00
|
|
|
that.gainFocus = function() {
|
|
|
|
that.$element.gainFocus();
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
2012-05-21 10:38:18 +00:00
|
|
|
/*@
|
|
|
|
hasFocus <f> hasFocus
|
|
|
|
@*/
|
2012-04-24 08:21:00 +00:00
|
|
|
that.hasFocus = function() {
|
|
|
|
return that.$element.hasFocus();
|
|
|
|
};
|
|
|
|
|
2013-08-02 12:23:43 +00:00
|
|
|
that.invertSelection = function() {
|
|
|
|
that.$element.invertSelection();
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
2012-05-21 10:38:18 +00:00
|
|
|
/*@
|
|
|
|
loseFocus <f> loseFocus
|
|
|
|
@*/
|
2012-04-24 08:21:00 +00:00
|
|
|
that.loseFocus = function() {
|
|
|
|
that.$element.loseFocus();
|
|
|
|
return that;
|
|
|
|
};
|
2011-10-19 10:49:19 +00:00
|
|
|
|
2012-05-21 10:38:18 +00:00
|
|
|
/*@
|
|
|
|
reloadList <f> reloadList
|
|
|
|
@*/
|
2011-10-20 16:49:42 +00:00
|
|
|
that.reloadList = function(stayAtPosition) {
|
|
|
|
that.$element.reloadList(stayAtPosition);
|
2011-10-16 12:32:02 +00:00
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
2012-05-21 10:38:18 +00:00
|
|
|
/*@
|
|
|
|
scrollToSelection <f> scrollToSelection
|
|
|
|
@*/
|
2011-10-16 12:32:02 +00:00
|
|
|
that.scrollToSelection = function() {
|
|
|
|
that.$element.scrollToSelection();
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
2013-08-02 12:23:43 +00:00
|
|
|
that.selectAll = function() {
|
|
|
|
that.$element.selectAll();
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
2012-05-21 10:38:18 +00:00
|
|
|
/*@
|
|
|
|
size <f> size
|
|
|
|
@*/
|
2011-10-16 12:32:02 +00:00
|
|
|
that.size = function() {
|
|
|
|
that.$element.size();
|
2012-08-30 22:16:26 +00:00
|
|
|
return that;
|
2011-10-16 12:32:02 +00:00
|
|
|
};
|
|
|
|
|
2012-05-21 10:38:18 +00:00
|
|
|
/*@
|
|
|
|
sortList <f> sortList
|
|
|
|
(key, operator) -> <o>
|
|
|
|
@*/
|
2011-10-16 12:32:02 +00:00
|
|
|
that.sortList = function(key, operator) {
|
|
|
|
self.options.sort = [{
|
|
|
|
key: key,
|
|
|
|
operator: operator
|
|
|
|
}];
|
|
|
|
updateKeys();
|
|
|
|
that.$element.sortList(key, operator);
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
2012-05-21 10:38:18 +00:00
|
|
|
/*@
|
|
|
|
value <f> value
|
|
|
|
(id) -> values
|
|
|
|
(id, key) -> value
|
|
|
|
(id, key, value) -> <o>
|
|
|
|
@*/
|
2011-10-16 12:32:02 +00:00
|
|
|
that.value = function(id, key, value) {
|
|
|
|
// fixme: make this accept id, {k: v, ...}
|
|
|
|
if (arguments.length == 1) {
|
|
|
|
return that.$element.value(id);
|
|
|
|
} else if (arguments.length == 2) {
|
|
|
|
return that.$element.value(id, key);
|
|
|
|
} else {
|
|
|
|
that.$element.value(id, key, value);
|
|
|
|
return that;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-08-19 06:41:48 +00:00
|
|
|
return that;
|
|
|
|
|
2012-05-21 10:38:18 +00:00
|
|
|
};
|