2011-07-29 18:48:43 +00:00
|
|
|
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
2011-05-16 10:49:48 +00:00
|
|
|
|
|
|
|
/*@
|
|
|
|
Ox.Select <f:Ox.Element> Select Object
|
|
|
|
() -> <f> Select Object
|
|
|
|
(options) -> <f> Select Object
|
|
|
|
(options, self) -> <f> Select Object
|
|
|
|
options <o> Options object
|
|
|
|
id <s> element id
|
|
|
|
items <a|[]> items
|
2011-10-03 15:02:19 +00:00
|
|
|
label <s|''> Label
|
|
|
|
labelWidth <n|64> Label width
|
2011-05-16 10:49:48 +00:00
|
|
|
max <n|1> minimum number of selected items
|
|
|
|
min <n|1> maximum number of selected items
|
|
|
|
overlap <s|'none'> can be none, left or right
|
|
|
|
selectable <b|true> is selectable
|
|
|
|
size <s|'medium'> size, can be small, medium, large
|
|
|
|
title <s|''> select title
|
|
|
|
type <s|'text'> can be 'text' or 'image'
|
|
|
|
width <s|n|'auto'> can be auto or width in pixels
|
|
|
|
self <o> shared private variable
|
|
|
|
click <!> on click event
|
|
|
|
change <!> on change event
|
|
|
|
@*/
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
Ox.Select = function(options, self) {
|
|
|
|
|
2011-09-23 10:43:57 +00:00
|
|
|
// fixme: make selected a separate option
|
2011-04-22 22:03:10 +00:00
|
|
|
// fixme: selected item needs attribute "checked", not "selected" ... that's strange
|
2011-06-19 17:48:32 +00:00
|
|
|
self = self || {};
|
|
|
|
var that = Ox.Element({
|
2011-05-22 12:39:57 +00:00
|
|
|
tooltip: options.tooltip || ''
|
2011-05-30 11:47:30 +00:00
|
|
|
}, self)
|
2011-04-22 22:03:10 +00:00
|
|
|
.defaults({
|
|
|
|
id: '',
|
|
|
|
items: [],
|
2011-10-03 15:02:19 +00:00
|
|
|
label: '',
|
|
|
|
labelWidth: 64,
|
2011-04-22 22:03:10 +00:00
|
|
|
max: 1,
|
|
|
|
min: 1,
|
|
|
|
overlap: 'none', // can be none, left or right
|
|
|
|
selectable: true,
|
|
|
|
size: 'medium',
|
|
|
|
title: '',
|
|
|
|
type: 'text', // can be 'text' or 'image'
|
2011-10-11 11:22:16 +00:00
|
|
|
value: '',
|
2011-09-17 07:09:17 +00:00
|
|
|
width: 'auto'
|
2011-04-22 22:03:10 +00:00
|
|
|
})
|
|
|
|
// fixme: make default selection restorable
|
|
|
|
// or allow for extra action items below options
|
2011-10-11 11:22:16 +00:00
|
|
|
// fixme: passing value has no effect
|
2011-04-22 22:03:10 +00:00
|
|
|
.options(options)
|
|
|
|
.addClass(
|
2011-10-03 15:02:19 +00:00
|
|
|
'OxSelect Ox' + Ox.toTitleCase(self.options.size) + (
|
|
|
|
self.options.overlap == 'none'
|
|
|
|
? '' : ' OxOverlap' + Ox.toTitleCase(self.options.overlap)
|
|
|
|
) + (self.options.label ? ' OxLabelSelect' : '')
|
2011-04-22 22:03:10 +00:00
|
|
|
)
|
|
|
|
.css(self.options.width == 'auto' ? {} : {
|
2011-09-08 08:16:31 +00:00
|
|
|
width: self.options.width - 2 + 'px'
|
2011-04-22 22:03:10 +00:00
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
key_escape: loseFocus,
|
|
|
|
key_down: showMenu
|
|
|
|
});
|
|
|
|
|
2011-11-04 15:54:28 +00:00
|
|
|
//Ox.Log('Form', 'Ox.Select', self.options);
|
2011-04-22 22:03:10 +00:00
|
|
|
|
2011-09-17 18:36:09 +00:00
|
|
|
Ox.extend(self, {
|
2011-04-22 22:03:10 +00:00
|
|
|
buttonId: self.options.id + 'Button',
|
|
|
|
groupId: self.options.id + 'Group',
|
|
|
|
menuId: self.options.id + 'Menu'
|
|
|
|
});
|
|
|
|
|
|
|
|
if (self.options.selectable) {
|
2011-06-19 18:25:37 +00:00
|
|
|
self.optionGroup = new Ox.OptionGroup(
|
2011-04-22 22:03:10 +00:00
|
|
|
self.options.items,
|
|
|
|
self.options.min,
|
|
|
|
self.options.max
|
|
|
|
);
|
|
|
|
self.options.items = self.optionGroup.init();
|
|
|
|
self.checked = self.optionGroup.checked();
|
|
|
|
}
|
|
|
|
|
2011-05-30 11:47:30 +00:00
|
|
|
if (self.options.label) {
|
|
|
|
self.$label = Ox.Label({
|
|
|
|
overlap: 'right',
|
|
|
|
textAlign: 'right',
|
|
|
|
title: self.options.label,
|
|
|
|
width: self.options.labelWidth
|
|
|
|
})
|
|
|
|
.click(function() {
|
|
|
|
// fixme: ???
|
|
|
|
// that.focus();
|
|
|
|
})
|
|
|
|
.appendTo(that);
|
2011-06-19 17:48:32 +00:00
|
|
|
}
|
2011-05-30 11:47:30 +00:00
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
if (self.options.type == 'text') {
|
|
|
|
self.$title = $('<div>')
|
|
|
|
.addClass('OxTitle')
|
|
|
|
.css({
|
2011-09-08 08:16:31 +00:00
|
|
|
// fixme: used to be 22. obscure
|
|
|
|
width: (self.options.width - 24 - (
|
2011-05-30 11:47:30 +00:00
|
|
|
self.options.label ? self.options.labelWidth : 0
|
|
|
|
)) + 'px'
|
2011-04-22 22:03:10 +00:00
|
|
|
})
|
|
|
|
.html(
|
2011-10-04 02:26:24 +00:00
|
|
|
self.options.title ? self.options.title
|
|
|
|
: self.options.items[self.checked[0]].title
|
2011-04-22 22:03:10 +00:00
|
|
|
)
|
|
|
|
.click(showMenu)
|
|
|
|
.appendTo(that.$element);
|
|
|
|
}
|
|
|
|
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$button = Ox.Button({
|
2011-04-22 22:03:10 +00:00
|
|
|
id: self.buttonId,
|
|
|
|
style: 'symbol',
|
|
|
|
title: 'select',
|
|
|
|
type: 'image'
|
|
|
|
})
|
|
|
|
.bindEvent('click', showMenu)
|
|
|
|
.appendTo(that);
|
|
|
|
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$menu = Ox.Menu({
|
2011-04-22 22:03:10 +00:00
|
|
|
element: self.$title || self.$button,
|
|
|
|
id: self.menuId,
|
|
|
|
items: [self.options.selectable ? {
|
|
|
|
group: self.groupId,
|
|
|
|
items: self.options.items,
|
|
|
|
max: self.options.max,
|
|
|
|
min: self.options.min
|
|
|
|
} : self.options.items],
|
|
|
|
side: 'bottom',
|
|
|
|
size: self.options.size
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
change: changeMenu,
|
|
|
|
click: clickMenu,
|
|
|
|
hide: hideMenu
|
|
|
|
});
|
|
|
|
|
|
|
|
self.options.type == 'image' && self.$menu.addClass('OxRight');
|
|
|
|
|
2011-09-17 17:39:38 +00:00
|
|
|
function clickMenu(data) {
|
2011-04-22 22:03:10 +00:00
|
|
|
that.triggerEvent('click', data);
|
|
|
|
}
|
|
|
|
|
2011-09-17 17:39:38 +00:00
|
|
|
function changeMenu(data) {
|
2011-11-04 15:54:28 +00:00
|
|
|
//Ox.Log('Form', 'clickMenu: ', self.options.id, data)
|
2011-10-30 21:05:32 +00:00
|
|
|
if (self.options.selectable) {
|
|
|
|
self.checked = self.optionGroup.checked();
|
|
|
|
self.options.value = data.checked[0].id;
|
|
|
|
self.$title && self.$title.html(
|
|
|
|
self.options.title ? self.options.title : data.checked[0].title
|
|
|
|
);
|
|
|
|
that.triggerEvent('change', {
|
|
|
|
selected: data.checked
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
that.triggerEvent('click', data);
|
|
|
|
}
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function hideMenu() {
|
2011-11-04 15:54:28 +00:00
|
|
|
//Ox.Log('Form', '%% hideMenu that', that, 'self', self)
|
2011-04-22 22:03:10 +00:00
|
|
|
that.removeClass('OxSelected');
|
|
|
|
// self.$button.removeClass('OxSelected');
|
2011-11-04 15:54:28 +00:00
|
|
|
//Ox.Log('Form', '%% hideMenu end')
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function loseFocus() {
|
|
|
|
that.loseFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
function showMenu() {
|
|
|
|
that.gainFocus();
|
|
|
|
that.addClass('OxSelected');
|
2011-05-20 14:11:42 +00:00
|
|
|
self.options.tooltip && that.$tooltip.hide();
|
2011-04-22 22:03:10 +00:00
|
|
|
self.$menu.showMenu();
|
|
|
|
}
|
|
|
|
|
2011-04-29 12:40:51 +00:00
|
|
|
self.setOption = function(key, value) {
|
2011-05-30 12:06:58 +00:00
|
|
|
if (key == 'value') {
|
2011-11-04 15:54:28 +00:00
|
|
|
Ox.Log('Form', 'SETTING VALUE OPTION', value)
|
2011-05-30 12:06:58 +00:00
|
|
|
that.selectItem(value);
|
|
|
|
}
|
2011-04-22 22:03:10 +00:00
|
|
|
};
|
|
|
|
|
2011-10-29 17:05:44 +00:00
|
|
|
that.disableItem = function(id) {
|
|
|
|
self.$menu.getItem(id).options({disabled: true});
|
|
|
|
};
|
|
|
|
|
|
|
|
that.enableItem = function(id) {
|
|
|
|
self.$menu.getItem(id).options({disabled: false});
|
|
|
|
};
|
|
|
|
|
2011-11-04 22:14:30 +00:00
|
|
|
self.superRemove = that.remove;
|
|
|
|
that.remove = function() {
|
|
|
|
self.$menu.remove();
|
|
|
|
self.superRemove();
|
|
|
|
};
|
|
|
|
|
2011-10-11 11:22:16 +00:00
|
|
|
// FIXME: selected() _and_ selectItem() _and_ value() ???
|
|
|
|
|
2011-05-16 10:49:48 +00:00
|
|
|
/*@
|
2011-09-23 10:43:57 +00:00
|
|
|
selected <f> gets selected item
|
2011-05-16 10:49:48 +00:00
|
|
|
() -> <o> returns object of selected items with id, title
|
|
|
|
@*/
|
2011-04-22 22:03:10 +00:00
|
|
|
that.selected = function() {
|
2011-09-17 18:36:09 +00:00
|
|
|
return /*self.checked*/self.optionGroup.checked().map(function(v) {
|
2011-04-22 22:03:10 +00:00
|
|
|
return {
|
|
|
|
id: self.options.items[v].id,
|
|
|
|
title: self.options.items[v].title
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2011-05-16 10:49:48 +00:00
|
|
|
/*@
|
|
|
|
selectItem <f> select item in group
|
|
|
|
(id) -> <u> select item by id
|
|
|
|
id <s> item id
|
|
|
|
@*/
|
2011-04-22 22:03:10 +00:00
|
|
|
that.selectItem = function(id) {
|
2011-11-04 15:54:28 +00:00
|
|
|
Ox.Log('Form', 'selectItem', id, self.options.items, self.options.items.length, Ox.getObjectById(self.options.items, id))
|
2011-04-22 22:03:10 +00:00
|
|
|
self.options.type == 'text' && self.$title.html(
|
2011-09-20 00:11:16 +00:00
|
|
|
Ox.getObjectById(self.options.items, id).title
|
2011-04-22 22:03:10 +00:00
|
|
|
);
|
|
|
|
self.$menu.checkItem(id);
|
|
|
|
self.checked = self.optionGroup.checked();
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
that.width = function(val) {
|
|
|
|
// fixme: silly hack, and won't work for css() ... remove!
|
|
|
|
that.$element.width(val + 16);
|
|
|
|
that.$button.width(val);
|
|
|
|
//that.$symbol.width(val);
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
2011-05-30 11:47:30 +00:00
|
|
|
that.value = function() {
|
|
|
|
if (arguments.length == 0) {
|
2011-11-04 15:54:28 +00:00
|
|
|
//Ox.Log('Form', 'selected::', that.selected())
|
2011-05-30 11:47:30 +00:00
|
|
|
return that.selected()[0].id;
|
|
|
|
} else {
|
2011-10-10 17:00:01 +00:00
|
|
|
that.selectItem(arguments[0]);
|
|
|
|
return that;
|
2011-05-30 11:47:30 +00:00
|
|
|
/*
|
2011-11-04 15:54:28 +00:00
|
|
|
Ox.Log('Form', 'ELSE');
|
2011-05-30 11:47:30 +00:00
|
|
|
that.selectItem(arguments[0]);
|
|
|
|
return that;
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
return that;
|
|
|
|
|
|
|
|
};
|