oxjs/source/Ox.UI/js/Form/ButtonGroup.js

142 lines
4.8 KiB
JavaScript
Raw Normal View History

2011-11-05 16:46:53 +00:00
'use strict';
2012-05-21 10:38:18 +00:00
2011-05-16 08:24:46 +00:00
/*@
2012-05-31 10:32:54 +00:00
Ox.ButtonGroup <f> ButtonGroup Object
2011-05-16 08:24:46 +00:00
options <o> Options object
2012-05-31 10:32:54 +00:00
buttons <[o]> array of button options
2011-05-16 08:24:46 +00:00
max <n> integer, maximum number of selected buttons, 0 for all
min <n> integer, minimum number of selected buttons, 0 for none
selectable <b> if true, buttons are selectable
type <s> string, 'image' or 'text'
self <o> Shared private variable
([options[, self]]) -> <o:Ox.Element> ButtonGroup Object
change <!> {id, value} selection within a group changed
2011-05-16 08:24:46 +00:00
@*/
2011-04-22 22:03:10 +00:00
2011-05-16 08:24:46 +00:00
Ox.ButtonGroup = function(options, self) {
2011-04-22 22:03:10 +00:00
self = self || {};
var that = Ox.Element({}, self)
2011-04-22 22:03:10 +00:00
.defaults({
buttons: [],
max: 1,
min: 1,
selectable: false,
size: 'medium',
style: 'default',
2011-04-22 22:03:10 +00:00
type: 'text',
2011-12-21 13:42:47 +00:00
value: options.max != 1 ? [] : ''
2011-04-22 22:03:10 +00:00
})
.options(options || {})
2012-05-28 19:35:41 +00:00
.update({
value: function() {
// fixme: this doesn't work in cases where
// multiple buttons can be selected
var position = Ox.getIndexById(
self.options.buttons, self.options.value
);
if (position > -1) {
self.$buttons[position].trigger('click');
} else if (self.options.min == 0) {
self.$buttons.forEach(function($button, i) {
$button.options('value') && $button.trigger('click');
});
}
}
})
2011-04-22 22:03:10 +00:00
.addClass('OxButtonGroup');
2011-12-21 13:42:47 +00:00
self.options.buttons = self.options.buttons.map(function(button) {
return Ox.extend({
2011-12-22 05:52:46 +00:00
disabled: button.disabled,
2011-12-21 13:42:47 +00:00
id: button.id || button,
2011-12-22 05:52:46 +00:00
title: button.title || button,
tooltip: button.tooltip,
width: button.width
2011-12-21 13:42:47 +00:00
}, self.options.selectable ? {
selected: Ox.makeArray(self.options.value).indexOf(button.id || button) > -1
2011-12-21 13:42:47 +00:00
} : {});
});
2011-04-22 22:03:10 +00:00
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.buttons,
self.options.min,
self.options.max,
'selected'
);
self.options.buttons = self.optionGroup.init();
2011-12-21 13:42:47 +00:00
self.options.value = self.optionGroup.value();
2011-04-22 22:03:10 +00:00
}
self.$buttons = [];
2011-12-21 13:42:47 +00:00
self.options.buttons.forEach(function(button, pos) {
self.$buttons[pos] = Ox.Button({
disabled: button.disabled || false, // FIXME: getset should handle undefined
2011-04-22 22:03:10 +00:00
group: true,
id: button.id,
2011-04-22 22:03:10 +00:00
selectable: self.options.selectable,
size: self.options.size,
style: self.options.style,
title: button.title,
tooltip: button.tooltip,
2011-12-21 13:42:47 +00:00
type: self.options.type,
value: button.selected || false, // FIXME: getset should handle undefined
width: button.width
2011-04-22 22:03:10 +00:00
})
.bindEvent(self.options.selectable ? {
change: function() {
toggleButton(pos);
}
} : {
click: function() {
that.triggerEvent('click', {id: button.id});
}
2011-04-22 22:03:10 +00:00
})
.appendTo(that);
});
function getButtonById(id) {
return self.$buttons[Ox.getIndexById(self.options.buttons, id)];
}
2011-12-21 13:42:47 +00:00
function toggleButton(pos) {
2011-04-22 22:03:10 +00:00
var toggled = self.optionGroup.toggle(pos);
2011-12-21 13:42:47 +00:00
if (!toggled.length) {
2011-12-21 15:33:52 +00:00
// FIXME: fix and use that.toggleOption()
self.$buttons[pos].value(!self.$buttons[pos].value());
2011-12-21 13:42:47 +00:00
} else {
toggled.forEach(function(i) {
2011-12-21 15:33:52 +00:00
i != pos && self.$buttons[i].value(!self.$buttons[i].value());
2011-04-22 22:03:10 +00:00
});
2011-12-21 13:42:47 +00:00
self.options.value = self.optionGroup.value();
2011-04-22 22:03:10 +00:00
that.triggerEvent('change', {
title: self.options.value === '' ? ''
: Ox.isString(self.options.value)
2011-12-21 15:33:52 +00:00
? Ox.getObjectById(self.options.buttons, self.options.value).title
: self.options.value.map(function(value) {
return Ox.getObjectById(self.options.buttons, value).title;
}),
2011-12-21 13:42:47 +00:00
value: self.options.value
2011-04-22 22:03:10 +00:00
});
}
}
2012-06-17 22:38:26 +00:00
/*@
disableButton <f> disableButton
@*/
that.disableButton = function(id) {
getButtonById(id).options({disabled: true});
};
2012-06-17 22:38:26 +00:00
/*@
enableButton <f> enableButton
@*/
that.enableButton = function(id) {
getButtonById(id).options({disabled: false});
};
2011-04-22 22:03:10 +00:00
return that;
2011-04-22 22:03:10 +00:00
};