Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: events can not be dragged back to their original location #847

Merged
merged 3 commits into from
Feb 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ export class CalendarDragHelper {
validateDrag({
x,
y,
snapDraggedEvents
snapDraggedEvents,
dragAlreadyMoved
}: {
x: number;
y: number;
snapDraggedEvents: boolean;
dragAlreadyMoved: boolean;
}): boolean {
const isWithinThreshold =
Math.abs(x) > DRAG_THRESHOLD || Math.abs(y) > DRAG_THRESHOLD;
Expand All @@ -33,11 +35,11 @@ export class CalendarDragHelper {
});

return (
isWithinThreshold &&
(isWithinThreshold || dragAlreadyMoved) &&
isInside(this.dragContainerElement.getBoundingClientRect(), newRect)
);
} else {
return isWithinThreshold;
return isWithinThreshold || dragAlreadyMoved;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export interface DayViewEventResize {
"
[validateDrag]="validateDrag"
(dragPointerDown)="dragStarted(event, dayEventsContainer)"
(dragging)="dragMove()"
(dragEnd)="dragEnded(dayEvent, $event)"
[style.marginTop.px]="dayEvent.top"
[style.height.px]="dayEvent.height"
Expand Down Expand Up @@ -371,6 +372,11 @@ export class CalendarDayViewComponent implements OnChanges, OnInit, OnDestroy {
*/
calendarId = Symbol('angular calendar day view id');

/**
* @hidden
*/
dragAlreadyMoved = false;

/**
* @hidden
*/
Expand Down Expand Up @@ -561,12 +567,21 @@ export class CalendarDayViewComponent implements OnChanges, OnInit, OnDestroy {
dragHelper.validateDrag({
x,
y,
snapDraggedEvents: this.snapDraggedEvents
snapDraggedEvents: this.snapDraggedEvents,
dragAlreadyMoved: this.dragAlreadyMoved
});
this.eventDragEnter = 0;
this.dragAlreadyMoved = false;
this.cdr.markForCheck();
}

/**
* @hidden
*/
dragMove() {
this.dragAlreadyMoved = true;
}

dragEnded(dayEvent: DayViewEvent, dragEndEvent: DragEndEvent): void {
if (this.eventDragEnter > 0) {
let minutesMoved = getMinutesMoved(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ export interface CalendarWeekViewBeforeRenderEvent extends WeekView {
[dragSnapGrid]="snapDraggedEvents ? { x: dayColumnWidth } : {}"
[validateDrag]="validateDrag"
(dragPointerDown)="dragStarted(eventRowContainer, event)"
(dragging)="allDayEventDragMove()"
(dragEnd)="dragEnded(allDayEvent, $event, dayColumnWidth)"
>
<div
Expand Down Expand Up @@ -556,6 +557,11 @@ export class CalendarWeekViewComponent implements OnChanges, OnInit, OnDestroy {
*/
dragActive = false;

/**
* @hidden
*/
dragAlreadyMoved = false;

/**
* @hidden
*/
Expand Down Expand Up @@ -865,9 +871,11 @@ export class CalendarWeekViewComponent implements OnChanges, OnInit, OnDestroy {
dragHelper.validateDrag({
x,
y,
snapDraggedEvents: this.snapDraggedEvents
snapDraggedEvents: this.snapDraggedEvents,
dragAlreadyMoved: this.dragAlreadyMoved
});
this.dragActive = true;
this.dragAlreadyMoved = false;
this.eventDragEnter = 0;
if (!this.snapDraggedEvents && dayEvent) {
this.view.hourColumns.forEach(column => {
Expand Down Expand Up @@ -909,6 +917,14 @@ export class CalendarWeekViewComponent implements OnChanges, OnInit, OnDestroy {
new Map([[adjustedEvent, originalEvent]])
);
}
this.dragAlreadyMoved = true;
}

/**
* @hidden
*/
allDayEventDragMove() {
this.dragAlreadyMoved = true;
}

/**
Expand Down
114 changes: 114 additions & 0 deletions projects/angular-calendar/test/calendar-week-view.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1600,6 +1600,66 @@ describe('calendarWeekView component', () => {
});
});

it('should drag time events back to their original position while snapping to a grid', () => {
const fixture: ComponentFixture<
CalendarWeekViewComponent
> = TestBed.createComponent(CalendarWeekViewComponent);
fixture.componentInstance.viewDate = new Date('2018-07-29');
const originalEvent = {
start: moment(new Date('2018-07-29'))
.startOf('day')
.add(3, 'hours')
.toDate(),
end: moment(new Date('2018-07-29'))
.startOf('day')
.add(5, 'hours')
.toDate(),
title: 'foo',
draggable: true
};
fixture.componentInstance.events = [originalEvent];
fixture.componentInstance.ngOnChanges({ viewDate: {}, events: {} });
fixture.detectChanges();
document.body.appendChild(fixture.nativeElement);
const event = fixture.nativeElement.querySelector('.cal-event-container');
const rect: ClientRect = event.getBoundingClientRect();
let dragEvent: CalendarEventTimesChangedEvent;
fixture.componentInstance.eventTimesChanged.subscribe(e => {
dragEvent = e;
});
triggerDomEvent('mousedown', event, {
clientX: rect.right,
clientY: rect.bottom
});
fixture.detectChanges();
triggerDomEvent('mousemove', event, {
clientX: rect.right,
clientY: rect.bottom + 95
});
fixture.detectChanges();
const updatedEvent1 = fixture.nativeElement.querySelector(
'.cal-event-container'
);
expect(updatedEvent1.getBoundingClientRect().top).to.equal(rect.top + 90);
triggerDomEvent('mousemove', event, {
clientX: rect.right,
clientY: rect.bottom
});
fixture.detectChanges();
const updatedEvent2 = fixture.nativeElement.querySelector(
'.cal-event-container'
);
expect(updatedEvent2.getBoundingClientRect().top).to.equal(rect.top);
triggerDomEvent('mouseup', event, {
clientX: rect.right,
clientY: rect.bottom
});
fixture.detectChanges();
fixture.destroy();
expect(dragEvent.newStart).to.deep.equal(originalEvent.start);
expect(dragEvent.newEnd).to.deep.equal(originalEvent.end);
});

it('should drag time events without end dates', () => {
const fixture: ComponentFixture<
CalendarWeekViewComponent
Expand Down Expand Up @@ -1733,6 +1793,60 @@ describe('calendarWeekView component', () => {
});
});

it('should drag time events back to their original position while not snapping to a grid', () => {
const fixture: ComponentFixture<
CalendarWeekViewComponent
> = TestBed.createComponent(CalendarWeekViewComponent);
fixture.componentInstance.viewDate = new Date('2018-07-29');
const originalEvent = {
start: moment(new Date('2018-07-29'))
.startOf('day')
.add(3, 'hours')
.toDate(),
end: moment(new Date('2018-07-29'))
.startOf('day')
.add(5, 'hours')
.toDate(),
title: 'foo',
draggable: true
};
fixture.componentInstance.events = [originalEvent];
fixture.componentInstance.snapDraggedEvents = false;
fixture.componentInstance.ngOnChanges({ viewDate: {}, events: {} });
fixture.detectChanges();
document.body.appendChild(fixture.nativeElement);
const event = fixture.nativeElement.querySelector('.cal-event-container');
const rect: ClientRect = event.getBoundingClientRect();
let dragEvent: CalendarEventTimesChangedEvent;
fixture.componentInstance.eventTimesChanged.subscribe(e => {
dragEvent = e;
});
triggerDomEvent('mousedown', event, {
clientX: rect.left,
clientY: rect.top
});
const timeEvents = fixture.nativeElement.querySelector('.cal-time-events');
fixture.detectChanges();
triggerDomEvent('mousemove', timeEvents, {
clientX: rect.left,
clientY: rect.top + 95
});
fixture.detectChanges();
triggerDomEvent('mousemove', timeEvents, {
clientX: rect.left,
clientY: rect.top
});
fixture.detectChanges();
triggerDomEvent('mouseup', timeEvents, {
clientX: rect.left,
clientY: rect.top
});
fixture.detectChanges();
fixture.destroy();
expect(dragEvent.newStart).to.deep.equal(originalEvent.start);
expect(dragEvent.newEnd).to.deep.equal(originalEvent.end);
});

it('should drag an all day event onto the time grid', () => {
const fixture: ComponentFixture<
CalendarWeekViewComponent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
}"
[validateDrag]="validateDrag"
(dragStart)="dragStarted(event, dayViewContainer)"
(dragging)="dragMove()"
(dragEnd)="eventDragged(dayEvent, $event.x, $event.y)"
[style.marginTop.px]="dayEvent.top"
[style.height.px]="dayEvent.height"
Expand Down