oxjs/source/UI/js/Form/ArrayInput.js

231 lines
7.1 KiB
JavaScript
Raw Normal View History

2011-11-05 16:46:53 +00:00
'use strict';
/*@
2012-05-31 10:32:54 +00:00
Ox.ArrayInput <f> Array input
options <o> Options object
2015-02-14 19:52:13 +00:00
input <o> Optional functions for complex input elements
label <s> string, ''
max <n> integer, maximum number of items, 0 for all
sort <b> fixme: this should probably be removed
value <[]> value
width <n|256> width
self <o> Shared private variable
([options[, self]]) -> <o:Ox.Element> Array input
change <!> change
@*/
2011-05-21 17:56:15 +00:00
Ox.ArrayInput = function(options, self) {
self = self || {};
var that = Ox.Element({}, self)
.defaults({
2015-02-14 19:52:13 +00:00
input: {
get: Ox.Input,
getEmpty: function() {
return '';
},
isEmpty: function(value) {
return value === '';
},
setWidth: function($input, width) {
$input.options({width: width});
}
2015-02-14 19:09:51 +00:00
},
2011-05-21 17:56:15 +00:00
label: '',
max: 0,
2011-05-30 08:46:12 +00:00
sort: false, // fixme: this should probably be removed
2011-05-21 17:56:15 +00:00
value: [],
width: 256
})
2012-05-28 19:35:41 +00:00
.options(options || {})
.update({
value: setValue,
width: setWidths
});
2011-05-21 17:56:15 +00:00
self.options.value = self.options.value || [];
2011-05-21 17:56:15 +00:00
if (self.options.label) {
self.$label = Ox.Label({
title: self.options.label,
width: self.options.width
})
.appendTo(that);
}
self.$element = [];
self.$input = [];
self.$removeButton = [];
self.$addButton = [];
2011-11-30 14:31:11 +00:00
(
2015-02-14 19:52:13 +00:00
self.options.value.length
? self.options.value
: [self.options.input.getEmpty()]
).forEach(function(value, i) {
2011-05-21 17:56:15 +00:00
addInput(i, value);
});
2012-01-13 16:25:47 +00:00
self.options.value = getValue();
2011-11-30 14:31:11 +00:00
function addInput(index, value, focus) {
self.$element.splice(index, 0, Ox.Element()
.css({
height: '16px',
marginTop: self.options.label || index > 0 ? '8px' : 0
})
.data({index: index}));
if (index == 0) {
self.$element[index].appendTo(that);
2011-05-21 17:56:15 +00:00
} else {
2011-11-30 14:31:11 +00:00
self.$element[index].insertAfter(self.$element[index - 1]);
2011-05-21 17:56:15 +00:00
}
self.$input.splice(
2015-02-14 19:52:13 +00:00
index, 0, self.options.input.get({
2011-05-21 17:56:15 +00:00
width: self.options.width - 48
})
.css({float: 'left'})
.bindEvent({
change: function(data) {
2015-02-14 19:52:13 +00:00
if (
self.options.sort
&& !self.options.input.isEmpty(data.value)
) {
sortInputs();
}
2011-12-21 13:42:47 +00:00
self.options.value = getValue();
2011-11-30 14:31:11 +00:00
that.triggerEvent('change', {
value: self.options.value
});
2011-05-21 17:56:15 +00:00
}
})
2011-11-30 14:31:11 +00:00
.appendTo(self.$element[index]));
2015-02-13 11:05:46 +00:00
if (value) {
self.$input[index].options({value: value})
}
if (focus && self.$input[index].focusInput) {
self.$input[index].focusInput(true);
}
2011-11-30 14:31:11 +00:00
self.$removeButton.splice(index, 0, Ox.Button({
2011-06-01 13:12:14 +00:00
title: self.$input.length == 1 ? 'close' : 'remove',
2011-05-21 17:56:15 +00:00
type: 'image'
})
.css({float: 'left', marginLeft: '8px'})
2012-05-28 14:06:22 +00:00
.on({
2011-05-21 17:56:15 +00:00
click: function() {
2011-05-30 08:46:12 +00:00
var index = $(this).parent().data('index');
2015-02-14 19:52:13 +00:00
if (!self.options.input.isEmpty(self.$input[index])) {
self.$input[index].value(self.options.input.getEmpty());
2011-12-21 13:42:47 +00:00
self.options.value = getValue();
2011-11-30 14:31:11 +00:00
that.triggerEvent('change', {
value: self.options.value
});
2011-05-30 08:46:12 +00:00
}
2011-06-01 13:12:14 +00:00
if (self.$input.length == 1) {
if (self.$input[0].focusInput) {
self.$input[0].focusInput(true);
}
2011-06-01 13:12:14 +00:00
} else {
removeInput(index);
that.triggerEvent('remove');
2011-06-01 13:12:14 +00:00
}
2011-05-21 17:56:15 +00:00
}
})
2011-11-30 14:31:11 +00:00
.appendTo(self.$element[index]));
self.$addButton.splice(index, 0, Ox.Button({
disabled: index == self.options.max - 1,
2011-05-21 17:56:15 +00:00
title: 'add',
type: 'image'
})
.css({float: 'left', marginLeft: '8px'})
2012-05-28 14:06:22 +00:00
.on({
2011-05-21 17:56:15 +00:00
click: function() {
2011-11-30 14:31:11 +00:00
var index = $(this).parent().data('index');
2015-02-14 19:52:13 +00:00
addInput(index + 1, self.options.input.getEmpty(), true);
that.triggerEvent('add');
2011-05-21 17:56:15 +00:00
}
})
2011-11-30 14:31:11 +00:00
.appendTo(self.$element[index]));
updateInputs();
2011-05-21 17:56:15 +00:00
}
2011-12-21 13:42:47 +00:00
function getValue() {
return Ox.map(self.$input, function($input) {
2012-05-22 14:29:37 +00:00
return $input.value();
}).filter(function(value) {
2015-02-14 19:52:13 +00:00
return !self.options.input.isEmpty(value);
2011-12-21 13:42:47 +00:00
});
};
2011-11-30 14:31:11 +00:00
function removeInput(index) {
Ox.Log('Form', 'remove', index);
[
'input', 'removeButton', 'addButton', 'element'
].forEach(function(element) {
2011-05-21 17:56:15 +00:00
var key = '$' + element;
2011-11-30 14:31:11 +00:00
self[key][index].remove();
self[key].splice(index, 1);
2011-05-21 17:56:15 +00:00
});
2011-11-30 14:31:11 +00:00
updateInputs();
2011-05-21 17:56:15 +00:00
}
2011-12-21 13:42:47 +00:00
function setValue() {
while (self.$input.length) {
removeInput(0);
}
(
2015-02-14 19:52:13 +00:00
self.options.value.length
? self.options.value
: [self.options.input.getEmpty()]
).forEach(function(value, i) {
2011-12-21 13:42:47 +00:00
addInput(i, value);
});
}
2011-05-21 17:56:15 +00:00
function setWidths() {
2015-02-13 09:10:17 +00:00
self.$label && self.$label.options({width: self.options.width});
2011-05-21 17:56:15 +00:00
self.$element.forEach(function($element, i) {
$element.css({width: self.options.width + 'px'});
2015-02-14 19:52:13 +00:00
self.options.input.setWidth(self.$input[i], self.options.width - 48);
2011-05-21 17:56:15 +00:00
});
}
function sortInputs() {
Ox.sort(self.$element, function($element) {
return self.$input[$element.data('index')].value();
}).forEach(function($element) {
$element.detach();
});
self.$element.forEach(function($element, i) {
$element.data({index: i}).appendTo(that);
});
}
2011-11-30 14:31:11 +00:00
function updateInputs() {
2011-05-21 17:56:15 +00:00
self.$element.forEach(function($element, i) {
$element.data({index: i});
2011-11-30 14:31:11 +00:00
self.$removeButton[i].options({
2012-05-26 15:48:19 +00:00
title: self.$element.length == 1 ? 'close' : 'remove'
2011-11-30 14:31:11 +00:00
});
self.$addButton[i].options({
disabled: self.$element.length == self.options.max
});
2011-05-21 17:56:15 +00:00
});
}
2012-05-21 10:38:18 +00:00
/*@
setErrors <f> setErrors
2012-06-02 09:52:36 +00:00
(values) -> <u> set errors
2012-05-21 10:38:18 +00:00
@*/
that.setErrors = function(values) {
self.$input.forEach(function($input) {
$input[
values.indexOf($input.value()) > -1 ? 'addClass' : 'removeClass'
]('OxError');
});
};
2011-05-21 17:56:15 +00:00
return that;
2012-05-21 10:38:18 +00:00
};