2021-02-15 19:19:43 +00:00
|
|
|
$.fn.wsjtDecodingDepthsInput = function() {
|
2021-02-15 21:14:56 +00:00
|
|
|
function WsjtDecodingDepthRow(inputs, mode, value) {
|
|
|
|
this.el = $('<tr>');
|
|
|
|
this.modeInput = $(inputs.get(0)).clone();
|
|
|
|
this.modeInput.val(mode);
|
|
|
|
this.valueInput = $(inputs.get(1)).clone();
|
|
|
|
this.valueInput.val(value);
|
2021-03-03 22:25:00 +00:00
|
|
|
this.removeButton = $('<button type="button" class="btn btn-sm btn-danger remove">Remove</button>');
|
2021-02-15 21:57:21 +00:00
|
|
|
this.removeButton.data('row', this);
|
|
|
|
this.el.append([this.modeInput, this.valueInput, this.removeButton].map(function(i) {
|
2021-02-15 21:14:56 +00:00
|
|
|
return $('<td>').append(i);
|
2021-02-15 19:19:43 +00:00
|
|
|
}));
|
2021-02-15 21:14:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WsjtDecodingDepthRow.prototype.getEl = function() {
|
|
|
|
return this.el;
|
2021-02-15 19:19:43 +00:00
|
|
|
}
|
|
|
|
|
2021-02-15 21:57:21 +00:00
|
|
|
WsjtDecodingDepthRow.prototype.getValue = function() {
|
|
|
|
var value = parseInt(this.valueInput.val())
|
|
|
|
if (Number.isNaN(value)) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return Object.fromEntries([[this.modeInput.val(), value]]);
|
|
|
|
}
|
|
|
|
|
2021-02-15 19:19:43 +00:00
|
|
|
this.each(function(){
|
|
|
|
var $input = $(this);
|
|
|
|
var $el = $input.parent();
|
2021-02-15 21:14:56 +00:00
|
|
|
var $inputs = $el.find('.inputs')
|
|
|
|
var inputs = $inputs.find('input, select');
|
|
|
|
$inputs.remove();
|
|
|
|
var rows = $.map(JSON.parse($input.val()), function(value, mode) {
|
|
|
|
return new WsjtDecodingDepthRow(inputs, mode, value);
|
|
|
|
});
|
|
|
|
var $table = $('<table class="table table-sm table-borderless wsjt-decoding-depths-table">');
|
|
|
|
$table.append(rows.map(function(r) {
|
|
|
|
return r.getEl();
|
|
|
|
}));
|
2021-02-15 21:57:21 +00:00
|
|
|
|
|
|
|
var updateValue = function(){
|
|
|
|
$input.val(JSON.stringify($.extend.apply({}, rows.map(function(r) {
|
|
|
|
return r.getValue();
|
|
|
|
}))));
|
|
|
|
};
|
|
|
|
|
|
|
|
$table.on('change', updateValue);
|
2021-03-03 22:25:00 +00:00
|
|
|
var $addButton = $('<button type="button" class="btn btn-sm btn-primary">Add...</button>');
|
2021-02-15 21:57:21 +00:00
|
|
|
|
|
|
|
$addButton.on('click', function() {
|
|
|
|
var row = new WsjtDecodingDepthRow(inputs)
|
|
|
|
rows.push(row);
|
|
|
|
$table.append(row.getEl());
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
$el.on('click', '.btn.remove', function(e){
|
|
|
|
var row = $(e.target).data('row');
|
|
|
|
var index = rows.indexOf(row);
|
|
|
|
if (index < 0) return false;
|
|
|
|
rows.splice(index, 1);
|
|
|
|
row.getEl().remove();
|
|
|
|
updateValue();
|
|
|
|
return false;
|
|
|
|
});
|
2021-03-25 14:02:59 +00:00
|
|
|
|
|
|
|
$input.after($table, $addButton);
|
2021-02-15 19:19:43 +00:00
|
|
|
});
|
|
|
|
};
|