ExportResultStep.js
3.05 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
Ext.define('treps.controller.Steps.ExportResultStep', {
extend: 'treps.controller.Steps.BaseStep',
hiddenForm: null,
views: [
'Steps.ExportResult.ExportResultPanel'
],
refs: [
{
ref: 'downloadButton',
selector: 'exportresult_panel > #downloadBtn'
},
{
ref: 'sampButton',
selector: 'exportresult_panel > sampsend_button'
}
],
init: function() {
var me = this;
this.control(
{
'exportresult_panel > #downloadBtn' : {
click: me.onDownload
}
}
);
me.getSampButton().onUpdateMenu = me.onUpdateSAMPMenu;
},
onDownload: function()
{
var me = this;
var session = treps.model.Session;
if (this.hiddenForm == null)
this.hiddenForm = Ext.create('Ext.form.Panel', {
title:'hiddenForm',
renderTo: Ext.getBody(),
standardSubmit: true,
url: treps.Constants.PHP_DIR+'DownloadExport.php',
timeout: 120000,
height:100,
width: 100,
hidden:true,
items:[
]
});
this.hiddenForm.getForm().submit({
params: {
id: session.get('id'),
filename: session.get('in_filenameBase')
},
success: function(form, action) {
},
failure: function(form, action) {
}
});
},
getSAMPClientMenuItem : function(name,id,icon,format)
{
var sampManager = treps.controller.SAMP.SAMPManager;
var me = this;
var href = window.location.href;
return {
text : name+' ('+id+')',
clientId : id,
handler : function ()
{
if (!sampManager.isConnected())
return;
sampManager.sendFile(id,format,href+treps.Constants.PHP_DIR+'DownloadExport.php?id='+treps.model.Session.get('id'));
},
icon : icon
};
},
onUpdateSAMPMenu: function(button)
{
var sampManager = treps.controller.SAMP.SAMPManager;
var exportController = treps.app.getController('Steps.ExportResultStep');
if (!sampManager.isConnected())
{
sampManager.connect();
return false;
}
var clientsStore = sampManager.getClientsStore();
var exportFormat = treps.model.Session.get('exportFormat');
button.menu.removeAll();
var me = this;
clientsStore.each(function(client)
{
if (((exportFormat == 'votable') && client.get('acceptVOTable')) ||
((exportFormat == 'cdf') && client.get('acceptCDF')) ||
((exportFormat == 'netcdf') && client.get('acceptNetCDF')))
button.menu.add(exportController.getSAMPClientMenuItem(client.get('name'),client.get('id'),client.get('icon'),exportFormat));
}
);
if (clientsStore.count() > 0)
{
button.menu.add('-');
button.menu.add(exportController.getSAMPClientMenuItem('all clients','hub','',exportFormat));
}
return true;
},
isValidStep: function() {
return false;
},
doRequest: function(afterrequest) {
},
doInitStep: function() {
this.getSampButton().onUpdateMenu = this.onUpdateSAMPMenu;
var exportFormat = treps.model.Session.get('exportFormat');
this.getSampButton().setDisabled(exportFormat == 'ascii');
}
});