www/filemanager/save_as.js

Code
Comments
Other
Rev Date Author Line
7604 25 Feb 19 nicklas 1 /* $Id $
7604 25 Feb 19 nicklas 2   ------------------------------------------------------------------
7604 25 Feb 19 nicklas 3   Copyright (C) 2012 Nicklas Nordborg
7604 25 Feb 19 nicklas 4
7604 25 Feb 19 nicklas 5   This file is part of BASE - BioArray Software Environment.
7604 25 Feb 19 nicklas 6   Available at http://base.thep.lu.se/
7604 25 Feb 19 nicklas 7
7604 25 Feb 19 nicklas 8   BASE is free software; you can redistribute it and/or
7604 25 Feb 19 nicklas 9   modify it under the terms of the GNU General Public License
7604 25 Feb 19 nicklas 10   as published by the Free Software Foundation; either version 3
7604 25 Feb 19 nicklas 11   of the License, or (at your option) any later version.
7604 25 Feb 19 nicklas 12
7604 25 Feb 19 nicklas 13   BASE is distributed in the hope that it will be useful,
7604 25 Feb 19 nicklas 14   but WITHOUT ANY WARRANTY; without even the implied warranty of
7604 25 Feb 19 nicklas 15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7604 25 Feb 19 nicklas 16   GNU General Public License for more details.
7604 25 Feb 19 nicklas 17
7604 25 Feb 19 nicklas 18   You should have received a copy of the GNU General Public License
7604 25 Feb 19 nicklas 19   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 22   @author Nicklas
7604 25 Feb 19 nicklas 23 */
7604 25 Feb 19 nicklas 24 'use strict';
7604 25 Feb 19 nicklas 25
7604 25 Feb 19 nicklas 26 var SelectFile = function()
7604 25 Feb 19 nicklas 27 {
7604 25 Feb 19 nicklas 28   var selectFile = {};
7604 25 Feb 19 nicklas 29   var defaultFilename;
7604 25 Feb 19 nicklas 30   
7604 25 Feb 19 nicklas 31   selectFile.initPage = function()
7604 25 Feb 19 nicklas 32   {
7604 25 Feb 19 nicklas 33     defaultFilename = Data.get('page-data', 'default-filename');
7604 25 Feb 19 nicklas 34
7604 25 Feb 19 nicklas 35     Buttons.addClickHandler('close', App.closeWindow);
7604 25 Feb 19 nicklas 36     Buttons.addClickHandler('btnOk', selectFile.returnSelected);
7604 25 Feb 19 nicklas 37   }
7604 25 Feb 19 nicklas 38
7604 25 Feb 19 nicklas 39   // Called when a user selects a file
7604 25 Feb 19 nicklas 40   // Update the full path and switch the
7604 25 Feb 19 nicklas 41   // default filename to the current filename
7604 25 Feb 19 nicklas 42   selectFile.setSelectedFile = function(fileId, path)
7604 25 Feb 19 nicklas 43   {
7604 25 Feb 19 nicklas 44     var frm = document.forms['file'];
7604 25 Feb 19 nicklas 45     var i = path.lastIndexOf('/');
7604 25 Feb 19 nicklas 46     if (i >= 0) defaultFilename = path.substring(i+1);
7604 25 Feb 19 nicklas 47     frm.file_id.value = fileId;
7604 25 Feb 19 nicklas 48     frm.path.value = path;
7604 25 Feb 19 nicklas 49   }
7604 25 Feb 19 nicklas 50
7604 25 Feb 19 nicklas 51   // Called when a user selects a directory
7604 25 Feb 19 nicklas 52   // If a default filename exists, append that to the directory
7604 25 Feb 19 nicklas 53   // path to create the full filename
7604 25 Feb 19 nicklas 54   selectFile.setSelectedDirectory = function(directoryId, path)
7604 25 Feb 19 nicklas 55   {
7604 25 Feb 19 nicklas 56     var frm = document.forms['file'];
7604 25 Feb 19 nicklas 57     if (defaultFilename)
7604 25 Feb 19 nicklas 58     {
7604 25 Feb 19 nicklas 59       if (path.substring(path.length-1) != '/') path += '/';
7604 25 Feb 19 nicklas 60       path += defaultFilename;
7604 25 Feb 19 nicklas 61     }
7604 25 Feb 19 nicklas 62     frm.file_id.value = '';
7604 25 Feb 19 nicklas 63     frm.path.value = path;
7604 25 Feb 19 nicklas 64   }
7604 25 Feb 19 nicklas 65
7604 25 Feb 19 nicklas 66   selectFile.returnSelected = function()
7604 25 Feb 19 nicklas 67   {
7604 25 Feb 19 nicklas 68     var frm = document.forms['file'];
7604 25 Feb 19 nicklas 69     
7604 25 Feb 19 nicklas 70     if (frm.path.value)
7604 25 Feb 19 nicklas 71     {
7604 25 Feb 19 nicklas 72       var callback = Data.get('page-data', 'callback');
7604 25 Feb 19 nicklas 73       var notifyTarget = window.opener.document.getElementById(callback);
7604 25 Feb 19 nicklas 74       var callbackMethod = window.opener[callback];
7604 25 Feb 19 nicklas 75       if (notifyTarget)
7604 25 Feb 19 nicklas 76       {
7604 25 Feb 19 nicklas 77         // Send event to the target in the opener window
7604 25 Feb 19 nicklas 78         Events.sendCustomEvent(notifyTarget, 'base-selected', {'path': frm.path.value});
7604 25 Feb 19 nicklas 79       }
7604 25 Feb 19 nicklas 80       else if (callbackMethod)
7604 25 Feb 19 nicklas 81       {
7604 25 Feb 19 nicklas 82         // Call the callback method in the opener window
7604 25 Feb 19 nicklas 83         callbackMethod.call(null, frm.path.value);
7604 25 Feb 19 nicklas 84       }
7604 25 Feb 19 nicklas 85     }
7604 25 Feb 19 nicklas 86     window.close();
7604 25 Feb 19 nicklas 87   }
7604 25 Feb 19 nicklas 88
7604 25 Feb 19 nicklas 89   return selectFile;
7604 25 Feb 19 nicklas 90 }();
7604 25 Feb 19 nicklas 91
7604 25 Feb 19 nicklas 92 Doc.onLoad(SelectFile.initPage);
7604 25 Feb 19 nicklas 93
7604 25 Feb 19 nicklas 94