Cleaner HTML form generation
This commit is contained in:
parent
9db113faa2
commit
8437a9d245
@ -183,7 +183,6 @@ ExtendReconciledDataPreviewDialog.prototype._update = function() {
|
|||||||
columnName: this._column.name
|
columnName: this._column.name
|
||||||
};
|
};
|
||||||
|
|
||||||
console.log(this._extension);
|
|
||||||
$.post(
|
$.post(
|
||||||
"command/core/preview-extend-data?" + $.param(params),
|
"command/core/preview-extend-data?" + $.param(params),
|
||||||
{
|
{
|
||||||
@ -253,17 +252,17 @@ ExtendReconciledDataPreviewDialog.prototype._renderPreview = function(data) {
|
|||||||
$('<br>').appendTo(th);
|
$('<br>').appendTo(th);
|
||||||
|
|
||||||
$('<a href="javascript:{}"></a>')
|
$('<a href="javascript:{}"></a>')
|
||||||
.text($.i18n("core-views")["remove-prop"])
|
.text($.i18n._("core-views")["remove-prop"])
|
||||||
.addClass("action")
|
.addClass("action")
|
||||||
.attr("title", $.i18n("core-views")["remove-col"])
|
.attr("title", $.i18n._("core-views")["remove-col"])
|
||||||
.click(function() {
|
.click(function() {
|
||||||
self._removeProperty(column.id);
|
self._removeProperty(column.id);
|
||||||
}).appendTo(th);
|
}).appendTo(th);
|
||||||
|
|
||||||
$('<a href="javascript:{}"></a>')
|
$('<a href="javascript:{}"></a>')
|
||||||
.text($.i18n("core-views")["configure-prop"])
|
.text($.i18n._("core-views")["configure-prop"])
|
||||||
.addClass("action")
|
.addClass("action")
|
||||||
.attr("title", $.i18n("core-views")["configure-col"])
|
.attr("title", $.i18n._("core-views")["configure-col"])
|
||||||
.click(function() {
|
.click(function() {
|
||||||
self._constrainProperty(column.id);
|
self._constrainProperty(column.id);
|
||||||
}).appendTo(th);
|
}).appendTo(th);
|
||||||
@ -325,19 +324,9 @@ ExtendReconciledDataPreviewDialog.prototype._constrainProperty = function(id) {
|
|||||||
var body = $('<div></div>').addClass("dialog-body").appendTo(frame);
|
var body = $('<div></div>').addClass("dialog-body").appendTo(frame);
|
||||||
var footer = $('<div></div>').addClass("dialog-footer").appendTo(frame);
|
var footer = $('<div></div>').addClass("dialog-footer").appendTo(frame);
|
||||||
|
|
||||||
// by default we display an area where the user can input JSON
|
|
||||||
var form = (
|
|
||||||
'<tr><td>' +
|
|
||||||
'Enter query settings as JSON' +
|
|
||||||
'</td></tr>' +
|
|
||||||
'<tr><td>' +
|
|
||||||
'<textarea style="width: 100%; height: 300px; font-family: monospace;" bind="textarea"></textarea>' +
|
|
||||||
'</td></tr>');
|
|
||||||
|
|
||||||
// If the service metadata specifies fields, we build a proper form to make it more user-friendly
|
|
||||||
var fields = self._serviceMetadata.extend.property_settings;
|
var fields = self._serviceMetadata.extend.property_settings;
|
||||||
|
var table = $('<table></table>');
|
||||||
if (fields != null) {
|
if (fields != null) {
|
||||||
form = '';
|
|
||||||
for(var i = 0; i < fields.length; i++) {
|
for(var i = 0; i < fields.length; i++) {
|
||||||
var field = fields[i];
|
var field = fields[i];
|
||||||
var fieldHTML = '';
|
var fieldHTML = '';
|
||||||
@ -345,57 +334,60 @@ ExtendReconciledDataPreviewDialog.prototype._constrainProperty = function(id) {
|
|||||||
if (property.settings != null && property.settings[field.name] != null) {
|
if (property.settings != null && property.settings[field.name] != null) {
|
||||||
currentValue = property.settings[field.name];
|
currentValue = property.settings[field.name];
|
||||||
}
|
}
|
||||||
|
var tr = $('<tr></tr>');
|
||||||
|
var td = $('<td></td>').attr('title', field.help_text).appendTo(tr);
|
||||||
if (field.type == 'select') {
|
if (field.type == 'select') {
|
||||||
fieldHTML += '<span class="property-config-select-label">'+field.label+':</span><br/>';
|
var fieldLabel = $('<span></span>').text(field.label+':').appendTo(td);
|
||||||
|
td.append($('<br/>'));
|
||||||
for(var j = 0; j < field.choices.length; j++) {
|
for(var j = 0; j < field.choices.length; j++) {
|
||||||
var choice = field.choices[j];
|
var choice = field.choices[j];
|
||||||
fieldHTML += '<label for="'+field.name+'_'+choice.value+'">';
|
var labelElem = $('<label></label>').attr('for', field.name+'_'+choice.value).appendTo(td);
|
||||||
fieldHTML += '<input type="radio" name="'+field.name+'" '+
|
var inputElem = $('<input type="radio" />').attr(
|
||||||
'value="'+choice.value+'" id="'+field.name+'_'+choice.value+'" ';
|
'id', field.name+'_'+choice.value).attr(
|
||||||
if (choice.value == currentValue) {
|
'value', choice.value).attr(
|
||||||
fieldHTML += 'checked="checked"';
|
'name', field.name).appendTo(labelElem);
|
||||||
}
|
|
||||||
fieldHTML += ' /> '+choice.name+'</label><br />';
|
|
||||||
}
|
|
||||||
} else if (field.type == 'checkbox') {
|
|
||||||
fieldHTML += '<label for="'+field.name+'"><input type="checkbox" name="'+field.name+'" ';
|
|
||||||
if (currentValue == 'on') {
|
|
||||||
fieldHTML += 'checked="checked"'
|
|
||||||
}
|
|
||||||
fieldHTML += ' /> '+field.label+'</label>'
|
|
||||||
} else if (field.type == 'number') {
|
|
||||||
fieldHTML += '<label for="'+field.name+'">'+field.label+': <input type="number" name="'+field.name+'" ';
|
|
||||||
fieldHTML += 'value="'+currentValue+'" /></label>';
|
|
||||||
}
|
|
||||||
if(fieldHTML != '') {
|
|
||||||
form += '<tr><td title="'+field.help_text+'">'+fieldHTML+'</td>';
|
|
||||||
form += '</tr>';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (form == '') {
|
if (choice.value == currentValue) {
|
||||||
form = '<tr><td>'+$.i18n('core-views')['no-settings']+'</td></tr>'
|
inputElem.attr('checked', 'checked');
|
||||||
}
|
}
|
||||||
|
labelElem.append(' '+choice.name);
|
||||||
|
td.append('<br/>');
|
||||||
|
}
|
||||||
|
td.append(fieldHTML);
|
||||||
|
} else if (field.type == 'checkbox') {
|
||||||
|
var label = $('<label></label>').attr('for', field.name).appendTo(td);
|
||||||
|
var input = $('<input type="checkbox" />').attr('name', field.name).appendTo(label);
|
||||||
|
if (currentValue == 'on') {
|
||||||
|
input.attr('checked','checked');
|
||||||
|
}
|
||||||
|
label.append(' '+field.label);
|
||||||
|
} else if (field.type == 'number' || field.type == 'text') {
|
||||||
|
var label = $('<label></label>').attr('for', field.name).appendTo(td);
|
||||||
|
label.append(field.label+': ');
|
||||||
|
var input = $('<input />').attr(
|
||||||
|
'name', field.name).attr(
|
||||||
|
'type', field.type).attr(
|
||||||
|
'value', currentValue).appendTo(label);
|
||||||
|
}
|
||||||
|
if (tr.children().length > 0) {
|
||||||
|
table.append(tr);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body.html(
|
if (table.children().length == 0) {
|
||||||
'<div class="grid-layout layout-normal layout-full"><form class="data-extension-property-config" bind="form"><table>' +
|
var tr = $('<tr></tr>').appendTo(table);
|
||||||
form +
|
$('<td></td>').text($.i18n._('core-views')['no-settings']).appendTo(tr);
|
||||||
'</table></form></div>'
|
}
|
||||||
);
|
|
||||||
|
var form = $('<form class="data-extension-property-config" bind="form"></form>').append(table);
|
||||||
|
var gridLayout = $('<div class="grid-layout layout-normal layout-full"></div>').append(form);
|
||||||
|
body.append(gridLayout);
|
||||||
var bodyElmts = DOM.bind(body);
|
var bodyElmts = DOM.bind(body);
|
||||||
|
|
||||||
if (fields == null) {
|
|
||||||
if ("settings" in property) {
|
|
||||||
bodyElmts.textarea[0].value = JSON.stringify(property.settings, null, 2);
|
|
||||||
} else {
|
|
||||||
bodyElmts.textarea[0].value = JSON.stringify({ "limit" : 10 }, null, 2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
footer.html(
|
footer.html(
|
||||||
'<button class="button" bind="okButton">'+$.i18n('core-buttons')['ok']+'</button>' +
|
'<button class="button" bind="okButton">'+$.i18n._('core-buttons')['ok']+'</button>' +
|
||||||
'<button class="button" bind="cancelButton">'+$.i18n('core-buttons')['cancel']+'</button>'
|
'<button class="button" bind="cancelButton">'+$.i18n._('core-buttons')['cancel']+'</button>'
|
||||||
);
|
);
|
||||||
var footerElmts = DOM.bind(footer);
|
var footerElmts = DOM.bind(footer);
|
||||||
|
|
||||||
@ -407,32 +399,14 @@ ExtendReconciledDataPreviewDialog.prototype._constrainProperty = function(id) {
|
|||||||
footerElmts.cancelButton.click(dismiss);
|
footerElmts.cancelButton.click(dismiss);
|
||||||
footerElmts.okButton.click(function() {
|
footerElmts.okButton.click(function() {
|
||||||
try {
|
try {
|
||||||
if (fields == null) {
|
if (fields != null) {
|
||||||
var o = JSON.parse(bodyElmts.textarea[0].value);
|
|
||||||
if (o === undefined) {
|
|
||||||
alert("Please ensure that the JSON you enter is valid.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($.isArray(o) && o.length == 1) {
|
|
||||||
o = o[0];
|
|
||||||
}
|
|
||||||
if (!$.isPlainObject(o)) {
|
|
||||||
alert("The JSON you enter must be an object, that is, it is of this form { ... }.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
property.settings = o;
|
|
||||||
} else {
|
|
||||||
var elem = $(bodyElmts.form[0]);
|
var elem = $(bodyElmts.form[0]);
|
||||||
var ar = elem.serializeArray();
|
var ar = elem.serializeArray();
|
||||||
var settings = {};
|
var settings = {};
|
||||||
for(var i = 0; i < ar.length; i++) {
|
for(var i = 0; i < ar.length; i++) {
|
||||||
settings[ar[i].name] = ar[i].value;
|
settings[ar[i].name] = ar[i].value;
|
||||||
}
|
}
|
||||||
console.log(ar);
|
|
||||||
property.settings = settings;
|
property.settings = settings;
|
||||||
console.log(settings);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dismiss();
|
dismiss();
|
||||||
|
Loading…
Reference in New Issue
Block a user