hedera-web/web/js/htk/field/select.js

208 lines
3.5 KiB
JavaScript
Raw Normal View History

Htk.Select = new Class
({
Extends: Htk.Field
2015-07-03 05:49:45 +00:00
,Implements: Db.Iterator
,Tag: 'htk-combo'
,Properties:
{
/**
* The model associated to this form.
**/
model:
{
type: Db.Model
,set: function (x)
{
this.link ({_model: x}, {'status-changed': this.onModelChange});
this.onModelChange ();
}
,get: function ()
{
return this._model;
}
2015-07-03 05:49:45 +00:00
},
/**
* The row where the form positioned, has -1 if the row is unselected.
**/
row:
{
type: Number
,set: function (x)
{
if (!this._model || this._model.numRows <= x || x < -1)
x = -1;
if (x == this._row)
return;
this._row = x;
this.iterChanged ();
}
,get: function ()
{
return this._row;
}
},
/**
* The number of rows in the form.
**/
numRows:
{
type: Number
,get: function ()
{
if (this._model)
return this._model.numRows;
return 0;
}
},
/**
* Checks if the form data is ready.
**/
ready:
{
type: Boolean
,get: function ()
{
return this._ready;
}
2015-09-28 11:37:31 +00:00
},
/**
* Checks if the form data is ready.
**/
placeholder:
{
type: String
,set: function (x)
{
this._placeholder = x;
if (this._placeholderNode)
Vn.Node.setText (this._placeholderNode, x);
}
,get: function ()
{
return this._placeholder;
}
}
}
2015-07-03 05:49:45 +00:00
,_row: -1
,_model: null
,valueColumnIndex: 0
,valueColumnName: null
,showColumnIndex: 1
,showColumnName: null
,initialize: function (props)
{
this.parent (props);
this.createElement ('select');
this.node.addEventListener ('change', this.changed.bind (this));
}
2015-07-03 05:49:45 +00:00
,setRow: function (row)
{
this._row = row;
this.iterChanged ();
}
,changed: function (event)
{
var value;
var row = this.node.selectedIndex - 1;
if (row >= 0)
value = this._model.getByIndex (row, this.valueColumnIndex);
else
value = null;
this.valueChanged (value);
2015-07-03 05:49:45 +00:00
this.setRow (row);
}
,addOption: function (value, text)
{
var option = document.createElement ('option');
option.value = value;
2015-09-28 11:37:31 +00:00
if (text)
option.appendChild (document.createTextNode (text));
this.node.appendChild (option);
}
,addPlaceholder: function (text)
{
var option = document.createElement ('option');
option.disabled = true;
option.selected = true;
option.value = null;
if (text)
option.appendChild (document.createTextNode (text));
this.node.appendChild (option);
2015-09-28 11:37:31 +00:00
this._placeholderNode = option;
}
,onModelChange: function ()
{
2015-09-28 11:37:31 +00:00
var placeholder = '';
var model = this._model;
2015-07-03 05:49:45 +00:00
this.signalEmit ('status-changed');
Vn.Node.removeChilds (this.node);
switch (model.status)
{
case Db.Model.Status.READY:
{
var data = model.data;
2015-09-28 11:37:31 +00:00
this.addPlaceholder (this._placeholder);
for (var i = 0; i < data.length; i++)
this.addOption (data[i][this.showColumnIndex], data[i][1]);
this.selectOption ();
break;
}
case Db.Model.Status.ERROR:
2015-09-28 11:37:31 +00:00
placeholder = 'Error';
break;
2015-07-10 12:30:08 +00:00
case Db.Model.Status.LOADING:
2015-09-28 11:37:31 +00:00
placeholder = 'Loading...';
2015-07-03 05:49:45 +00:00
default:
2015-09-28 11:37:31 +00:00
this.addPlaceholder (_(placeholder));
2015-07-03 05:49:45 +00:00
this.setRow (-1);
}
}
,setEditable: function (editable)
{
this.node.disabled = !editable;
}
,selectOption: function ()
{
2015-07-03 05:49:45 +00:00
var row;
if (this._model && this._model.status == Db.Model.Status.READY)
{
row = this._model.searchByIndex (this.valueColumnIndex, this._value);
2015-07-03 05:49:45 +00:00
if (row != -1)
this.node.selectedIndex = row + 1;
}
else
row = -1;
2015-07-03 05:49:45 +00:00
this.setRow (row);
}
,putValue: function (value)
{
this.selectOption ();
}
});