]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jssource/src_files/include/javascript/importWizard.js
Release 6.4.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-2011 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                                 if ( !document.getElementById( "sugar_grp_overlib" )) {
84                                                 var oScriptOverLib= document.createElement("script");
85                                                 oScriptOverLib.type = "text/javascript";
86                                                 oScriptOverLib.id = "sugar_grp_overlib";
87                                                 oScriptOverLib.src="cache/include/javascript/sugar_grp_overlib.js";
88                                                 oHead.appendChild( oScriptOverLib);
89                                                 
90                                                 var overDiv= document.createElement("div");
91                                                 overDiv.id = "overDiv";
92                                                 overDiv.style.position = "absolute"
93                                                 overDiv.style.visibility = "hidden";
94                                                 overDiv.style.zIndex = "1000";
95                                                 overDiv.style.maxWidth = "400px";
96                                                 var parentEl = oBody.firstChild;
97                                                 parentEl.parentNode.insertBefore(overDiv, parentEl);
98         
99                                 }
100                                 
101                                 
102                                 var success = function(data) {          
103                                         var response = YAHOO.lang.JSON.parse(data.responseText);
104                                         importWizardDialogDiv = document.getElementById('importWizardDialogDiv');
105                                         var submitDiv = document.getElementById('submitDiv');
106                                         var importWizardDialogTitle = document.getElementById('importWizardDialogTitle');
107                                         importWizardDialogDiv.innerHTML = response['html'];
108                                         importWizardDialogTitle.innerHTML = response['title'];
109                                         submitDiv.innerHTML = response['submitContent'];
110                                         document.getElementById('importWizardDialog').style.display = '';                                                                                                
111                                         SUGAR.importWizard.dialog.render();
112                                         SUGAR.importWizard.dialog.show();
113         
114                                         eval(response['script']);
115         
116         
117                                 }
118                                 
119                                 var cObj = YAHOO.util.Connect.asyncRequest('GET', 'index.php?module=Import&action='+actionVar+'&import_module='+importModuleVAR+'&source='+sourceVar, {success: success, failure: success});                    
120                                 return false;
121                         });
122                         
123                         
124                         //document.getElementById('importWizardDialog_c').style.display = 'none';                       
125                 },
126                 closeDialog: function() {
127                         
128                                 SUGAR.importWizard.dialog.hide();
129                                 var importWizardDialogDiv = document.getElementById('importWizardDialogDiv');
130                                 var submitDiv = document.getElementById('submitDiv');
131                                 importWizardDialogDiv.innerHTML = "";
132                                 submitDiv.innerHTML = "";
133                                 SUGAR.importWizard.dialog.destroy();
134                 },
135                 
136                 renderLoadingDialog: function() {
137                         SUGAR.importWizard.loading = new YAHOO.widget.Panel("loading",
138                         { width:"240px",
139                           fixedcenter:true,
140                           close:false,
141                           draggable:false,
142               constraintoviewport:false,                                                                                                                          
143                           modal:true,
144                           visible:false,
145                           effect:[{effect:YAHOO.widget.ContainerEffect.SLIDE, duration:0.5},
146                                           {effect:YAHOO.widget.ContainerEffect.FADE, duration:.5}]
147                         });
148                         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>');
149                         SUGAR.importWizard.loading.render(document.body);               
150                         if (document.getElementById('loading_c'))
151                 document.getElementById('loading_c').style.display = 'none';
152                 }
153     };
154 }();