7604 |
25 Feb 19 |
nicklas |
/* $Id $ |
7604 |
25 Feb 19 |
nicklas |
2 |
------------------------------------------------------------------ |
7604 |
25 Feb 19 |
nicklas |
Copyright (C) 2012 Nicklas Nordborg |
7604 |
25 Feb 19 |
nicklas |
4 |
|
7604 |
25 Feb 19 |
nicklas |
This file is part of BASE - BioArray Software Environment. |
7604 |
25 Feb 19 |
nicklas |
Available at http://base.thep.lu.se/ |
7604 |
25 Feb 19 |
nicklas |
7 |
|
7604 |
25 Feb 19 |
nicklas |
BASE is free software; you can redistribute it and/or |
7604 |
25 Feb 19 |
nicklas |
modify it under the terms of the GNU General Public License |
7604 |
25 Feb 19 |
nicklas |
as published by the Free Software Foundation; either version 3 |
7604 |
25 Feb 19 |
nicklas |
of the License, or (at your option) any later version. |
7604 |
25 Feb 19 |
nicklas |
12 |
|
7604 |
25 Feb 19 |
nicklas |
BASE is distributed in the hope that it will be useful, |
7604 |
25 Feb 19 |
nicklas |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
7604 |
25 Feb 19 |
nicklas |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7604 |
25 Feb 19 |
nicklas |
GNU General Public License for more details. |
7604 |
25 Feb 19 |
nicklas |
17 |
|
7604 |
25 Feb 19 |
nicklas |
You should have received a copy of the GNU General Public License |
7604 |
25 Feb 19 |
nicklas |
along with BASE. If not, see <http://www.gnu.org/licenses/>. |
7604 |
25 Feb 19 |
nicklas |
20 |
------------------------------------------------------------------ |
7604 |
25 Feb 19 |
nicklas |
21 |
|
7604 |
25 Feb 19 |
nicklas |
@author Nicklas |
7604 |
25 Feb 19 |
nicklas |
23 |
*/ |
7604 |
25 Feb 19 |
nicklas |
'use strict'; |
7604 |
25 Feb 19 |
nicklas |
25 |
|
7604 |
25 Feb 19 |
nicklas |
var SelectFile = function() |
7604 |
25 Feb 19 |
nicklas |
27 |
{ |
7604 |
25 Feb 19 |
nicklas |
var select = {}; |
7604 |
25 Feb 19 |
nicklas |
29 |
|
7604 |
25 Feb 19 |
nicklas |
30 |
/** |
7604 |
25 Feb 19 |
nicklas |
Initialize the page. |
7604 |
25 Feb 19 |
nicklas |
32 |
*/ |
7604 |
25 Feb 19 |
nicklas |
select.initPage = function() |
7604 |
25 Feb 19 |
nicklas |
34 |
{ |
7604 |
25 Feb 19 |
nicklas |
// Buttons |
7604 |
25 Feb 19 |
nicklas |
Buttons.addClickHandler('close', App.closeWindow); |
7604 |
25 Feb 19 |
nicklas |
Buttons.addClickHandler('btnNext', select.next); |
7604 |
25 Feb 19 |
nicklas |
Buttons.addClickHandler('btnBrowse', select.browseOnClick); |
7604 |
25 Feb 19 |
nicklas |
Events.addEventHandler('path', 'base-selected', select.setFileCallback); |
7604 |
25 Feb 19 |
nicklas |
40 |
|
7604 |
25 Feb 19 |
nicklas |
Events.addEventHandler('recentFile', 'change', select.recentFileOnChange); |
7604 |
25 Feb 19 |
nicklas |
Events.addEventHandler('dataFile', 'change', select.dataFileOnChange); |
7604 |
25 Feb 19 |
nicklas |
43 |
} |
7604 |
25 Feb 19 |
nicklas |
44 |
|
7604 |
25 Feb 19 |
nicklas |
select.browseOnClick = function() |
7604 |
25 Feb 19 |
nicklas |
46 |
{ |
7604 |
25 Feb 19 |
nicklas |
var url = '&title=Select+file+to+import+from'; |
7604 |
25 Feb 19 |
nicklas |
Dialogs.selectItem('FILE', 'path', 0, url); |
7604 |
25 Feb 19 |
nicklas |
49 |
} |
7604 |
25 Feb 19 |
nicklas |
50 |
|
7604 |
25 Feb 19 |
nicklas |
select.setFileCallback = function(event) |
7604 |
25 Feb 19 |
nicklas |
52 |
{ |
7604 |
25 Feb 19 |
nicklas |
var fileId = event.detail.id; |
7604 |
25 Feb 19 |
nicklas |
var path = event.detail.name; |
7604 |
25 Feb 19 |
nicklas |
select.setFile(fileId, path); |
7604 |
25 Feb 19 |
nicklas |
56 |
} |
7604 |
25 Feb 19 |
nicklas |
57 |
|
7604 |
25 Feb 19 |
nicklas |
select.setFile = function(fileId, path) |
7604 |
25 Feb 19 |
nicklas |
59 |
{ |
7604 |
25 Feb 19 |
nicklas |
var frm = document.forms['import']; |
7604 |
25 Feb 19 |
nicklas |
frm.file_id.value = fileId; |
7604 |
25 Feb 19 |
nicklas |
frm.path.value = path; |
7604 |
25 Feb 19 |
nicklas |
select.updateCharset(fileId); |
7604 |
25 Feb 19 |
nicklas |
64 |
} |
7604 |
25 Feb 19 |
nicklas |
65 |
|
7604 |
25 Feb 19 |
nicklas |
select.updateCharset = function(fileId) |
7604 |
25 Feb 19 |
nicklas |
67 |
{ |
7604 |
25 Feb 19 |
nicklas |
var request = Ajax.getXmlHttpRequest(); |
7604 |
25 Feb 19 |
nicklas |
if (request != null) |
7604 |
25 Feb 19 |
nicklas |
70 |
{ |
7604 |
25 Feb 19 |
nicklas |
var url = App.getRoot()+'filemanager/files/ajax.jsp?ID='+App.getSessionId(); |
7604 |
25 Feb 19 |
nicklas |
url += '&cmd=GetFileInfo&item_id=' + fileId; |
7604 |
25 Feb 19 |
nicklas |
request.open("GET", url, true); |
7604 |
25 Feb 19 |
nicklas |
Ajax.setReadyStateHandler(request, select.updateCharsetCallback); |
7604 |
25 Feb 19 |
nicklas |
request.send(null); |
7604 |
25 Feb 19 |
nicklas |
76 |
} |
7604 |
25 Feb 19 |
nicklas |
return request != null; |
7604 |
25 Feb 19 |
nicklas |
78 |
} |
7604 |
25 Feb 19 |
nicklas |
79 |
|
7604 |
25 Feb 19 |
nicklas |
select.updateCharsetCallback = function(request) |
7604 |
25 Feb 19 |
nicklas |
81 |
{ |
7604 |
25 Feb 19 |
nicklas |
var response = JSON.parse(request.responseText); |
7604 |
25 Feb 19 |
nicklas |
if (response.status != 'ok') return; |
7604 |
25 Feb 19 |
nicklas |
var charset = response.characterSet; |
7604 |
25 Feb 19 |
nicklas |
if (!charset) charset = Data.get('page-data', 'default-charset'); |
7604 |
25 Feb 19 |
nicklas |
var frm = document.forms['import']; |
7604 |
25 Feb 19 |
nicklas |
Forms.selectListOption(frm.charset, charset); |
7604 |
25 Feb 19 |
nicklas |
88 |
} |
7604 |
25 Feb 19 |
nicklas |
89 |
|
7604 |
25 Feb 19 |
nicklas |
select.recentFileOnChange = function() |
7604 |
25 Feb 19 |
nicklas |
91 |
{ |
7604 |
25 Feb 19 |
nicklas |
var frm = document.forms['import']; |
7604 |
25 Feb 19 |
nicklas |
var selected = frm.recentFile[frm.recentFile.selectedIndex]; |
7604 |
25 Feb 19 |
nicklas |
select.setFile(selected.value, selected.text); |
7604 |
25 Feb 19 |
nicklas |
frm.recentFile.selectedIndex = 0; |
7604 |
25 Feb 19 |
nicklas |
96 |
} |
7604 |
25 Feb 19 |
nicklas |
97 |
|
7604 |
25 Feb 19 |
nicklas |
select.dataFileOnChange = function() |
7604 |
25 Feb 19 |
nicklas |
99 |
{ |
7604 |
25 Feb 19 |
nicklas |
var frm = document.forms['import']; |
7604 |
25 Feb 19 |
nicklas |
var selected = frm.dataFile[frm.dataFile.selectedIndex]; |
7604 |
25 Feb 19 |
nicklas |
select.setFile(selected.value, selected.text.replace(/\[.*\]\s/, '')); |
7604 |
25 Feb 19 |
nicklas |
frm.dataFile.selectedIndex = 0; |
7604 |
25 Feb 19 |
nicklas |
104 |
} |
7604 |
25 Feb 19 |
nicklas |
105 |
|
7604 |
25 Feb 19 |
nicklas |
select.next = function() |
7604 |
25 Feb 19 |
nicklas |
107 |
{ |
7604 |
25 Feb 19 |
nicklas |
var frm = document.forms['import']; |
7604 |
25 Feb 19 |
nicklas |
if (Strings.trim(frm.path.value) == '') |
7604 |
25 Feb 19 |
nicklas |
110 |
{ |
7604 |
25 Feb 19 |
nicklas |
Forms.showNotification('btnBrowse', 'You must select a file to import from'); |
7604 |
25 Feb 19 |
nicklas |
112 |
} |
7604 |
25 Feb 19 |
nicklas |
else |
7604 |
25 Feb 19 |
nicklas |
114 |
{ |
7604 |
25 Feb 19 |
nicklas |
frm.submit(); |
7604 |
25 Feb 19 |
nicklas |
116 |
} |
7604 |
25 Feb 19 |
nicklas |
117 |
} |
7604 |
25 Feb 19 |
nicklas |
118 |
|
7604 |
25 Feb 19 |
nicklas |
119 |
|
7604 |
25 Feb 19 |
nicklas |
return select; |
7604 |
25 Feb 19 |
nicklas |
121 |
}(); |
7604 |
25 Feb 19 |
nicklas |
122 |
|
6200 |
05 Nov 12 |
nicklas |
Doc.onLoad(SelectFile.initPage); |