0
1
Fork 0
hedera-web-mindshore/js/db/form.js

128 lines
1.8 KiB
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
var Iterator = require ('./iterator');
var Model = require ('./model');
module.exports = new Class
({
2015-07-03 05:49:45 +00:00
Extends: Vn.Object
2016-09-26 09:28:47 +00:00
,Implements: Iterator
,Tag: 'db-form'
,Properties:
{
/**
* The model associated to this form.
2016-12-20 09:32:17 +00:00
*/
model:
{
2016-09-26 09:28:47 +00:00
type: Model
,set: function (x)
{
this.link ({_model: x},
{
'status-changed': this.onModelChange
,'row-updated': this.onRowUpdate
});
}
,get: function ()
{
return this._model;
}
},
/**
* The row where the form positioned, has -1 if the row is unselected.
2016-12-20 09:32:17 +00:00
*/
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;
2017-03-30 11:44:53 +00:00
this.changed ();
}
,get: function ()
{
return this._row;
}
},
/**
* The number of rows in the form.
2016-12-20 09:32:17 +00:00
*/
numRows:
{
type: Number
,get: function ()
{
if (this._model)
return this._model.numRows;
return 0;
}
},
/**
* Checks if the form data is ready.
2016-12-20 09:32:17 +00:00
*/
ready:
{
type: Boolean
,get: function ()
{
return this._ready;
}
2017-04-08 11:42:27 +00:00
},
/**
* The current row parameters.
*/
params:
{
type: Object
,set: function (x)
{
this.assign (x);
}
,get: function ()
{
return this.getParams ();
}
}
}
,lastRow: 0
,_model: null
,_row: -1
,_ready: false
,onModelChange: function ()
{
var ready = this._model && this._model.ready;
if (ready != this._ready)
{
if (this._row != -1)
this.lastRow = this._row;
this._ready = ready;
this.signalEmit ('status-changed');
if (this._row == -1)
this.row = this.lastRow;
2015-07-15 13:39:07 +00:00
if (ready)
this.signalEmit ('ready');
2016-05-04 14:36:51 +00:00
2017-03-30 11:44:53 +00:00
this.changed ();
}
}
2017-03-30 11:44:53 +00:00
,onRowUpdate: function (model, row)
{
if (row == this._row)
2017-03-30 11:44:53 +00:00
this.changed ();
}
});