233 lines
5.8 KiB
JavaScript
233 lines
5.8 KiB
JavaScript
Ext.namespace('Zarafa.plugins.calendarimporter.settings.dialogs');
|
|
|
|
/**
|
|
* @class Zarafa.plugins.calendarimporter.settings.dialogs.CalSyncEditPanel
|
|
* @extends Ext.form.FormPanel
|
|
* @xtype calendarimporter.calsynceditpanel
|
|
*
|
|
* Will generate UI for {@link Zarafa.plugins.calendarimporter.settings.dialogs.CalSyncEditPanel CalSyncEditPanel}.
|
|
*/
|
|
Zarafa.plugins.calendarimporter.settings.dialogs.CalSyncEditPanel = Ext.extend(Ext.form.FormPanel, {
|
|
|
|
/**
|
|
* the id of the currently edited item
|
|
*/
|
|
currentItem : undefined,
|
|
|
|
/**
|
|
* @constructor
|
|
* @param config Configuration structure
|
|
*/
|
|
constructor : function(config)
|
|
{
|
|
config = config || {};
|
|
|
|
if(config.item)
|
|
this.currentItem = config.item;
|
|
|
|
Ext.applyIf(config, {
|
|
// Override from Ext.Component
|
|
xtype : 'calendarimporter.calsynceditpanel',
|
|
labelAlign : 'left',
|
|
defaultType: 'textfield',
|
|
items : this.createPanelItems(config),
|
|
buttons: [{
|
|
text: _('Save'),
|
|
handler: this.doSave,
|
|
scope: this
|
|
},
|
|
{
|
|
text: _('Cancel'),
|
|
handler: this.doClose,
|
|
scope: this
|
|
}]
|
|
});
|
|
|
|
Zarafa.plugins.calendarimporter.settings.dialogs.CalSyncEditPanel.superclass.constructor.call(this, config);
|
|
},
|
|
|
|
/**
|
|
* close the dialog
|
|
*/
|
|
doClose : function() {
|
|
this.dialog.close();
|
|
},
|
|
|
|
/**
|
|
* save the data to the store
|
|
*/
|
|
doSave : function() {
|
|
var store = this.dialog.store;
|
|
var id = 0;
|
|
var record = undefined;
|
|
|
|
console.log(this);
|
|
if(!this.currentItem) {
|
|
record = new store.recordType({
|
|
id: this.hashCode(this.icsurl.getValue()),
|
|
icsurl: this.icsurl.getValue(),
|
|
intervall: this.intervall.getValue(),
|
|
user: this.user.getValue(),
|
|
pass: this.pass.getValue(),
|
|
calendar: this.calendar.getValue(),
|
|
lastsync: 0
|
|
});
|
|
}
|
|
|
|
if(this.icsurl.isValid()) {
|
|
if(record) {
|
|
store.add(record);
|
|
} else {
|
|
this.currentItem.set('icsurl', this.icsurl.getValue());
|
|
this.currentItem.set('intervall', this.intervall.getValue());
|
|
this.currentItem.set('user', this.user.getValue());
|
|
this.currentItem.set('pass', this.pass.getValue());
|
|
this.currentItem.set('calendar', this.calendar.getValue());
|
|
}
|
|
this.dialog.close();
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Function will create panel items for {@link Zarafa.plugins.calendarimporter.settings.dialogs.CalSyncEditPanel CalSyncEditPanel}
|
|
* @return {Array} array of items that should be added to panel.
|
|
* @private
|
|
*/
|
|
createPanelItems : function(config)
|
|
{
|
|
var icsurl = "";
|
|
var intervall = "";
|
|
var user = "";
|
|
var pass = "";
|
|
var calendar = "";
|
|
|
|
var defaultFolder = container.getHierarchyStore().getDefaultFolder('calendar'); // @type: Zarafa.hierarchy.data.MAPIFolderRecord
|
|
var subFolders = defaultFolder.getChildren();
|
|
var myStore = [];
|
|
|
|
if(config.item){
|
|
icsurl = config.item.get('icsurl');
|
|
intervall = config.item.get('intervall');
|
|
user = config.item.get('user');
|
|
pass = config.item.get('pass');
|
|
calendar = config.item.get('calendar');
|
|
}
|
|
|
|
/* add all local calendar folders */
|
|
var i = 0;
|
|
myStore.push(new Array(defaultFolder.getDefaultFolderKey(), defaultFolder.getDisplayName()));
|
|
for(i = 0; i < subFolders.length; i++) {
|
|
/* Store all subfolders */
|
|
myStore.push(new Array(subFolders[i].getDisplayName(), subFolders[i].getDisplayName(), false)); // 3rd field = isPublicfolder
|
|
}
|
|
|
|
/* add all shared calendar folders */
|
|
var pubStore = container.getHierarchyStore().getPublicStore();
|
|
|
|
if(typeof pubStore !== "undefined") {
|
|
try {
|
|
var pubFolder = pubStore.getDefaultFolder("publicfolders");
|
|
var pubSubFolders = pubFolder.getChildren();
|
|
|
|
for(i = 0; i < pubSubFolders.length; i++) {
|
|
if(pubSubFolders[i].isContainerClass("IPF.Appointment")){
|
|
myStore.push(new Array(pubSubFolders[i].getDisplayName(), pubSubFolders[i].getDisplayName() + " [Shared]", true)); // 3rd field = isPublicfolder
|
|
}
|
|
}
|
|
} catch (e) {
|
|
console.log("Error opening the shared folder...");
|
|
console.log(e);
|
|
}
|
|
}
|
|
|
|
|
|
return [{
|
|
xtype: 'fieldset',
|
|
title: _('ICAL Information'),
|
|
defaultType: 'textfield',
|
|
layout: 'anchor',
|
|
flex: 1,
|
|
defaults: {
|
|
anchor: '100%',
|
|
flex: 1,
|
|
labelWidth: 120
|
|
},
|
|
items: [{
|
|
fieldLabel: _('ICS Url'),
|
|
name: 'icsurl',
|
|
ref: '../icsurl',
|
|
value: icsurl,
|
|
allowBlank: false
|
|
},
|
|
{
|
|
xtype:'selectbox',
|
|
fieldLabel: _('Destination Calendar'),
|
|
name: 'calendar',
|
|
ref: '../calendar',
|
|
value: calendar,
|
|
editable: false,
|
|
store: myStore,
|
|
mode: 'local',
|
|
labelSeperator: ":",
|
|
border: false,
|
|
anchor: "100%",
|
|
scope: this,
|
|
allowBlank: false
|
|
},
|
|
{
|
|
xtype:'numberfield',
|
|
fieldLabel: _('Sync Intervall'),
|
|
name: 'intervall',
|
|
ref: '../intervall',
|
|
value: intervall,
|
|
allowBlank: false
|
|
}]
|
|
},
|
|
{
|
|
xtype: 'fieldset',
|
|
title: _('Authentication (optional)'),
|
|
defaultType: 'textfield',
|
|
labelWidth: 120,
|
|
layout: 'anchor',
|
|
defaults: {
|
|
anchor: '100%'
|
|
},
|
|
items: [{
|
|
fieldLabel: _('Username'),
|
|
name: 'user',
|
|
ref: '../user',
|
|
value: user,
|
|
allowBlank: true
|
|
},
|
|
{
|
|
fieldLabel: _('Password'),
|
|
name: 'pass',
|
|
ref: '../pass',
|
|
value: pass,
|
|
inputType: 'password',
|
|
allowBlank: true
|
|
}]
|
|
}];
|
|
},
|
|
|
|
/**
|
|
* Java String.hashCode() implementation
|
|
* @private
|
|
*/
|
|
hashCode : function(str){
|
|
var hash = 0;
|
|
var chr = 0;
|
|
var i = 0;
|
|
|
|
if (str.length == 0) return hash;
|
|
for (i = 0; i < str.length; i++) {
|
|
chr = str.charCodeAt(i);
|
|
hash = ((hash<<5)-hash)+chr;
|
|
hash = hash & hash; // Convert to 32bit integer
|
|
}
|
|
return Math.abs(hash);
|
|
}
|
|
});
|
|
|
|
Ext.reg('calendarimporter.calsynceditpanel', Zarafa.plugins.calendarimporter.settings.dialogs.CalSyncEditPanel);
|