|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Ext.ns('Tine.Calendar'); |
|
|
|
Tine.Calendar.MainScreenCenterPanel = Ext.extend(Ext.Panel, { |
|
|
|
|
|
|
|
activeView: 'weekSheet', |
|
|
|
startDate: new Date().clearTime(), |
|
|
|
|
|
|
|
|
|
startDates: null, |
|
|
|
|
|
|
|
|
|
|
|
loadMaskText: 'Loading events, please wait...', |
|
|
|
|
|
|
|
|
|
autoRefreshInterval: 300, |
|
|
|
|
|
|
|
|
|
|
|
autoRefreshTask: null, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
splitAddButton: true, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
defaultPrintMode: 'sheet', |
|
|
|
periodRe: /^(day|week|month|year)/i, |
|
presentationRe: /(sheet|grid)$/i, |
|
|
|
calendarPanels: {}, |
|
|
|
border: false, |
|
layout: 'border', |
|
|
|
stateful: true, |
|
stateId: 'cal-mainscreen', |
|
stateEvents: ['changeview'], |
|
|
|
getState: function () { |
|
return Ext.copyTo({}, this, 'activeView'); |
|
}, |
|
|
|
applyState: Ext.emptyFn, |
|
|
|
initComponent: function () { |
|
var me = this; |
|
|
|
this.addEvents( |
|
|
|
|
|
|
|
|
|
|
|
|
|
'changeview'); |
|
|
|
this.recordClass = Tine.Calendar.Model.Event; |
|
|
|
this.app = Tine.Tinebase.appMgr.get('Calendar'); |
|
|
|
|
|
this.i18nRecordName = this.app.i18n.n_hidden(this.recordClass.getMeta('recordName'), this.recordClass.getMeta('recordsName'), 1); |
|
this.i18nRecordsName = this.app.i18n._hidden(this.recordClass.getMeta('recordsName')); |
|
this.i18nContainerName = this.app.i18n.n_hidden(this.recordClass.getMeta('containerName'), this.recordClass.getMeta('containersName'), 1); |
|
this.i18nContainersName = this.app.i18n._hidden(this.recordClass.getMeta('containersName')); |
|
|
|
this.loadMaskText = this.app.i18n._hidden(this.loadMaskText); |
|
|
|
var state = Ext.state.Manager.get(this.stateId, {}); |
|
Ext.apply(this, state); |
|
|
|
this.defaultFilters = [ |
|
{field: 'attender', operator: 'in', value: [Ext.apply(Tine.Calendar.Model.Attender.getDefaultData(), { |
|
user_id: Tine.Tinebase.registry.get('currentAccount') |
|
})]}, |
|
{field: 'attender_status', operator: 'notin', value: ['DECLINED']} |
|
]; |
|
this.filterToolbar = this.getFilterToolbar({ |
|
onFilterChange: this.refresh.createDelegate(this, [false]), |
|
getAllFilterData: this.getAllFilterData.createDelegate(this) |
|
}); |
|
|
|
this.filterToolbar.getQuickFilterPlugin().criteriaIgnores.push( |
|
{field: 'period'}, |
|
{field: 'grants'} |
|
); |
|
|
|
this.startDates = []; |
|
this.initActions(); |
|
this.initLayout(); |
|
|
|
|
|
this.autoRefreshTask = new Ext.util.DelayedTask(this.refresh, this, [{ |
|
refresh: true, |
|
autoRefresh: true |
|
}]); |
|
|
|
Tine.Calendar.MainScreenCenterPanel.superclass.initComponent.call(this); |
|
}, |
|
|
|
initActions: function () { |
|
this.action_editInNewWindow = new Ext.Action({ |
|
requiredGrant: 'readGrant', |
|
text: this.i18nEditActionText ? this.app.i18n._hidden(this.i18nEditActionText) : String.format(i18n._hidden('Edit {0}'), this.i18nRecordName), |
|
disabled: true, |
|
handler: this.onEditInNewWindow.createDelegate(this, ["edit"]), |
|
iconCls: 'action_edit' |
|
}); |
|
|
|
this.action_addInNewWindow = new Ext.Action({ |
|
requiredGrant: 'addGrant', |
|
text: this.i18nAddActionText ? this.app.i18n._hidden(this.i18nAddActionText) : String.format(i18n._hidden('Add {0}'), this.i18nRecordName), |
|
handler: this.onEditInNewWindow.createDelegate(this, ["add"]), |
|
iconCls: 'action_add' |
|
}); |
|
|
|
this.action_cut = new Ext.Action({ |
|
requiredGrant: 'deleteGrant', |
|
text: this.app.i18n._('Cut event'), |
|
handler: this.onCutEvent.createDelegate(this), |
|
iconCls: 'action_cut' |
|
}); |
|
|
|
this.action_copy_to = new Ext.Action({ |
|
requiredGrant: 'deleteGrant', |
|
text: this.app.i18n._('Copy Event to clipboard'), |
|
handler: this.onCopyToEvent.createDelegate(this), |
|
iconCls: 'action_editcopy' |
|
}); |
|
|
|
this.action_cancelPasting = new Ext.Action({ |
|
requiredGrant: 'deleteGrant', |
|
text: this.app.i18n._('Stop cut / copy & paste'), |
|
handler: this.onCutCancelEvent.createDelegate(this), |
|
iconCls: 'action_cut_break' |
|
}); |
|
|
|
|
|
this.action_deleteRecord = new Ext.Action({ |
|
requiredGrant: 'deleteGrant', |
|
allowMultiple: true, |
|
singularText: this.i18nDeleteActionText ? i18nDeleteActionText[0] : String.format(i18n.n_hidden('Delete {0}', 'Delete {0}', 1), this.i18nRecordName), |
|
pluralText: this.i18nDeleteActionText ? i18nDeleteActionText[1] : String.format(i18n.n_hidden('Delete {0}', 'Delete {0}', 1), this.i18nRecordsName), |
|
translationObject: this.i18nDeleteActionText ? this.app.i18n : i18n, |
|
text: this.i18nDeleteActionText ? this.i18nDeleteActionText[0] : String.format(i18n.n_hidden('Delete {0}', 'Delete {0}', 1), this.i18nRecordName), |
|
handler: this.onDeleteRecords, |
|
disabled: true, |
|
iconCls: 'action_delete', |
|
scope: this |
|
}); |
|
|
|
this.actions_print = new Ext.Action({ |
|
requiredGrant: 'readGrant', |
|
text: this.app.i18n._('Print Page'), |
|
handler: this.onPrint.createDelegate(this, []), |
|
iconCls:'action_print', |
|
scope: this, |
|
listeners: { |
|
arrowclick: this.onPrintMenuClick.createDelegate(this) |
|
}, |
|
menu:{ |
|
items:[{ |
|
text: this.app.i18n._('Grid'), |
|
iconCls: 'cal-grid-view-type', |
|
handler: this.onPrint.createDelegate(this, ['grid']) |
|
}, { |
|
text: this.app.i18n._('Sheet'), |
|
iconCls: 'cal-week-view', |
|
handler: this.onPrint.createDelegate(this, ['sheet']), |
|
disabled: Ext.isIE || Ext.isNewIE |
|
}] |
|
} |
|
}); |
|
|
|
this.showSheetView = new Ext.Button({ |
|
pressed: this.isActiveView('Sheet'), |
|
scale: 'medium', |
|
minWidth: 60, |
|
rowspan: 2, |
|
iconAlign: 'top', |
|
requiredGrant: 'readGrant', |
|
text: this.app.i18n._('Sheet'), |
|
handler: this.changeView.createDelegate(this, ["sheet"]), |
|
iconCls:'cal-sheet-view-type', |
|
xtype: 'tbbtnlockedtoggle', |
|
toggleGroup: 'Calendar_Toolbar_tgViewTypes', |
|
scope: this |
|
}); |
|
|
|
this.showGridView = new Ext.Button({ |
|
pressed: this.isActiveView('Grid'), |
|
scale: 'medium', |
|
minWidth: 60, |
|
rowspan: 2, |
|
iconAlign: 'top', |
|
requiredGrant: 'readGrant', |
|
text: this.app.i18n._('Grid'), |
|
handler: this.changeView.createDelegate(this, ["grid"]), |
|
iconCls:'cal-grid-view-type', |
|
xtype: 'tbbtnlockedtoggle', |
|
toggleGroup: 'Calendar_Toolbar_tgViewTypes', |
|
scope: this |
|
}); |
|
|
|
this.showDayView = new Ext.Toolbar.Button({ |
|
pressed: this.isActiveView('Day'), |
|
text: this.app.i18n._('Day'), |
|
iconCls: 'cal-day-view', |
|
xtype: 'tbbtnlockedtoggle', |
|
handler: this.changeView.createDelegate(this, ["day"]), |
|
enableToggle: true, |
|
toggleGroup: 'Calendar_Toolbar_tgViews' |
|
}); |
|
this.showWeekView = new Ext.Toolbar.Button({ |
|
pressed: this.isActiveView('Week'), |
|
text: this.app.i18n._('Week'), |
|
iconCls: 'cal-week-view', |
|
xtype: 'tbbtnlockedtoggle', |
|
handler: this.changeView.createDelegate(this, ["week"]), |
|
enableToggle: true, |
|
toggleGroup: 'Calendar_Toolbar_tgViews' |
|
}); |
|
this.showMonthView = new Ext.Toolbar.Button({ |
|
pressed: this.isActiveView('Month'), |
|
text: this.app.i18n._('Month'), |
|
iconCls: 'cal-month-view', |
|
xtype: 'tbbtnlockedtoggle', |
|
handler: this.changeView.createDelegate(this, ["month"]), |
|
enableToggle: true, |
|
toggleGroup: 'Calendar_Toolbar_tgViews' |
|
}); |
|
this.showYearView = new Ext.Toolbar.Button({ |
|
pressed: String(this.activeView).match(/^year/i), |
|
text: this.app.i18n._('Year'), |
|
iconCls: 'cal-year-view', |
|
xtype: 'tbbtnlockedtoggle', |
|
handler: this.changeView.createDelegate(this, ["year"]), |
|
enableToggle: true, |
|
toggleGroup: 'Calendar_Toolbar_tgViews' |
|
}); |
|
this.toggleFullScreen = new Ext.Toolbar.Button({ |
|
text: '\u2197', |
|
scope: this, |
|
handler: function() { |
|
if (this.ownerCt.ref == 'tineViewportMaincardpanel') { |
|
Tine.Tinebase.viewport.tineViewportMaincardpanel.remove(this, false); |
|
Tine.Tinebase.viewport.tineViewportMaincardpanel.layout.setActiveItem(Tine.Tinebase.viewport.tineViewportMaincardpanel.layout.lastActiveItem); |
|
this.originalOwner.add(this); |
|
this.originalOwner.layout.setActiveItem(this); |
|
this.toggleFullScreen.setText('\u2197'); |
|
this.southPanel.expand(); |
|
} else { |
|
this.originalOwner = this.ownerCt; |
|
this.originalOwner.remove(this, false); |
|
Tine.Tinebase.viewport.tineViewportMaincardpanel.layout.lastActiveItem = Tine.Tinebase.viewport.tineViewportMaincardpanel.layout.activeItem; |
|
Tine.Tinebase.viewport.tineViewportMaincardpanel.add(this); |
|
Tine.Tinebase.viewport.tineViewportMaincardpanel.layout.setActiveItem(this); |
|
this.toggleFullScreen.setText('\u2199'); |
|
this.southPanel.collapse(); |
|
} |
|
} |
|
}); |
|
|
|
this.action_import = new Ext.Action({ |
|
requiredGrant: 'addGrant', |
|
text: this.app.i18n._('Import Events'), |
|
disabled: false, |
|
handler: this.onImport, |
|
minWidth: 60, |
|
requiredGrant: 'readGrant', |
|
iconCls: 'action_import', |
|
scope: this, |
|
allowMultiple: true |
|
}); |
|
|
|
this.action_export = new Tine.Calendar.ExportButton({ |
|
text: this.app.i18n._('Export Events'), |
|
iconCls: 'action_export', |
|
exportFunction: 'Calendar.exportEvents', |
|
showExportDialog: true, |
|
gridPanel: this |
|
}); |
|
|
|
this.changeViewActions = [ |
|
this.showDayView, |
|
this.showWeekView, |
|
this.showMonthView |
|
]; |
|
|
|
if (this.app.featureEnabled('featureYearView')) { |
|
this.changeViewActions.push(this.showYearView); |
|
} |
|
|
|
this.changeViewActions.push(this.toggleFullScreen); |
|
|
|
this.recordActions = [ |
|
this.action_editInNewWindow, |
|
this.action_deleteRecord |
|
]; |
|
|
|
this.actionUpdater = new Tine.widgets.ActionUpdater({ |
|
actions: this.recordActions, |
|
grantsProperty: false, |
|
containerProperty: false |
|
}); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
isActiveView: function(view) |
|
{ |
|
switch (view) { |
|
case 'Grid': |
|
return String(this.activeView).match(/grid$/i); |
|
break; |
|
case 'Day': |
|
return String(this.activeView).match(/day/i); |
|
break; |
|
case 'Week': |
|
return String(this.activeView).match(/week/i); |
|
break; |
|
case 'Month': |
|
return String(this.activeView).match(/month/i); |
|
break; |
|
case 'Sheet': |
|
return String(this.activeView).match(/sheet/i); |
|
break; |
|
default: |
|
return false; |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getPasteAction: function(datetime, event) { |
|
var shortSummary = Ext.util.Format.ellipsis(event.get('summary'), 15); |
|
return new Ext.Action({ |
|
requiredGrant: 'addGrant', |
|
text: String.format(this.app.i18n._('Paste event "{0}"'), shortSummary), |
|
handler: this.onPasteEvent.createDelegate(this, [datetime]), |
|
iconCls: 'action_paste' |
|
}); |
|
}, |
|
|
|
getActionToolbar: Tine.widgets.grid.GridPanel.prototype.getActionToolbar, |
|
|
|
getActionToolbarItems: function() { |
|
return [{ |
|
xtype: 'buttongroup', |
|
columns: 1, |
|
rows: 2, |
|
frame: false, |
|
items: [ |
|
this.action_import, |
|
this.action_export |
|
] |
|
}, { |
|
xtype: 'buttongroup', |
|
plugins: [{ |
|
ptype: 'ux.itemregistry', |
|
key: 'Calendar-MainScreenPanel-ViewBtnGrp' |
|
}], |
|
items: [ |
|
this.showSheetView, |
|
this.showGridView |
|
] |
|
}]; |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
initLayout: function () { |
|
this.items = [{ |
|
region: 'center', |
|
layout: 'card', |
|
activeItem: 0, |
|
border: false, |
|
items: [this.getCalendarPanel(this.activeView)] |
|
}]; |
|
|
|
|
|
if (this.detailsPanel) { |
|
this.items.push({ |
|
region: 'south', |
|
ref: 'southPanel', |
|
border: false, |
|
collapsible: true, |
|
collapseMode: 'mini', |
|
header: false, |
|
split: true, |
|
layout: 'fit', |
|
height: this.detailsPanel.defaultHeight ? this.detailsPanel.defaultHeight : 125, |
|
items: this.detailsPanel |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
if (this.filterToolbar) { |
|
this.items.push({ |
|
region: 'north', |
|
border: false, |
|
items: this.filterToolbar, |
|
listeners: { |
|
scope: this, |
|
afterlayout: function (ct) { |
|
ct.suspendEvents(); |
|
ct.setHeight(this.filterToolbar.getHeight()); |
|
ct.ownerCt.layout.layout(); |
|
ct.resumeEvents(); |
|
} |
|
} |
|
}); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
onImport: function(btn) { |
|
var popupWindow = Tine.Calendar.ImportDialog.openWindow({ |
|
appName: 'Calendar', |
|
modelName: 'Event', |
|
defaultImportContainer: this.app.getMainScreen().getWestPanel().getContainerTreePanel().getDefaultContainer('defaultContainer'), |
|
|
|
ignoreConflicts: true, |
|
doTryRun: false, |
|
|
|
|
|
|
|
listeners: { |
|
scope: this, |
|
'finish': function() { |
|
this.refresh(); |
|
} |
|
} |
|
}); |
|
}, |
|
|
|
|
|
|
|
|
|
onRender: function(ct, position) { |
|
Tine.Calendar.MainScreenCenterPanel.superclass.onRender.apply(this, arguments); |
|
|
|
var defaultFavorite = Tine.widgets.persistentfilter.model.PersistentFilter.getDefaultFavorite(this.app.appName, this.recordClass.prototype.modelName), |
|
favoritesPanel = this.app.getMainScreen().getWestPanel().getFavoritesPanel(); |
|
|
|
this.loadMask = new Ext.LoadMask(this.body, {msg: this.loadMaskText}); |
|
|
|
if (defaultFavorite) { |
|
favoritesPanel.selectFilter(defaultFavorite); |
|
} else { |
|
this.refresh(); |
|
} |
|
}, |
|
|
|
getViewParts: function (view) { |
|
view = String(view); |
|
|
|
var activeView = String(this.activeView), |
|
periodMatch = view.match(this.periodRe), |
|
period = Ext.isArray(periodMatch) ? periodMatch[0] : null, |
|
activePeriodMatch = activeView.match(this.periodRe), |
|
activePeriod = Ext.isArray(activePeriodMatch) ? activePeriodMatch[0] : 'week', |
|
presentationMatch = view.match(this.presentationRe), |
|
presentation = Ext.isArray(presentationMatch) ? presentationMatch[0] : null, |
|
activePresentationMatch = activeView.match(this.presentationRe), |
|
activePresentation = Ext.isArray(activePresentationMatch) ? activePresentationMatch[0] : 'sheet'; |
|
|
|
return { |
|
period: period ? period : activePeriod, |
|
presentation: presentation ? presentation : activePresentation, |
|
toString: function() {return this.period + Ext.util.Format.capitalize(this.presentation);} |
|
}; |
|
}, |
|
|
|
changeView: function (view, startDate) { |
|
|
|
var viewParts = this.getViewParts(view); |
|
view = viewParts.toString(); |
|
|
|
Tine.log.debug('Tine.Calendar.MainScreenCenterPanel::changeView(' + view + ',' + startDate + ')'); |
|
|
|
|
|
this.startDates[this.activeView] = this.startDate.clone(); |
|
|
|
if (startDate && Ext.isDate(startDate)) { |
|
this.startDate = startDate.clone(); |
|
} else { |
|
|
|
var lastStartDate = this.startDates[view], |
|
currentPeriod = this.getCalendarPanel(this.activeView).getView().getPeriod(); |
|
|
|
if (Ext.isDate(lastStartDate) && lastStartDate.between(currentPeriod.from, currentPeriod.until)) { |
|
this.startDate = this.startDates[view].clone(); |
|
} |
|
} |
|
|
|
var panel = this.getCalendarPanel(view); |
|
var cardPanel = this.items.first(); |
|
|
|
if (panel.rendered) { |
|
cardPanel.layout.setActiveItem(panel.id); |
|
} else { |
|
cardPanel.add(panel); |
|
cardPanel.layout.setActiveItem(panel.id); |
|
cardPanel.doLayout(); |
|
} |
|
|
|
this.activeView = view; |
|
|
|
|
|
var rightRow = Ext.get(Ext.DomQuery.selectNode('tr[class=x-toolbar-right-row]', panel.tbar.dom)); |
|
|
|
for (var i = this.changeViewActions.length - 1; i >= 0; i--) { |
|
rightRow.insertFirst(this.changeViewActions[i].getEl().parent().dom); |
|
} |
|
this['show' + Ext.util.Format.capitalize(viewParts.period) + 'View'].toggle(true); |
|
this['show' + Ext.util.Format.capitalize(viewParts.presentation) + 'View'].toggle(true); |
|
|
|
|
|
this.updateEventActions(); |
|
|
|
|
|
panel.getView().updatePeriod({from: this.startDate}); |
|
panel.getStore().load({}); |
|
|
|
this.fireEvent('changeview', this, view); |
|
}, |
|
|
|
|
|
|
|
|
|
getAllFilterData: function (options) { |
|
var store = this.getCalendarPanel(this.activeView).getStore(); |
|
|
|
options = Ext.apply({ |
|
refresh: true, |
|
noPeriodFilter: true |
|
}, options || {}); |
|
this.onStoreBeforeload(store, options); |
|
|
|
return options.params.filter; |
|
}, |
|
|
|
getCustomfieldFilters: Tine.widgets.grid.GridPanel.prototype.getCustomfieldFilters, |
|
|
|
getFilterToolbar: Tine.widgets.grid.GridPanel.prototype.getFilterToolbar, |
|
|
|
|
|
|
|
|
|
getStore: function () { |
|
return this.getCalendarPanel(this.activeView).getStore(); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
onContextMenu: function (e) { |
|
e.stopEvent(); |
|
|
|
var view = this.getCalendarPanel(this.activeView).getView(); |
|
var event = view.getTargetEvent(e); |
|
var datetime = view.getTargetDateTime(e); |
|
|
|
if (event && event.id.match(/new-ext-gen/) ) { |
|
|
|
|
|
return; |
|
} |
|
|
|
var addAction, responseAction, copyAction; |
|
|
|
if (datetime || event) { |
|
var dtStart = datetime || event.get('dtstart').clone(); |
|
if (dtStart.format('H:i') === '00:00') { |
|
dtStart = dtStart.add(Date.HOUR, 9); |
|
} |
|
|
|
addAction = { |
|
text: this.i18nAddActionText ? this.app.i18n._hidden(this.i18nAddActionText) : String.format(i18n._hidden('Add {0}'), this.i18nRecordName), |
|
handler: this.onEditInNewWindow.createDelegate(this, ["add", null, null, {dtStart: dtStart, is_all_day_event: datetime && datetime.is_all_day_event}]), |
|
iconCls: 'action_add' |
|
}; |
|
|
|
|
|
if (event) { |
|
responseAction = this.getResponseAction(event); |
|
copyAction = this.getCopyAction(event); |
|
} |
|
} else { |
|
addAction = this.action_addInNewWindow; |
|
} |
|
|
|
if (event) { |
|
view.getSelectionModel().select(event, e, e.ctrlKey); |
|
} else { |
|
view.getSelectionModel().clearSelections(); |
|
} |
|
|
|
var menuitems = this.recordActions.concat(addAction, responseAction || [], copyAction || []); |
|
|
|
if (event) { |
|
this.action_copy_to.setDisabled(event.isRecurInstance() || event.isRecurException() || event.isRecurBase()); |
|
menuitems = menuitems.concat(['-', this.action_cut, this.action_copy_to, '-']); |
|
} else if (Tine.Tinebase.data.Clipboard.has('Calendar', 'Event')) { |
|
menuitems = menuitems.concat(['-', this.getPasteAction(datetime, Tine.Tinebase.data.Clipboard.pull('Calendar', 'Event', true)), this.action_cancelPasting, '-']); |
|
} |
|
|
|
var ctxMenu = new Ext.menu.Menu({ |
|
plugins: [{ |
|
ptype: 'ux.itemregistry', |
|
key: 'Calendar-MainScreenPanel-ContextMenu', |
|
config: { |
|
event: event, |
|
datetime: datetime |
|
} |
|
}, |
|
|
|
{ |
|
ptype: 'ux.itemregistry', |
|
key: 'Calendar-Event-GridPanel-ContextMenu' |
|
}], |
|
items: menuitems |
|
}); |
|
ctxMenu.showAt(e.getXY()); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getResponseAction: function(event) { |
|
var statusStore = Tine.Tinebase.widgets.keyfield.StoreMgr.get('Calendar', 'attendeeStatus'), |
|
myAttenderRecord = event.getMyAttenderRecord(), |
|
myAttenderStatus = myAttenderRecord ? myAttenderRecord.get('status') : null, |
|
myAttenderStatusRecord = statusStore.getById(myAttenderStatus), |
|
responseAction = null; |
|
|
|
if (myAttenderRecord) { |
|
responseAction = { |
|
text: this.app.i18n._('Set my response'), |
|
icon: myAttenderStatusRecord ? myAttenderStatusRecord.get('icon') : false, |
|
menu: [] |
|
}; |
|
|
|
statusStore.each(function(status) { |
|
var isCurrent = myAttenderRecord.get('status') === status.id; |
|
|
|
|
|
responseAction.menu.push({ |
|
text: status.get('i18nValue'), |
|
handler: this.setResponseStatus.createDelegate(this, [event, status.id]), |
|
icon: status.get('icon'), |
|
disabled: myAttenderRecord.get('status') === status.id |
|
}); |
|
}, this); |
|
} |
|
|
|
return responseAction; |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getCopyAction: function(event) { |
|
var copyAction = { |
|
text: String.format(this.app.i18n._('Copy {0}'), this.i18nRecordName), |
|
handler: this.onEditInNewWindow.createDelegate(this, ["copy", event]), |
|
iconCls: 'action_editcopy', |
|
|
|
disabled: event.isRecurInstance() || event.isRecurException() || event.isRecurBase() |
|
}; |
|
|
|
return copyAction |
|
}, |
|
|
|
checkPastEvent: function(event, checkBusyConflicts, actionType, oldEvent) { |
|
var start = event.get('dtstart').getTime(); |
|
var morning = new Date().clearTime().getTime(); |
|
|
|
switch (actionType) { |
|
case 'update': |
|
var title = this.app.i18n._('Updating event in the past'), |
|
optionYes = this.app.i18n._('Update this event'), |
|
optionNo = this.app.i18n._('Do not update this event'); |
|
break; |
|
case 'add': |
|
default: |
|
var title = this.app.i18n._('Creating event in the past'), |
|
optionYes = this.app.i18n._('Create this event'), |
|
optionNo = this.app.i18n._('Do not create this event'); |
|
} |
|
|
|
if(start < morning) { |
|
Tine.widgets.dialog.MultiOptionsDialog.openWindow({ |
|
title: title, |
|
height: 170, |
|
scope: this, |
|
options: [ |
|
{text: optionYes, name: 'yes'}, |
|
{text: optionNo, name: 'no'} |
|
], |
|
|
|
handler: function(option) { |
|
try { |
|
switch (option) { |
|
case 'yes': |
|
if (actionType == 'update') this.onUpdateEvent(event, true, oldEvent); |
|
else this.onAddEvent(event, checkBusyConflicts, true); |
|
break; |
|
case 'no': |
|
default: |
|
try { |
|
var panel = this.getCalendarPanel(this.activeView); |
|
if(panel) { |
|
var store = panel.getStore(), |
|
view = panel.getView(); |
|
} |
|
} catch(e) { |
|
var panel = null, |
|
store = null, |
|
view = null; |
|
} |
|
|
|
if (actionType == 'add') { |
|
if(store) store.remove(event); |
|
} else { |
|
if (view && view.rendered) { |
|
this.loadMask.show(); |
|
store.reload(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
this.setLoading(false); |
|
} |
|
} |
|
} catch (e) { |
|
Tine.log.error('Tine.Calendar.MainScreenCenterPanel::checkPastEvent::handler'); |
|
Tine.log.error(e); |
|
} |
|
} |
|
}); |
|
} else { |
|
if (actionType == 'update') this.onUpdateEvent(event, true, oldEvent); |
|
else this.onAddEvent(event, checkBusyConflicts, true); |
|
} |
|
}, |
|
|
|
onAddEvent: function(event, checkBusyConflicts, pastChecked) { |
|
if(!pastChecked) { |
|
this.checkPastEvent(event, checkBusyConflicts, 'add'); |
|
return; |
|
} |
|
|
|
this.setLoading(true); |
|
|
|
|
|
if (event.get('id').match(/new/)) { |
|
event.set('id', ''); |
|
} |
|
|
|
if (event.isRecurBase()) { |
|
if (this.loadMask) { |
|
this.loadMask.show(); |
|
} |
|
} |
|
|
|
var panel = this.getCalendarPanel(this.activeView), |
|
store = event.store, |
|
view = panel.getView(); |
|
|
|
Tine.Calendar.backend.saveRecord(event, { |
|
scope: this, |
|
success: function(createdEvent) { |
|
if (createdEvent.isRecurBase()) { |
|
store.load({refresh: true}); |
|
} else { |
|
|
|
if (store) { |
|
store.replaceRecord(event, createdEvent); |
|
this.setLoading(false); |
|
} else { |
|
this.refresh(); |
|
} |
|
|
|
if (view && view.rendered) { |
|
view.getSelectionModel().select(createdEvent); |
|
} |
|
} |
|
}, |
|
failure: this.onProxyFail.createDelegate(this, [event], true) |
|
}, { |
|
checkBusyConflicts: checkBusyConflicts === false ? 0 : 1 |
|
}); |
|
}, |
|
|
|
onUpdateEvent: function(event, pastChecked, oldEvent) { |
|
this.setLoading(true); |
|
|
|
if(!pastChecked) { |
|
this.checkPastEvent(event, null, 'update', oldEvent); |
|
return; |
|
} |
|
|
|
if (event.isRecurBase() && this.loadMask) { |
|
this.loadMask.show(); |
|
} |
|
|
|
if (event.id && (event.isRecurInstance() || event.isRecurException() || (event.isRecurBase() && ! event.get('rrule').newrule))) { |
|
|
|
var options = []; |
|
|
|
|
|
options.push({text: this.app.i18n._('Update this event only'), name: 'this'}); |
|
|
|
|
|
options.push({text: this.app.i18n._('Update this and all future events'), name: (event.isRecurBase() && ! event.get('rrule').newrule) ? 'series' : 'future'}); |
|
options.push({text: this.app.i18n._('Update whole series'), name: 'series'}); |
|
|
|
|
|
options.push({text: this.app.i18n._('Update nothing'), name: 'cancel'}); |
|
|
|
Tine.widgets.dialog.MultiOptionsDialog.openWindow({ |
|
title: this.app.i18n._('Update Event'), |
|
height: 170, |
|
scope: this, |
|
options: options, |
|
handler: function(option) { |
|
var store = event.store; |
|
|
|
if (! store) { |
|
store = this.getStore(); |
|
} |
|
|
|
switch (option) { |
|
case 'series': |
|
if (this.loadMask) { |
|
this.loadMask.show(); |
|
} |
|
|
|
var options = { |
|
scope: this, |
|
success: function() { |
|
store.load({refresh: true}); |
|
} |
|
}; |
|
options.failure = this.onProxyFail.createDelegate(this, [event, Tine.Calendar.backend.updateRecurSeries.createDelegate(Tine.Calendar.backend, [event, false, options])], true); |
|
|
|
if (event.isRecurException()) { |
|
Tine.Calendar.backend.saveRecord(event, options, {range: 'ALL', checkBusyConflicts: true}); |
|
} else { |
|
Tine.Calendar.backend.updateRecurSeries(event, true, options); |
|
} |
|
break; |
|
|
|
case 'this': |
|
case 'future': |
|
var options = { |
|
scope: this, |
|
success: function(updatedEvent) { |
|
|
|
|
|
store.load({refresh: true}); |
|
}, |
|
failure: this.onProxyFail.createDelegate(this, [event], true) |
|
}; |
|
|
|
|
|
if (event.isRecurException()) { |
|
var range = (option === 'this' ? 'THIS' : 'THISANDFUTURE'); |
|
options.failure = this.onProxyFail.createDelegate(this, [event, Tine.Calendar.backend.saveRecord.createDelegate(Tine.Calendar.backend, [event, options, {range: range, checkBusyConflicts: false}])], true); |
|
Tine.Calendar.backend.saveRecord(event, options, {range: range, checkBusyConflicts: true}); |
|
} else { |
|
options.failure = this.onProxyFail.createDelegate(this, [event, Tine.Calendar.backend.createRecurException.createDelegate(Tine.Calendar.backend, [event, false, option == 'future', false, options])], true); |
|
Tine.Calendar.backend.createRecurException(event, false, option === 'future', true, options); |
|
} |
|
break; |
|
|
|
default: |
|
if(this.loadMask) { |
|
this.loadMask.show(); |
|
store.load({refresh: true}); |
|
} |
|
break; |
|
} |
|
|
|
} |
|
}); |
|
} else { |
|
this.onUpdateEventAction(event); |
|
} |
|
}, |
|
|
|
onUpdateEventAction: function(event) { |
|
var panel = this.getCalendarPanel(this.activeView), |
|
store = panel.getStore(), |
|
view = panel.getView(); |
|
|
|
Tine.Calendar.backend.saveRecord(event, { |
|
scope: this, |
|
success: function(updatedEvent) { |
|
if (updatedEvent.isRecurBase()) { |
|
store.load({refresh: true}); |
|
} else { |
|
this.congruenceFilterCheck(event, updatedEvent); |
|
} |
|
}, |
|
failure: this.onProxyFail.createDelegate(this, [event], true) |
|
}, { |
|
checkBusyConflicts: 1 |
|
}); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
congruenceFilterCheck: function(event, updatedEvent) { |
|
if (! (event.ui && event.ui.rendered)) { |
|
event.store.replaceRecord(event, updatedEvent); |
|
this.setLoading(false); |
|
return; |
|
} |
|
|
|
var filterData = this.getAllFilterData(), |
|
store = event.store; |
|
|
|
if (! store) { |
|
store = this.getStore(); |
|
} |
|
|
|
filterData[0].filters[0].filters.push({field: 'id', operator: 'in', value: [ updatedEvent.get('id') ]}); |
|
|
|
Tine.Calendar.searchEvents(filterData, {}, function(r) { |
|
if(r.totalcount == 0) { |
|
updatedEvent.outOfFilter = true; |
|
} |
|
|
|
store.replaceRecord(event, updatedEvent); |
|
this.setLoading(false); |
|
}, this); |
|
}, |
|
|
|
onDeleteRecords: function () { |
|
var panel = this.getCalendarPanel(this.activeView); |
|
var selection = panel.getSelectionModel().getSelectedEvents(); |
|
|
|
var containsRecurBase = false, |
|
containsRecurInstance = false, |
|
containsRecurException = false; |
|
|
|
Ext.each(selection, function (event) { |
|
if(event.ui) event.ui.markDirty(); |
|
if (event.isRecurInstance()) { |
|
containsRecurInstance = true; |
|
} |
|
if (event.isRecurBase()) { |
|
containsRecurBase = true; |
|
} |
|
if (event.isRecurException()) { |
|
containsRecurException = true; |
|
} |
|
}); |
|
|
|
if (selection.length > 1 && (containsRecurBase || containsRecurInstance)) { |
|
Ext.Msg.show({ |
|
title: this.app.i18n._('Please Change Selection'), |
|
msg: this.app.i18n._('Your selection contains recurring events. Recuring events must be deleted seperatly!'), |
|
icon: Ext.MessageBox.INFO, |
|
buttons: Ext.Msg.OK, |
|
scope: this, |
|
fn: function () { |
|
this.onDeleteRecordsConfirmFail(panel, selection); |
|
} |
|
}); |
|
return; |
|
} |
|
|
|
if (selection.length === 1 && (containsRecurBase || containsRecurInstance || containsRecurException)) { |
|
this.deleteMethodWin = Tine.widgets.dialog.MultiOptionsDialog.openWindow({ |
|
title: this.app.i18n._('Delete Event'), |
|
scope: this, |
|
height: 170, |
|
options: [ |
|
{text: this.app.i18n._('Delete this event only'), name: 'this'}, |
|
{text: this.app.i18n._('Delete this and all future events'), name: containsRecurBase ? 'all' : 'future'}, |
|
{text: this.app.i18n._('Delete whole series'), name: 'all'}, |
|
{text: this.app.i18n._('Delete nothing'), name: 'nothing'} |
|
], |
|
handler: function (option) { |
|
try { |
|
switch (option) { |
|
case 'all': |
|
case 'this': |
|
case 'future': |
|
panel.getTopToolbar().beforeLoad(); |
|
if (option !== 'this') { |
|
this.loadMask.show(); |
|
} |
|
|
|
var options = { |
|
scope: this, |
|
success: function () { |
|
if (option === 'this') { |
|
Ext.each(selection, function (event) { |
|
panel.getStore().remove(event); |
|
}); |
|
} |
|
this.refresh(true); |
|
} |
|
}; |
|
|
|
if (containsRecurException) { |
|
var range = (option === 'future') ? 'THISANDFUTURE' : Ext.util.Format.uppercase(option); |
|
Tine.Calendar.backend.deleteRecords([selection[0]], options, {range: range}); |
|
} else { |
|
if (option === 'all') { |
|
Tine.Calendar.backend.deleteRecurSeries(selection[0], options); |
|
} else { |
|
Tine.Calendar.backend.createRecurException(selection[0], true, option === 'future', false, options); |
|
} |
|
} |
|
break; |
|
default: |
|
this.onDeleteRecordsConfirmFail(panel, selection); |
|
break; |
|
} |
|
|
|
} catch (e) { |
|
Tine.log.error('Tine.Calendar.MainScreenCenterPanel::onDeleteRecords::handle'); |
|
Tine.log.error(e); |
|
} |
|
} |
|
}); |
|
return; |
|
} |
|
|
|
|
|
var i18nQuestion = String.format(this.app.i18n.ngettext('Do you really want to delete this event?', 'Do you really want to delete the {0} selected events?', selection.length), selection.length); |
|
Ext.MessageBox.confirm(i18n._hidden('Confirm'), i18nQuestion, function (btn) { |
|
if (btn === 'yes') { |
|
this.onDeleteRecordsConfirmNonRecur(panel, selection); |
|
} else { |
|
this.onDeleteRecordsConfirmFail(panel, selection); |
|
} |
|
}, this); |
|
|
|
}, |
|
|
|
onDeleteRecordsConfirmNonRecur: function (panel, selection) { |
|
panel.getTopToolbar().beforeLoad(); |
|
|
|
|
|
var sel = Ext.unique(selection); |
|
|
|
var options = { |
|
scope: this, |
|
success: function () { |
|
panel.getTopToolbar().onLoad(); |
|
Ext.each(sel, function (event) { |
|
panel.getStore().remove(event); |
|
}); |
|
}, |
|
failure: function () { |
|
panel.getTopToolbar().onLoad(); |
|
Ext.MessageBox.alert(i18n._hidden('Failed'), String.format(this.app.i18n.n_('Failed to delete event', 'Failed to delete the {0} events', selection.length), selection.length)); |
|
} |
|
}; |
|
|
|
Tine.Calendar.backend.deleteRecords(selection, options); |
|
}, |
|
|
|
onDeleteRecordsConfirmFail: function (panel, selection) { |
|
Ext.each(selection, function (event) { |
|
event.ui.clearDirty(); |
|
}); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onCutEvent: function(action, event) { |
|
var panel = this.getCalendarPanel(this.activeView); |
|
var selection = panel.getSelectionModel().getSelectedEvents(); |
|
if (Ext.isArray(selection) && selection.length === 1) { |
|
event = selection[0]; |
|
} |
|
if (event.ui) { |
|
event.ui.markDirty(); |
|
} |
|
Tine.Tinebase.data.Clipboard.push(event); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onCopyToEvent: function(action, event) { |
|
var panel = this.getCalendarPanel(this.activeView); |
|
var selection = panel.getSelectionModel().getSelectedEvents(); |
|
if (Ext.isArray(selection) && selection.length === 1) { |
|
event = selection[0]; |
|
} |
|
|
|
event.isCopy = true; |
|
event.view = event.view ? event.view : panel.view; |
|
|
|
Tine.Tinebase.data.Clipboard.push(event); |
|
}, |
|
|
|
|
|
|
|
|
|
onCutCancelEvent: function() { |
|
var store = this.getStore(); |
|
var ids = Tine.Tinebase.data.Clipboard.getIds('Calendar', 'Event'); |
|
|
|
for (var index = 0; index < ids.length; index++) { |
|
var record = store.getAt(store.findExact('id', ids[index])); |
|
if (record && record.ui) { |
|
record.ui.clearDirty(); |
|
} |
|
} |
|
|
|
Tine.Tinebase.data.Clipboard.clear('Calendar', 'Event'); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
onPasteEvent: function(datetime) { |
|
var record = Tine.Tinebase.data.Clipboard.pull('Calendar', 'Event'), |
|
isCopy = record.isCopy, |
|
sourceView = record.view, |
|
sourceRecord = record, |
|
sourceViewAttendee = sourceView.ownerCt.attendee, |
|
destinationView = this.getCalendarPanel(this.activeView).getView(), |
|
destinationViewAttendee = destinationView.ownerCt.attendee; |
|
|
|
if (! record) { |
|
return; |
|
} |
|
|
|
var dtend = record.get('dtend'), |
|
dtstart = record.get('dtstart'), |
|
eventLength = dtend - dtstart, |
|
store = this.getStore(); |
|
|
|
record.beginEdit(); |
|
|
|
if (isCopy != true) { |
|
|
|
var oldRecord = store.getAt(store.findExact('id', record.getId())); |
|
if (oldRecord && oldRecord.hasOwnProperty('ui')) { |
|
oldRecord.ui.remove(); |
|
} |
|
} else { |
|
record = Tine.Calendar.EventEditDialog.superclass.doCopyRecordToReturn.call(this, record); |
|
|
|
record.set('editGrant', true); |
|
record.set('id', ''); |
|
record.view = sourceView; |
|
|
|
|
|
Ext.each(record.data.attendee, function(attender) { |
|
delete attender.id; |
|
}, this); |
|
} |
|
|
|
|
|
|
|
if (sourceViewAttendee || destinationViewAttendee) { |
|
var attendeeStore = Tine.Calendar.Model.Attender.getAttendeeStore(sourceRecord.get('attendee')), |
|
sourceAttendee = sourceViewAttendee ? Tine.Calendar.Model.Attender.getAttendeeStore.getAttenderRecord(attendeeStore, sourceViewAttendee) : false, |
|
destinationAttendee = destinationViewAttendee ? Tine.Calendar.Model.Attender.getAttendeeStore.getAttenderRecord(attendeeStore, destinationViewAttendee) : false; |
|
|
|
if (destinationViewAttendee && !destinationAttendee) { |
|
destinationAttendee = new Tine.Calendar.Model.Attender(destinationViewAttendee.data); |
|
|
|
attendeeStore.remove(sourceAttendee); |
|
attendeeStore.add(destinationAttendee); |
|
record.view = destinationView; |
|
|
|
Tine.Calendar.Model.Attender.getAttendeeStore.getData(attendeeStore, record); |
|
} |
|
} |
|
|
|
|
|
if (datetime.is_all_day_event) { |
|
record.set('dtstart', datetime); |
|
record.set('dtend', datetime.clone().add(Date.DAY, 1).add(Date.SECOND, -1)); |
|
record.set('is_all_day_event', true); |
|
} else if (datetime.date_only) { |
|
var adoptedDtStart = datetime.clone(); |
|
adoptedDtStart.setHours(dtstart.getHours()); |
|
adoptedDtStart.setMinutes(dtstart.getMinutes()); |
|
adoptedDtStart.setSeconds(dtstart.getSeconds()); |
|
|
|
record.set('dtstart', adoptedDtStart); |
|
record.set('dtend', new Date(adoptedDtStart.getTime() + eventLength)); |
|
} else { |
|
record.set('dtstart', datetime); |
|
record.set('dtend', new Date(datetime.getTime() + eventLength)); |
|
} |
|
|
|
record.endEdit(); |
|
|
|
if (isCopy == true) { |
|
record.isCopy = true; |
|
Tine.Tinebase.data.Clipboard.push(record); |
|
if (record.ui) { |
|
record.ui.clearDirty(); |
|
} |
|
|
|
this.onAddEvent(record); |
|
} else { |
|
this.onUpdateEvent(record); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onEditInNewWindow: function (action, event, plugins, defaults) { |
|
if (! event) { |
|
event = null; |
|
} |
|
|
|
if (Ext.isObject(action)) { |
|
action = action.actionType; |
|
} |
|
|
|
if (action === 'edit' && ! event) { |
|
var panel = this.getCalendarPanel(this.activeView); |
|
var selection = panel.getSelectionModel().getSelectedEvents(); |
|
if (Ext.isArray(selection) && selection.length === 1) { |
|
event = selection[0]; |
|
} |
|
} |
|
|
|
if (action === 'edit' && (! event || event.dirty)) { |
|
return; |
|
} |
|
|
|
if (! event) { |
|
event = new Tine.Calendar.Model.Event(Ext.apply(Tine.Calendar.Model.Event.getDefaultData(), defaults), 0); |
|
if (defaults && Ext.isDate(defaults.dtStart)) { |
|
event.set('dtstart', defaults.dtStart); |
|
event.set('dtend', defaults.dtStart.add(Date.MINUTE, Tine.Calendar.Model.Event.getMeta('defaultEventDuration'))); |
|
} |
|
} |
|
|
|
Tine.log.debug('Tine.Calendar.MainScreenCenterPanel::onEditInNewWindow() - Opening event edit dialog with action: ' + action); |
|
|
|
Tine.Calendar.EventEditDialog.openWindow({ |
|
plugins: plugins ? Ext.encode(plugins) : null, |
|
record: Ext.encode(event.data), |
|
recordId: event.data.id, |
|
copyRecord: (action == 'copy'), |
|
listeners: { |
|
scope: this, |
|
update: function (eventJson) { |
|
var updatedEvent = Tine.Calendar.backend.recordReader({responseText: eventJson}); |
|
|
|
updatedEvent.dirty = true; |
|
updatedEvent.modified = {}; |
|
event.phantom = (action === 'edit'); |
|
var panel = this.getCalendarPanel(this.activeView); |
|
var store = panel.getStore(); |
|
event = store.getById(event.id); |
|
|
|
if (event && action !== 'copy') { |
|
store.replaceRecord(event, updatedEvent); |
|
} else { |
|
store.add(updatedEvent); |
|
} |
|
|
|
this.onUpdateEvent(updatedEvent, false, event); |
|
} |
|
} |
|
}); |
|
}, |
|
|
|
onKeyDown: function (e) { |
|
if (e.ctrlKey) { |
|
switch (e.getKey()) |
|
{ |
|
case e.A: |
|
|
|
|
|
e.preventDefault(); |
|
break; |
|
case e.E: |
|
if (!this.action_editInNewWindow.isDisabled()) { |
|
this.onEditInNewWindow('edit'); |
|
} |
|
e.preventDefault(); |
|
break; |
|
case e.N: |
|
if (!this.action_addInNewWindow.isDisabled()) { |
|
this.onEditInNewWindow('add'); |
|
} |
|
e.preventDefault(); |
|
break; |
|
} |
|
} else if (e.getKey() === e.DELETE) { |
|
if (! this.action_deleteRecord.isDisabled()) { |
|
this.onDeleteRecords.call(this); |
|
} |
|
} |
|
}, |
|
|
|
onPrintMenuClick: function(splitBtn, e) { |
|
if (! String(this.activeView).match(/(day|week)sheet$/i)) { |
|
splitBtn.menu.hide(); |
|
} |
|
}, |
|
|
|
onPrint: function(printMode) { |
|
var printMode = printMode ? printMode : this.defaultPrintMode, |
|
panel = this.getCalendarPanel(this.activeView), |
|
view = panel ? panel.getView() : null; |
|
|
|
if (view && Ext.isFunction(view.print)) { |
|
view.print(printMode); |
|
} else { |
|
Ext.Msg.alert(this.app.i18n._('Could not Print'), this.app.i18n._('Sorry, your current view does not support printing.')); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
onStoreBeforeload: function (store, options) { |
|
options.params = options.params || {}; |
|
|
|
|
|
this.lastStoreTransactionId = options.transactionId = Ext.id(); |
|
|
|
|
|
|
|
options.params.filter = []; |
|
|
|
if (! options.refresh && this.rendered) { |
|
|
|
this.loadMask.show.defer(50, this.loadMask); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
this.filterToolbar.onBeforeLoad.call(this.filterToolbar, store, options); |
|
|
|
|
|
if (! options.noPeriodFilter) { |
|
options.params.filter.push({field: 'period', operator: 'within', value: this.getCalendarPanel(this.activeView).getView().getPeriod() }); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
onStoreBeforeLoadRecords: function(o, options, success) { |
|
return this.lastStoreTransactionId === options.transactionId; |
|
}, |
|
|
|
|
|
|
|
|
|
onStoreLoad: function (store, options) { |
|
if (this.rendered) { |
|
this.loadMask.hide(); |
|
} |
|
|
|
|
|
if (window.isMainWindow && this.autoRefreshInterval) { |
|
this.autoRefreshTask.delay(this.autoRefreshInterval * 1000); |
|
} |
|
|
|
|
|
if (store !== this.getCalendarPanel(this.activeView).getStore()) { |
|
Tine.log.debug('Tine.Calendar.MainScreenCenterPanel::onStoreLoad view is not active anymore'); |
|
return; |
|
} |
|
|
|
if (this.rendered) { |
|
|
|
if(this.filterToolbar) { |
|
this.filterToolbar.setValue(store.proxy.jsonReader.jsonData.filter); |
|
} |
|
|
|
Tine.Tinebase.appMgr.get('Calendar').getMainScreen().getWestPanel().getContainerTreePanel().getFilterPlugin().setValue(store.proxy.jsonReader.jsonData.filter); |
|
|
|
|
|
Tine.Tinebase.appMgr.get('Calendar').getMainScreen().getWestPanel().getAttendeeFilter().setFilterValue(store.proxy.jsonReader.jsonData.filter); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onStoreLoadException: function(proxy, type, error, options) { |
|
|
|
if (window.isMainWindow && this.autoRefreshInterval) { |
|
this.autoRefreshTask.delay(this.autoRefreshInterval * 5000); |
|
} |
|
|
|
this.setLoading(false); |
|
this.loadMask.hide(); |
|
|
|
if (! options.autoRefresh) { |
|
this.onProxyFail(error); |
|
} |
|
}, |
|
|
|
onProxyFail: function(error, event, ignoreFn) { |
|
this.setLoading(false); |
|
if(this.loadMask) this.loadMask.hide(); |
|
|
|
if (error.code == 901) { |
|
|
|
|
|
var busyAttendee = []; |
|
var conflictEvents = {}; |
|
var attendeeStore = Tine.Calendar.Model.Attender.getAttendeeStore(error.event.attendee); |
|
|
|
Ext.each(error.freebusyinfo, function(fbinfo) { |
|
attendeeStore.each(function(a) { |
|
var userType = a.get('user_type'); |
|
userType = userType == 'groupmember' ? 'user' : userType; |
|
if (userType == fbinfo.user_type && a.getUserId() == fbinfo.user_id) { |
|
if (busyAttendee.indexOf(a) < 0) { |
|
busyAttendee.push(a); |
|
conflictEvents[a.id] = []; |
|
} |
|
conflictEvents[a.id].push(fbinfo); |
|
} |
|
}); |
|
}, this); |
|
|
|
|
|
var busyAttendeeHTML = ''; |
|
var denyIgnore = false; |
|
|
|
Ext.each(busyAttendee, function(busyAttender) { |
|
|
|
|
|
|
|
var attenderName = Tine.Calendar.AttendeeGridPanel.prototype.renderAttenderName.call(Tine.Calendar.AttendeeGridPanel.prototype, busyAttender.get('user_id'), false, busyAttender); |
|
busyAttendeeHTML += '<div class="cal-conflict-attendername">' + attenderName + '</div>'; |
|
|
|
var eventInfos = []; |
|
Ext.each(conflictEvents[busyAttender.id], function(fbInfo) { |
|
var format = 'H:i'; |
|
var eventInfo; |
|
var dateFormat = Ext.form.DateField.prototype.format; |
|
if (event.get('dtstart').format(dateFormat) != event.get('dtend').format(dateFormat) || |
|
Date.parseDate(fbInfo.dtstart, Date.patterns.ISO8601Long).format(dateFormat) != Date.parseDate(fbInfo.dtend, Date.patterns.ISO8601Long).format(dateFormat)) |
|
{ |
|
eventInfo = Date.parseDate(fbInfo.dtstart, Date.patterns.ISO8601Long).format(dateFormat + ' ' + format) + ' - ' + Date.parseDate(fbInfo.dtend, Date.patterns.ISO8601Long).format(dateFormat + ' ' + format); |
|
} else { |
|
eventInfo = Date.parseDate(fbInfo.dtstart, Date.patterns.ISO8601Long).format(dateFormat + ' ' + format) + ' - ' + Date.parseDate(fbInfo.dtend, Date.patterns.ISO8601Long).format(format); |
|
} |
|
if (fbInfo.event && fbInfo.event.summary) { |
|
|
|
|
|
|
|
eventInfo += ' : ' + Ext.util.Format.htmlEncode(fbInfo.event.summary); |
|
} |
|
if (fbInfo.type == 'BUSY_UNAVAILABLE') { |
|
denyIgnore = true; |
|
eventInfo += '<span class="cal-conflict-eventinfos-unavailable">' + this.app.i18n._('Unavailable') + '</span>'; |
|
} |
|
eventInfos.push(eventInfo); |
|
}, this); |
|
busyAttendeeHTML += '<div class="cal-conflict-eventinfos">' + eventInfos.join(', <br />') + '</div>'; |
|
|
|
}, this); |
|
|
|
this.conflictConfirmWin = Tine.widgets.dialog.MultiOptionsDialog.openWindow({ |
|
modal: true, |
|
allowCancel: false, |
|
height: 180 + 15*error.freebusyinfo.length, |
|
title: this.app.i18n._('Scheduling Conflict'), |
|
questionText: '<div class = "cal-conflict-heading">' + |
|
this.app.i18n._('The following attendee are busy at the requested time:') + |
|
'</div>' + |
|
busyAttendeeHTML, |
|
options: [ |
|
{text: this.app.i18n._('Ignore Conflict'), name: 'ignore', disabled: denyIgnore}, |
|
{text: this.app.i18n._('Edit Event'), name: 'edit', checked: true}, |
|
{text: this.app.i18n._('Cancel this action'), name: 'cancel'} |
|
], |
|
scope: this, |
|
handler: function(option) { |
|
var panel = this.getCalendarPanel(this.activeView), |
|
store = panel.getStore(); |
|
|
|
switch (option) { |
|
case 'ignore': |
|
if (Ext.isFunction(ignoreFn)) { |
|
ignoreFn(); |
|
} else { |
|
this.onAddEvent(event, false, true); |
|
} |
|
this.conflictConfirmWin.close(); |
|
break; |
|
|
|
case 'edit': |
|
|
|
var presentationMatch = this.activeView.match(this.presentationRe), |
|
presentation = Ext.isArray(presentationMatch) ? presentationMatch[0] : null; |
|
|
|
if (presentation != 'Grid') { |
|
var view = panel.getView(); |
|
view.getSelectionModel().select(event); |
|
|
|
event.dirty = false; |
|
view.fireEvent('dblclick', view, event); |
|
} else { |
|
|
|
this.onEditInNewWindow(null, event); |
|
} |
|
|
|
this.conflictConfirmWin.close(); |
|
break; |
|
case 'cancel': |
|
default: |
|
this.conflictConfirmWin.close(); |
|
this.loadMask.show(); |
|
store.load({refresh: true}); |
|
break; |
|
} |
|
} |
|
}); |
|
|
|
} else { |
|
Tine.Tinebase.ExceptionHandler.handleRequestException(error); |
|
} |
|
}, |
|
|
|
refresh: function (options) { |
|
|
|
options = Ext.isObject(options) ? options : { |
|
refresh: !!options |
|
}; |
|
Tine.log.debug('Tine.Calendar.MainScreenCenterPanel::refresh(' + options.refresh + ')'); |
|
|
|
|
|
if (window.isMainWindow && this.autoRefreshInterval) { |
|
this.autoRefreshTask.delay(this.autoRefreshInterval * 2000); |
|
} |
|
|
|
var panel = this.getCalendarPanel(this.activeView); |
|
panel.getStore().load(options); |
|
|
|
|
|
Tine.Tinebase.appMgr.get('Calendar').getMainScreen().getWestPanel().getFavoritesPanel().getSelectionModel().clearSelections(); |
|
}, |
|
|
|
setLoading: function(bool) { |
|
if (this.rendered) { |
|
var panel = this.getCalendarPanel(this.activeView), |
|
tbar = panel.getTopToolbar(); |
|
|
|
if (tbar && tbar.loading) { |
|
tbar.loading[bool ? 'disable' : 'enable'](); |
|
} |
|
} |
|
}, |
|
|
|
setResponseStatus: function(event, status) { |
|
var myAttenderRecord = event.getMyAttenderRecord(); |
|
if (myAttenderRecord) { |
|
myAttenderRecord.set('status', status); |
|
event.dirty = true; |
|
event.modified = {}; |
|
|
|
var panel = this.getCalendarPanel(this.activeView); |
|
var store = panel.getStore(); |
|
|
|
store.replaceRecord(event, event); |
|
|
|
this.onUpdateEvent(event); |
|
} |
|
}, |
|
|
|
updateEventActions: function () { |
|
var panel = this.getCalendarPanel(this.activeView); |
|
var selection = panel.getSelectionModel().getSelectedEvents(); |
|
|
|
this.actionUpdater.updateActions(selection); |
|
if (this.detailsPanel) { |
|
this.detailsPanel.onDetailsUpdate(panel.getSelectionModel()); |
|
} |
|
}, |
|
|
|
updateView: function (which) { |
|
Tine.log.debug('Tine.Calendar.MainScreenCenterPanel::updateView(' + which + ')'); |
|
var panel = this.getCalendarPanel(which); |
|
var period = panel.getTopToolbar().getPeriod(); |
|
|
|
panel.getView().updatePeriod(period); |
|
panel.getStore().load({}); |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getCalendarPanel: function (which) { |
|
var whichParts = this.getViewParts(which); |
|
which = whichParts.toString(); |
|
|
|
if (! this.calendarPanels[which]) { |
|
Tine.log.debug('Tine.Calendar.MainScreenCenterPanel::getCalendarPanel creating new calender panel for view ' + which); |
|
|
|
var store = new Ext.data.JsonStore({ |
|
|
|
id: 'id', |
|
fields: Tine.Calendar.Model.Event, |
|
proxy: Tine.Calendar.backend, |
|
reader: new Ext.data.JsonReader({}), |
|
listeners: { |
|
scope: this, |
|
'beforeload': this.onStoreBeforeload, |
|
'beforeloadrecords' : this.onStoreBeforeLoadRecords, |
|
'load': this.onStoreLoad, |
|
'loadexception': this.onStoreLoadException |
|
}, |
|
replaceRecord: function(o, n) { |
|
var idx = this.indexOf(o); |
|
this.remove(o); |
|
this.insert(idx, n); |
|
} |
|
}); |
|
|
|
var tbar = new Tine.Calendar.PagingToolbar({ |
|
view: whichParts.period, |
|
store: store, |
|
dtStart: this.startDate, |
|
listeners: { |
|
scope: this, |
|
|
|
|
|
render: function (tbar) { |
|
for (var i = 0; i < this.changeViewActions.length; i += 1) { |
|
if (! this.changeViewActions[i].rendered) { |
|
tbar.addButton(this.changeViewActions[i]); |
|
} |
|
} |
|
} |
|
} |
|
}); |
|
|
|
tbar.on('change', this.updateView.createDelegate(this, [which]), this, {buffer: 200}); |
|
tbar.on('refresh', this.refresh.createDelegate(this, [true]), this, {buffer: 200}); |
|
|
|
if (whichParts.presentation.match(/sheet/i)) { |
|
var view; |
|
switch (which) { |
|
case 'daySheet': |
|
view = new Tine.Calendar.DaysView({ |
|
store: store, |
|
startDate: tbar.getPeriod().from, |
|
numOfDays: 1 |
|
}); |
|
break; |
|
case 'monthSheet': |
|
view = new Tine.Calendar.MonthView({ |
|
store: store, |
|
period: tbar.getPeriod() |
|
}); |
|
break; |
|
case 'yearSheet': |
|
view = new Tine.Calendar.YearView({ |
|
store: store, |
|
period: tbar.getPeriod() |
|
}); |
|
break; |
|
default: |
|
case 'weekSheet': |
|
view = new Tine.Calendar.DaysView({ |
|
store: store, |
|
startDate: tbar.getPeriod().from, |
|
numOfDays: 7 |
|
}); |
|
break; |
|
} |
|
|
|
view.on('changeView', this.changeView, this); |
|
view.on('changePeriod', function (period) { |
|
this.startDate = period.from; |
|
this.startDates[which] = this.startDate.clone(); |
|
this.updateMiniCal(); |
|
}, this); |
|
|
|
|
|
view.on('addEvent', this.onAddEvent, this); |
|
view.on('updateEvent', this.onUpdateEvent, this); |
|
|
|
this.calendarPanels[which] = new Tine.Calendar.CalendarPanel({ |
|
tbar: tbar, |
|
view: view, |
|
mainScreen: this |
|
}); |
|
} else if (whichParts.presentation.match(/grid/i)) { |
|
this.calendarPanels[which] = new Tine.Calendar.GridView({ |
|
tbar: tbar, |
|
store: store |
|
}); |
|
} |
|
|
|
this.calendarPanels[which].on('dblclick', this.onEditInNewWindow.createDelegate(this, ["edit"])); |
|
this.calendarPanels[which].on('contextmenu', this.onContextMenu, this); |
|
this.calendarPanels[which].getSelectionModel().on('selectionchange', this.updateEventActions, this); |
|
this.calendarPanels[which].on('keydown', this.onKeyDown, this); |
|
|
|
this.calendarPanels[which].relayEvents(this, ['show', 'beforehide']); |
|
|
|
|
|
|
|
tbar.unbind(store); |
|
tbar.bind(store); |
|
} |
|
|
|
return this.calendarPanels[which]; |
|
}, |
|
|
|
updateMiniCal: function () { |
|
var miniCal = Ext.getCmp('cal-mainscreen-minical'); |
|
var weekNumbers = null; |
|
var period = this.getCalendarPanel(this.activeView).getView().getPeriod(); |
|
|
|
switch (this.activeView) |
|
{ |
|
case 'week' : |
|
weekNumbers = [period.from.add(Date.DAY, 1).getWeekOfYear()]; |
|
break; |
|
case 'month' : |
|
weekNumbers = []; |
|
var startWeek = period.from.add(Date.DAY, 1).getWeekOfYear(); |
|
var numWeeks = Math.round((period.until.getTime() - period.from.getTime()) / Date.msWEEK); |
|
for (var i = 0; i < numWeeks; i += 1) { |
|
weekNumbers.push(startWeek + i); |
|
} |
|
break; |
|
} |
|
miniCal.update(this.startDate, true, weekNumbers); |
|
} |
|
}); |
|
|