IntervalUI.js
8.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/**
* Project : AMDA-NG
* Name : IntervalUI.js
* @class amdaUI.IntervalUI
* @extends Ext.container.Container
* @brief common component to select interval
* @author Benjamin
* @version $Id: IntervalUI.js 2077 2014-02-11 11:33:36Z elena $
* @todo Validations
*****************************************************************************
* FT Id : Date : Name - Description
******************************************************************************
*/
Ext.define('amdaUI.IntervalUI', {
extend: 'Ext.container.Container',
alias: 'widget.intervalSelector',
activeField : null,
constructor: function(config) {
this.init(config);
this.callParent(arguments);
},
setInterval : function(startDate,stopDate)
{
// get the search form
var form = this.findParentByType('form').getForm();
// get start field
var startField = form.findField('startDate');
// get stop field
var stopField = form.findField('stopDate');
if (startField != null)
startField.setValue(startDate);
if (stopField != null)
stopField.setValue(stopDate);
this.updateDuration();
},
getStartTime : function()
{
// get the search form
var form = this.findParentByType('form').getForm();
// get start field
var startField = form.findField('startDate');
return startField.getValue();
},
getStopTime : function()
{
// get the search form
var form = this.findParentByType('form').getForm();
// get stop field
var stopField = form.findField('stopDate');
return stopField.getValue();
},
updateDuration: function() {
// get the search form
var form = this.findParentByType('form').getForm();
// get start value
var start = form.findField('startDate').getValue();
// get stop value
var stop = form.findField('stopDate').getValue();
// if duration computable
if (stop != null && start != null) {
// compute offset
var zoneOffset = stop.getTimezoneOffset() - start.getTimezoneOffset();
// compute duration
var diff = stop - start - zoneOffset*60000;
var durationDays = Math.floor(diff/86400000);
// set all duration values
form.findField('durationDay').setValue(Ext.String.leftPad(durationDays,4,'0'));
form.findField('durationHour').setValue(Ext.String.leftPad(Math.floor(diff/3600000 % 24),2,'0'));
form.findField('durationMin').setValue(Ext.String.leftPad(Math.floor(diff/60000 % 60),2,'0'));
form.findField('durationSec').setValue(Ext.String.leftPad(Math.floor(diff/1000 % 60),2,'0'));
if (durationDays > 9999) {
form.findField('durationDay').markInvalid('Maximum interval is 9999 days!');
}
}
},
isValidDuration: function(){
// get the time form
var form = this.findParentByType('form').getForm();
// get global validation status for duration fields
return (
form.findField('durationDay').isValid() && form.findField('durationHour').isValid()
&& form.findField('durationMin').isValid() && form.findField('durationSec').isValid()
);// return true if all duration fields are Valid false otherwise
},
updateStop: function() {
// get the time form
var form = this.findParentByType('form').getForm();
// get duration value
var duration = parseInt(form.findField('durationDay').getValue(),10)*86400 +
parseInt(form.findField('durationHour').getValue(),10)*3600 +
parseInt(form.findField('durationMin').getValue(),10)*60 +
parseInt(form.findField('durationSec').getValue(),10);
// get start value
var start = form.findField('startDate').getValue();
// compute stop value
var stop = Ext.Date.add(start,Ext.Date.SECOND,duration);
// set stop value into form
form.findField('stopDate').setValue(stop);
},
onChangeStartField : function(field, newValue, oldValue)
{
if (field.isValid()) {
// get the search form
var form = this.findParentByType('form').getForm();
// set to the stop datefield the newValue as minValue
form.findField('stopDate').setMinValue(newValue);
// if it's a user modification
if (oldValue != null && this.activeField == 'start') {
// launch the update of duration fields
this.updateDuration();
}
}
},
onChangeStopField: function(field, newValue, oldValue){
if (field.isValid() && oldValue != null && this.activeField == 'stop') {
// launch the update of duration fields
this.updateDuration();
}
},
getDateField : function(fieldName,fieldText,fieldId,onChangeField)
{
return {
layout: {type: 'hbox', align: 'middle'},
items: [
{
xtype: 'datefield', name: fieldName, format: 'Y/m/d H:i:s',
enforceMaxLength : true,
maxLength: 19,
fieldLabel: fieldText, labelAlign: 'right', labelWidth: 60,
listeners: {
change: onChangeField,
focus: function(field) {
this.activeField = fieldId;
},
scope : this
}
}
]
};
},
getStartField : function()
{
return this.getDateField('startDate','Start Time','start',this.onChangeStartField);
},
getStopField : function()
{
return this.getDateField('stopDate','Stop Time','stop',this.onChangeStopField);
},
getDurationField : function()
{
return {
layout: {type: 'hbox', align: 'middle'},
height: 45,
defaults: {
xtype: 'textfield', labelAlign: 'top', width: 30,
allowBlank: false, maxLength:2, enforceMaxLength : true,
hideTrigger: true,
regex: /^[0-9]([0-9])*$/i,
listeners: {
change: function(field, newValue, oldValue){
if (this.isValidDuration() && oldValue != null && this.activeField == 'duration') {
// launch the update of stop datefield
this.updateStop();
}
},
focus: function(field) {
this.activeField = 'duration';
},
scope : this
}
},
items:[
{ xtype: 'displayfield', labelWidth: 60, labelAlign: 'right', width: 60, fieldLabel: '<br>Duration'},
{ xtype: 'component', width: 5},
{ name: 'durationDay', fieldLabel: 'Days', width: 45, maxLength: 4},
{ xtype: 'component', width: 5},
{ name: 'durationHour', fieldLabel: 'Hrs'},
{ xtype: 'component', width: 5},
{ name: 'durationMin', fieldLabel: 'Mins'},
{ xtype: 'component', width: 5},
{ name: 'durationSec', fieldLabel: 'Secs'}
]
};
},
init : function(config) {
var me = this;
var myConf = {
border: false,
plain: true,
flex: 1,
layout: 'anchor',
defaults: { height : 30, xtype : 'container'},
items: [
me.getStartField(),
me.getStopField(),
me.getDurationField()
]
};
Ext.apply (this , Ext.apply (arguments, myConf));
}
});