/** 
 * Copyright Intermesh
 * 
 * This file is part of Group-Office. You should have received a copy of the
 * Group-Office license along with Group-Office. See the file /LICENSE.TXT
 * 
 * If you have questions write an e-mail to info@intermesh.nl
 * 
 * @version $Id: PersonalSettingsDialog.js 7710 2011-07-11 09:25:05Z wsmits $
 * @copyright Copyright Intermesh
 * @author Merijn Schering <mschering@intermesh.nl>
 */
 
 
GO.PersonalSettingsDialog = function(config){
	
	
	if(!config)
	{
		config={};
	}
	
	this.buildForm();
	
	//config.iconCls='go-module-icon-users';
	config.layout='fit';
	config.modal=true;
	config.resizable=true;
  config.maxizable=true;
	config.width=900;
	config.height=520;
	config.closeAction='hide';
	config.title= GO.lang.settings;					
	config.items= this.formPanel;
	//config.focus= focusName.createDelegate(this);
	config.buttons=[{
			text: GO.lang['cmdOk'],
			handler: function(){
				this.submitForm(true);
				
			},
			scope: this
		}/*,{
			text: GO.lang['cmdApply'],
			handler: function(){
				this.submitForm();
			},
			scope:this
		}*/,{
			text: GO.lang['cmdClose'],
			handler: function(){
				this.hide();
			},
			scope:this
		}					
	];

	
	GO.PersonalSettingsDialog.superclass.constructor.call(this, config);
	
	this.addEvents({'save' : true});	
};

Ext.extend(GO.PersonalSettingsDialog, GO.Window,{

	reload : false,

	
	show : function () {		
		this.reload=false;
		
		if(!this.rendered)
		{
			this.render(Ext.getBody());
			
			this.tabPanel.items.items[0].languageCombo.on('change', function(){this.reload=true;}, this);
			
			//theme changing might be disabled
			if(this.tabPanel.items.items[1].themeCombo)
			{
				this.tabPanel.items.items[1].themeCombo.on('change', function(){this.reload=true;}, this);
			}		
		}		
		
		this.formPanel.form.baseParams['user_id']=GO.settings.user_id;
		this.user_id=GO.settings.user_id;
		
		if(!this.loaded)
		{
			this.formPanel.load({
				url : BaseHref+'json.php',				
				success:function(form, action)
				{				
					this.loaded=true;
					GO.PersonalSettingsDialog.superclass.show.call(this);					
					
					for(var i=0;i<this.tabPanel.items.getCount();i++)
					{
						var panel = this.tabPanel.items.itemAt(i);
						if(panel.onLoadSettings)
						{
							var func = panel.onLoadSettings.createDelegate(panel, [action]);
							func.call();							 
						}
					}					
			},
				failure:function(form, action)
				{
					Ext.Msg.alert(GO.lang['strError'], action.result.feedback)
				},
				scope: this				
			});
		}else
		{
			GO.PersonalSettingsDialog.superclass.show.call(this);
		}
	},
	
	setWritePermission : function(writePermission)
	{
		this.buttons[0].setDisabled(!writePermission);
		this.buttons[1].setDisabled(!writePermission);
		this.linksPanel.setWritePermission(writePermission);
	},
	

	submitForm : function(hide){

		for(var i=0;i<this.tabPanel.items.getCount();i++)
		{
			var panel = this.tabPanel.items.itemAt(i);
			if(panel.onBeforeSaveSettings)
			{
				var func = panel.onBeforeSaveSettings.createDelegate(panel, [this]);
				var result = func.call();
				if(!result)
				{
					this.tabPanel.setActiveTab(panel);
					return false;
				}
			}
		}

		this.formPanel.form.submit(
		{
			url : BaseHref+'action.php',
			params: {'task' : 'save_settings'},
			waitMsg:GO.lang['waitMsgSave'],
			success:function(form, action){
				
				this.fireEvent('save', this);	
				
					for(var i=0;i<this.tabPanel.items.getCount();i++)
					{
						var panel = this.tabPanel.items.itemAt(i);
						if(panel.onSaveSettings)
						{
							var func = panel.onSaveSettings.createDelegate(panel, [action]);
							func.call();							 
						}
					}

				GO.settings.mute_sound=this.formPanel.form.findField('mute_sound').getValue();
        GO.settings.mute_reminder_sound=this.formPanel.form.findField('mute_reminder_sound').getValue();
        GO.settings.mute_new_mail_sound=this.formPanel.form.findField('mute_new_mail_sound').getValue();
				GO.settings.popup_reminders=this.formPanel.form.findField('popup_reminders').getValue();
        GO.settings.show_smilies=this.formPanel.form.findField('show_smilies').getValue();

				document.location=GO.settings.config.host;
				
//				if(this.reload)
//				{
//					document.location=GO.settings.config.host;
//				}else if(hide){
//					this.hide();
//				}
			},		
			failure: function(form, action) {
				if(action.failureType == 'client')
				{					
					Ext.MessageBox.alert(GO.lang['strError'], GO.lang['strErrorsInForm']);			
				} else {
					Ext.MessageBox.alert(GO.lang['strError'], action.result.feedback);
				}
			},
			scope: this
		});
		
	},
	
	
	buildForm : function () {
 
		this.tabPanel = new Ext.TabPanel({
			activeTab: 0,
			deferredRender: false,
			anchor:'100% 100%',
			enableTabScroll : true,
			//layoutOnTabChange:true,
			border: false,
			items: GO.moduleManager.getAllSettingsPanels()
		}) ;

		this.formPanel = new Ext.form.FormPanel({
			items:this.tabPanel,
			baseParams:{
				task:'settings'
			},
			waitMsgTarget:true,
			border:false
		});		
	}
});
