87 lines
2.7 KiB
JavaScript
87 lines
2.7 KiB
JavaScript
/*+***********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*************************************************************************************/
|
|
|
|
Vtiger_ExtensionCommon_Js("Google_Index_Js", {}, {
|
|
|
|
init : function() {
|
|
this.addComponents();
|
|
},
|
|
|
|
addComponents : function() {
|
|
this.addComponent('Google_Settings_Js');
|
|
},
|
|
|
|
registerSyncNowButton : function(container) {
|
|
container.on('click', '.syncNow', function(e) {
|
|
var params = {
|
|
module : 'Google',
|
|
view : 'Sync'
|
|
}
|
|
app.helper.showProgress();
|
|
app.request.post({data: params}).then(function(error, data){
|
|
app.helper.hideProgress();
|
|
|
|
var hasMoreVtigerRecords = false;
|
|
var hasMoreGoogleRecords = false;
|
|
|
|
jQuery.each(data, function(module, syncInfo){
|
|
hasMoreVtigerRecords = false;
|
|
hasMoreGoogleRecords = false;
|
|
|
|
if(syncInfo['google'].more === true) {
|
|
hasMoreGoogleRecords = true;
|
|
app.helper.showAlertNotification({message : app.vtranslate('JS_MORE_GOOGLE')});
|
|
}
|
|
|
|
if(syncInfo['vtiger'].more === true) {
|
|
hasMoreVtigerRecords = true;
|
|
app.helper.showAlertNotification({message : app.vtranslate('JS_MORE_VTIGER')});
|
|
}
|
|
|
|
});
|
|
|
|
if(hasMoreVtigerRecords || hasMoreGoogleRecords) {
|
|
setTimeout(3000);
|
|
}
|
|
|
|
window.location.reload();
|
|
});
|
|
});
|
|
},
|
|
|
|
registerSettingsMenuClickEvent : function(container) {
|
|
container.on('click', '.settingsPage', function(e) {
|
|
var element = jQuery(e.currentTarget);
|
|
var url = element.data('url');
|
|
if(!url) {
|
|
return;
|
|
}
|
|
|
|
var params = {
|
|
url : url
|
|
}
|
|
app.helper.showProgress();
|
|
app.request.pjax(params).then(function(error, data){
|
|
app.helper.hideProgress();
|
|
if(data) {
|
|
container.html(data);
|
|
app.event.trigger(Google_Settings_Js.postSettingsLoad, container);
|
|
}
|
|
});
|
|
});
|
|
},
|
|
|
|
registerEvents : function() {
|
|
this._super();
|
|
var container = this.getListContainer();
|
|
this.registerSyncNowButton(container);
|
|
app.event.trigger(Google_Settings_Js.postSettingsLoad, container);
|
|
}
|
|
});
|