我一直在使用 Angular2 构建日历应用程序,最近升级到 rc5。我的日历允许用户通过使用详细模式创建/编辑约会详细信息,然后显示更改并提示用户在另一个模式中确认更改。它还允许用户拖放事件并相应地计算新的日期/时间。该应用程序在升级到 rc5 之前运行良好。自升级以来,当用户将事件拖到新时间时,确认模式打开并显示最后的更改,并且只有当用户在模式内单击时,它才会更新以反映新的更改。
预期流程:拖放 -> 更新值 -> 打开显示以显示新更改
当前流程:拖放->打开显示->(在模式中单击时)更改值以反映新的事件时间
我没有更改我的代码,所以我怀疑 rc5 处理模态的方式有一些变化。我正在使用“ng2-bootstrap”,细节编辑流程仍然正常工作。
viewProviders:[BS_VIEW_PROVIDERS] 指令:[MODAL_DIRECTIVES]
拖放处理程序:
confirmEvent(response) {
this.changeEvent = this.calendarService.getEvent(this.events, response.existingEvent);
this.event = response.newEvent;
this.confirmAction = response.action;
this.eventService.getEventParticipants(this.changeEvent);
this.appointmentConfirmComponent.show();
}
详细响应处理程序:
handleDetailsResponse(response) {
this.changeEvent = this.calendarService.getEvent(this.events, response.event);
this.eventService.getEventParticipants(this.changeEvent);
this.event = response.event;
this.appointmentDetailComponent.hide();
switch (response.action) {
case 'delete':
if(this.changeEvent.id && this.changeEvent.id !== '') {
this.confirmAction = 'delete';
this.appointmentConfirmComponent.show();
}
break;
case 'save':
if (this.event.id && this.event.id !== '') {
this.confirmAction = 'update';
} else {
this.confirmAction = 'save';
}
this.appointmentConfirmComponent.show();
break;
default:
this.confirmAction = 'ERROR';
this.updateSources();
break;
}
}
如果需要,我可以强制模式上的一个事件来欺骗它进行更新,但这似乎很草率。有没有一种干净的方法来强制模式更新?
calendar.component.html
<div class="row" style="margin-top: 1rem;">
<div class="card col-xs-8 col-xs-offset-1 flex" style="padding-top: 1rem;">
<calendar-body class="flex-content"
[calendarEvents]='events'
(editEvent)='editEvent($event)' (confirmEvent)='confirmEvent($event)'>
</calendar-body>
</div>
<appointment-detail [event]="event" (submitDetails)="handleDetailsResponse($event)"></appointment-detail>
<appointment-confirm [existingEvent]="changeEvent" [newEvent]="event" [action]="confirmAction" (submitConfirmation)="handleConfirmResponse($event)"></appointment-confirm>
</div>