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

170 lines
6.1 KiB
JavaScript
Raw Normal View History

2011-11-05 16:46:53 +00:00
'use strict';
2011-12-21 13:42:47 +00:00
2011-05-16 08:24:46 +00:00
/*@
2012-05-31 10:32:54 +00:00
Ox.Button <f> Button Object
([options[, self]]) -> <o:Ox.Element> Button Object
2011-05-16 08:24:46 +00:00
options <o> Options object
2011-12-22 05:52:46 +00:00
If a button is both selectable and has two values, its value is the
selected id, and the second value corresponds to the selected state
disabled <b|false> If true, button is disabled
group <b|false> If true, button is part of group
id <s|''> Element id
overlap <s|'none'> 'none', 'left' or 'right'
selectable <b|false> If true, button is selectable
style <s|'default'> 'default', 'checkbox', 'symbol' or 'tab'
title <s|''> Button title
tooltip <s|[s]|''> Tooltip
type <s|text> 'text' or 'image'
value <b|s|undefined> True for selected, or current value id
values <[o]|[]> [{id, title}, {id, title}]
width <s|'auto'> Button width
2011-05-16 08:24:46 +00:00
self <o> Shared private variable
click <!> non-selectable button was clicked
2011-12-21 13:42:47 +00:00
change <!> selectable button was clicked
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.Button = function(options, self) {
self = self || {};
var that = Ox.Element('<input>', self)
2011-04-22 22:03:10 +00:00
.defaults({
disabled: false,
group: false,
id: '',
overlap: 'none',
selectable: false,
size: 'medium',
// fixme: 'default' or ''?
style: 'default',
2011-04-22 22:03:10 +00:00
title: '',
tooltip: '',
type: 'text',
2011-12-22 05:52:46 +00:00
value: void 0,
values: [],
2011-04-22 22:03:10 +00:00
width: 'auto'
})
2011-12-22 15:47:46 +00:00
.options(Ox.isArray(options.tooltip) ? Ox.extend(Ox.clone(options), {
tooltip: options.tooltip[0]
}) : options || {})
2012-05-28 19:35:41 +00:00
.update({
disabled: function() {
that.attr({disabled: self.options.disabled}).toggleClass('OxDisabled');
self.options.disabled && that.$tooltip && that.$tooltip.hide();
},
//FIXME: check if this is still needed
tooltip: function() {
that.$tooltip.options({title: self.options.disabled});
},
title: setTitle,
value: function() {
if (self.options.values.length) {
self.options.title = Ox.getObjectById(
self.options.values, self.options.value
).title;
setTitle();
}
self.options.selectable && that.toggleClass('OxSelected');
},
width: function() {
that.$element.css({width: (self.options.width - 14) + 'px'});
}
})
2011-12-21 13:42:47 +00:00
.addClass(
'OxButton Ox' + Ox.toTitleCase(self.options.size)
+ (self.options.disabled ? ' OxDisabled': '')
+ (self.options.selectable && self.options.value ? ' OxSelected': '')
+ (self.options.style != 'default' ? ' Ox' + Ox.toTitleCase(self.options.style) : '')
+ (self.options.overlap != 'none' ? ' OxOverlap' + Ox.toTitleCase(self.options.overlap) : '')
)
2012-06-16 10:09:21 +00:00
.attr({
disabled: self.options.disabled,
type: self.options.type == 'text' ? 'button' : 'image'
})
2011-04-22 22:03:10 +00:00
.css(self.options.width == 'auto' ? {} : {
width: (self.options.width - 14) + 'px'
})
.mousedown(mousedown)
.click(click);
2011-12-22 05:52:46 +00:00
if (self.options.values.length) {
self.options.values = self.options.values.map(function(value) {
2011-12-21 13:42:47 +00:00
return {
2011-12-22 05:52:46 +00:00
id: value.id || value,
title: value.title || value
2011-12-21 13:42:47 +00:00
};
});
self.value = Ox.getIndexById(self.options.values, self.options.value);
2011-12-22 05:52:46 +00:00
if (self.value == -1) {
self.value = 0;
self.options.value = self.options.values[0].id;
}
self.options.title = self.options.values[self.value].title;
} else if (self.options.selectable) {
self.options.value = self.options.value || false;
2011-12-21 13:42:47 +00:00
}
2011-04-22 22:03:10 +00:00
2011-12-21 13:42:47 +00:00
setTitle();
2011-04-22 22:03:10 +00:00
2011-12-22 15:47:46 +00:00
if (Ox.isArray(options.tooltip)) {
self.options.tooltip = options.tooltip;
that.$tooltip.options({
title: self.options.tooltip[self.value]
});
}
2011-04-22 22:03:10 +00:00
function click() {
if (!self.options.disabled) {
2011-12-22 15:47:46 +00:00
that.triggerEvent('click');
2011-12-22 05:52:46 +00:00
if (self.options.values.length || self.options.selectable) {
that.toggle();
2011-12-21 13:42:47 +00:00
that.triggerEvent('change', {value: self.options.value});
2011-04-22 22:03:10 +00:00
}
}
}
function mousedown(e) {
if (self.options.type == 'image' && $.browser.safari) {
// keep image from being draggable
e.preventDefault();
}
}
2011-12-21 13:42:47 +00:00
function setTitle() {
2011-04-22 22:03:10 +00:00
if (self.options.type == 'image') {
that.attr({
2011-08-09 17:00:39 +00:00
src: Ox.UI.getImageURL(
2011-12-22 05:52:46 +00:00
'symbol' + self.options.title[0].toUpperCase()
2012-05-24 09:47:33 +00:00
+ self.options.title.slice(1)
2011-04-22 22:03:10 +00:00
)
});
} else {
2011-12-22 05:52:46 +00:00
that.val(self.options.title);
2011-04-22 22:03:10 +00:00
}
}
2012-05-21 10:38:18 +00:00
/*@
toggle <f> toggle
() -> <o> toggle button
@*/
2011-12-22 05:52:46 +00:00
that.toggle = function() {
if (self.options.values.length) {
self.value = 1 - Ox.getIndexById(self.options.values, self.options.value);
2011-12-22 15:47:46 +00:00
self.options.title = self.options.values[self.value].title;
self.options.value = self.options.values[self.value].id;
2011-12-22 05:52:46 +00:00
setTitle();
// fixme: if the tooltip is visible
// we also need to call show()
that.$tooltip && that.$tooltip.options({
2011-12-22 15:47:46 +00:00
title: self.options.tooltip[self.value]
2011-12-22 05:52:46 +00:00
});
} else {
self.options.value = !self.options.value;
}
2011-12-21 13:42:47 +00:00
self.options.selectable && that.toggleClass('OxSelected');
2012-01-02 08:25:34 +00:00
return that;
2011-04-22 22:03:10 +00:00
}
return that;
};