]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jssource/src_files/include/javascript/importWizard.js
Release 6.5.0
[Github/sugarcrm.git] / jssource / src_files / include / javascript / importWizard.js
1 /*********************************************************************************
2  * SugarCRM Community Edition is a customer relationship management program developed by
3  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU Affero General Public License version 3 as published by the
7  * Free Software Foundation with the addition of the following permission added
8  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
9  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
10  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
11  * 
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
15  * details.
16  * 
17  * You should have received a copy of the GNU Affero General Public License along with
18  * this program; if not, see http://www.gnu.org/licenses or write to the Free
19  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20  * 02110-1301 USA.
21  * 
22  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
23  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
24  * 
25  * The interactive user interfaces in modified source and object code versions
26  * of this program must display Appropriate Legal Notices, as required under
27  * Section 5 of the GNU Affero General Public License version 3.
28  * 
29  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
30  * these Appropriate Legal Notices must retain the display of the "Powered by
31  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
32  * technical reasons, the Appropriate Legal Notices must display the words
33  * "Powered by SugarCRM".
34  ********************************************************************************/
35
36
37 SUGAR.importWizard= {};
38
39 SUGAR.importWizard = function() {
40         return {
41         
42                 renderDialog: function(importModuleVAR,actionVar,sourceVar){
43                         
44                         //show loading panel
45                         //SUGAR.importWizard.renderLoadingDialog();
46                         
47                         
48                         // create dialog container div
49                         var oBody = document.getElementsByTagName('BODY').item(0);
50                         if ( !document.getElementById( "importWizardDialog" )) {
51                                         var importWizardDialogDiv = document.createElement("div");
52                                         importWizardDialogDiv.id = "importWizardDialog";
53                                         importWizardDialogDiv.style.display = "none";
54                                         importWizardDialogDiv.className = "dashletPanelMenu wizard import";
55                                         importWizardDialogDiv.innerHTML = '<div class="hd"><a href="javascript:void(0)" onClick="javascript:SUGAR.importWizard.closeDialog();"><div class="container-close">&nbsp;</div></a><div class="title" id="importWizardDialogTitle"></div></div><div class="bd"><div class="screen" id="importWizardDialogDiv"></div><div id="submitDiv"></div></div>';
56                                         oBody.appendChild(importWizardDialogDiv);
57                         }
58                         
59                         
60                         
61                         YAHOO.util.Event.onContentReady("importWizardDialog", function() 
62                         {
63                                 SUGAR.importWizard.dialog = new YAHOO.widget.Dialog("importWizardDialog", 
64                                 { width : "950px",
65                                   height: "565px",
66                                   fixedcenter : true,
67                                   draggable:false,
68                                   visible : false, 
69                                   modal : true,
70                                   close:false
71                                  } );
72         
73                                 var oHead = document.getElementsByTagName('HEAD').item(0);
74                                 // insert requred js files
75                                 if ( !document.getElementById( "sugar_grp_yui_widgets" )) {
76                                                 var oScript= document.createElement("script");
77                                                 oScript.type = "text/javascript";
78                                                 oScript.id = "sugar_grp_yui_widgets";
79                                                 oScript.src="cache/include/javascript/sugar_grp_yui_widgets.js";
80                                                 oHead.appendChild( oScript);
81                                 }
82                                 
83                                 
84                                 
85                                 var success = function(data) {          
86                                         var response = YAHOO.lang.JSON.parse(data.responseText);
87                                         importWizardDialogDiv = document.getElementById('importWizardDialogDiv');
88                                         var submitDiv = document.getElementById('submitDiv');
89                                         var importWizardDialogTitle = document.getElementById('importWizardDialogTitle');
90                                         importWizardDialogDiv.innerHTML = response['html'];
91                                         importWizardDialogTitle.innerHTML = response['title'];
92                                         submitDiv.innerHTML = response['submitContent'];
93                                         document.getElementById('importWizardDialog').style.display = '';                                                                                                
94                                         SUGAR.importWizard.dialog.render();
95                                         SUGAR.importWizard.dialog.show();
96         
97                                         eval(response['script']);
98         
99         
100                                 }
101                                 
102                                 var cObj = YAHOO.util.Connect.asyncRequest('GET', 'index.php?module=Import&action='+actionVar+'&import_module='+importModuleVAR+'&source='+sourceVar, {success: success, failure: success});                    
103                                 return false;
104                         });
105                         
106                         
107                         //document.getElementById('importWizardDialog_c').style.display = 'none';                       
108                 },
109                 closeDialog: function() {
110                         
111                                 SUGAR.importWizard.dialog.hide();
112                                 var importWizardDialogDiv = document.getElementById('importWizardDialogDiv');
113                                 var submitDiv = document.getElementById('submitDiv');
114                                 importWizardDialogDiv.innerHTML = "";
115                                 submitDiv.innerHTML = "";
116                                 SUGAR.importWizard.dialog.destroy();
117                 },
118                 
119                 renderLoadingDialog: function() {
120                         SUGAR.importWizard.loading = new YAHOO.widget.Panel("loading",
121                         { width:"240px",
122                           fixedcenter:true,
123                           close:false,
124                           draggable:false,
125               constraintoviewport:false,                                                                                                                          
126                           modal:true,
127                           visible:false,
128                           effect:[{effect:YAHOO.widget.ContainerEffect.SLIDE, duration:0.5},
129                                           {effect:YAHOO.widget.ContainerEffect.FADE, duration:.5}]
130                         });
131                         SUGAR.importWizard.loading.setBody('<div id="loadingPage" align="center" style="vertical-align:middle;"><img src="' + SUGAR.themes.image_server + 'index.php?entryPoint=getImage&themeName='+SUGAR.themes.theme_name+'&imageName=img_loading.gif" align="absmiddle" /> <b>' + SUGAR.language.get('app_strings', 'LBL_LOADING_PAGE') +'</b></div>');
132                         SUGAR.importWizard.loading.render(document.body);               
133                         if (document.getElementById('loading_c'))
134                 document.getElementById('loading_c').style.display = 'none';
135                 }
136     };
137 }();