kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
242 lines
9.5 KiB
242 lines
9.5 KiB
// -- copyright
|
|
// OpenProject is a project management system.
|
|
// Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License version 3.
|
|
//
|
|
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
// Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
// Copyright (C) 2010-2013 the ChiliProject Team
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation; either version 2
|
|
// of the License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
//
|
|
// See doc/COPYRIGHT.rdoc for more details.
|
|
// ++
|
|
|
|
import * as moment from 'moment';
|
|
import {keyCodes} from '../../../common/keyCodes.enum';
|
|
import {LoadingIndicatorService} from '../../../common/loading-indicator/loading-indicator.service';
|
|
import {WorkPackageCacheService} from '../../../work-packages/work-package-cache.service';
|
|
import {WorkPackageTableRefreshService} from '../../wp-table-refresh-request.service';
|
|
import {WorkPackageTimelineTableController} from '../container/wp-timeline-container.directive';
|
|
import {RenderInfo, timelineElementCssClass} from '../wp-timeline';
|
|
import {TimelineCellRenderer} from './timeline-cell-renderer';
|
|
import {WorkPackageCellLabels} from './wp-timeline-cell';
|
|
import {WorkPackageChangeset} from '../../../wp-edit-form/work-package-changeset';
|
|
import {WorkPackageNotificationService} from '../../../wp-edit/wp-notification.service';
|
|
import Moment = moment.Moment;
|
|
|
|
const classNameBar = 'bar';
|
|
export const classNameLeftHandle = 'leftHandle';
|
|
export const classNameRightHandle = 'rightHandle';
|
|
export const classNameBarLabel = 'bar-label';
|
|
|
|
|
|
export function registerWorkPackageMouseHandler(this: void,
|
|
getRenderInfo: () => RenderInfo,
|
|
workPackageTimeline: WorkPackageTimelineTableController,
|
|
wpCacheService: WorkPackageCacheService,
|
|
wpTableRefresh: WorkPackageTableRefreshService,
|
|
wpNotificationsService: WorkPackageNotificationService,
|
|
loadingIndicator: LoadingIndicatorService,
|
|
cell: HTMLElement,
|
|
bar: HTMLDivElement,
|
|
labels:WorkPackageCellLabels,
|
|
renderer: TimelineCellRenderer,
|
|
renderInfo: RenderInfo) {
|
|
|
|
let mouseDownStartDay:number | null = null; // also flag to signal active drag'n'drop
|
|
renderInfo.changeset = new WorkPackageChangeset(renderInfo.workPackage);
|
|
|
|
let dateStates:any;
|
|
let placeholderForEmptyCell:HTMLElement;
|
|
const jBody = jQuery('body');
|
|
|
|
// handles change to existing work packages
|
|
bar.onmousedown = (ev:MouseEvent) => {
|
|
if (ev.which === 1) {
|
|
// Left click only
|
|
workPackageMouseDownFn(bar, ev);
|
|
}
|
|
};
|
|
|
|
// handles initial creation of start/due values
|
|
cell.onmousemove = handleMouseMoveOnEmptyCell;
|
|
|
|
function applyDateValues(renderInfo:RenderInfo, dates:{[name:string]: Moment}) {
|
|
// Let the renderer decide which fields we change
|
|
renderer.assignDateValues(renderInfo.changeset, labels, dates);
|
|
}
|
|
|
|
function getCursorOffsetInDaysFromLeft(renderInfo:RenderInfo, ev:MouseEvent) {
|
|
const leftOffset = workPackageTimeline.getAbsoluteLeftCoordinates();
|
|
const cursorOffsetLeftInPx = ev.clientX - leftOffset;
|
|
const cursorOffsetLeftInDays = Math.floor(cursorOffsetLeftInPx / renderInfo.viewParams.pixelPerDay);
|
|
return cursorOffsetLeftInDays;
|
|
}
|
|
|
|
function workPackageMouseDownFn(bar:HTMLDivElement, ev:MouseEvent) {
|
|
ev.preventDefault();
|
|
|
|
// add/remove css class while drag'n'drop is active
|
|
const classNameActiveDrag = 'active-drag';
|
|
bar.classList.add(classNameActiveDrag);
|
|
jBody.on('mouseup', () => bar.classList.remove(classNameActiveDrag));
|
|
|
|
workPackageTimeline.disableViewParamsCalculation = true;
|
|
mouseDownStartDay = getCursorOffsetInDaysFromLeft(renderInfo, ev);
|
|
|
|
// If this wp is a parent element, changing it is not allowed.
|
|
// But adding a relation to it is.
|
|
if (!renderInfo.workPackage.isLeaf && !renderInfo.viewParams.activeSelectionMode) {
|
|
return;
|
|
}
|
|
|
|
// Determine what attributes of the work package should be changed
|
|
const direction = renderer.onMouseDown(ev, null, renderInfo, labels, bar);
|
|
|
|
jBody.on('mousemove', createMouseMoveFn(direction));
|
|
jBody.on('keyup', keyPressFn);
|
|
jBody.on('mouseup', () => deactivate(false));
|
|
}
|
|
|
|
function createMouseMoveFn(direction:'left' | 'right' | 'both' | 'create' | 'dragright') {
|
|
return (ev:JQueryEventObject) => {
|
|
const mev:MouseEvent = ev as any;
|
|
|
|
const days = getCursorOffsetInDaysFromLeft(renderInfo, mev) - mouseDownStartDay!;
|
|
const offsetDayCurrent = Math.floor(ev.offsetX / renderInfo.viewParams.pixelPerDay);
|
|
const dayUnderCursor = renderInfo.viewParams.dateDisplayStart.clone().add(offsetDayCurrent, 'days');
|
|
|
|
dateStates = renderer.onDaysMoved(renderInfo.changeset, dayUnderCursor, days, direction);
|
|
applyDateValues(renderInfo, dateStates);
|
|
renderer.update(bar, renderInfo);
|
|
}
|
|
}
|
|
|
|
function keyPressFn(ev:JQueryEventObject) {
|
|
const kev:KeyboardEvent = ev as any;
|
|
if (kev.keyCode === keyCodes.ESCAPE) {
|
|
deactivate(true);
|
|
}
|
|
}
|
|
|
|
function handleMouseMoveOnEmptyCell(ev:MouseEvent) {
|
|
const wp = renderInfo.workPackage;
|
|
|
|
if (!renderer.isEmpty(wp)) {
|
|
return;
|
|
}
|
|
|
|
// placeholder logic
|
|
placeholderForEmptyCell && placeholderForEmptyCell.remove();
|
|
placeholderForEmptyCell = renderer.displayPlaceholderUnderCursor(ev, renderInfo);
|
|
cell.appendChild(placeholderForEmptyCell);
|
|
|
|
// abort if mouse leaves cell
|
|
cell.onmouseleave = () => {
|
|
placeholderForEmptyCell.remove();
|
|
};
|
|
|
|
// create logic
|
|
cell.onmousedown = (ev) => {
|
|
placeholderForEmptyCell.remove();
|
|
bar.style.pointerEvents = 'none';
|
|
ev.preventDefault();
|
|
|
|
const offsetDayStart = Math.floor(ev.offsetX / renderInfo.viewParams.pixelPerDay);
|
|
const clickStart = renderInfo.viewParams.dateDisplayStart.clone().add(offsetDayStart, 'days');
|
|
const dateForCreate = clickStart.format('YYYY-MM-DD');
|
|
const mouseDownType = renderer.onMouseDown(ev, dateForCreate, renderInfo, labels, bar);
|
|
renderer.update(bar, renderInfo);
|
|
|
|
if (mouseDownType === 'create') {
|
|
deactivate(false);
|
|
ev.preventDefault();
|
|
return;
|
|
}
|
|
|
|
cell.onmousemove = (ev) => {
|
|
const offsetDayCurrent = Math.floor(ev.offsetX / renderInfo.viewParams.pixelPerDay);
|
|
const dayUnderCursor = renderInfo.viewParams.dateDisplayStart.clone().add(offsetDayCurrent, 'days');
|
|
const widthInDays = offsetDayCurrent - offsetDayStart;
|
|
const moved = renderer.onDaysMoved(renderInfo.changeset, dayUnderCursor, widthInDays, mouseDownType);
|
|
renderer.assignDateValues(renderInfo.changeset, labels, moved);
|
|
renderer.update(bar, renderInfo);
|
|
};
|
|
|
|
cell.onmouseleave = () => {
|
|
deactivate(true);
|
|
};
|
|
|
|
cell.onmouseup = () => {
|
|
deactivate(false);
|
|
};
|
|
|
|
jBody.on('keyup', keyPressFn);
|
|
};
|
|
}
|
|
|
|
function deactivate(cancelled:boolean) {
|
|
workPackageTimeline.disableViewParamsCalculation = false;
|
|
|
|
cell.onmousemove = handleMouseMoveOnEmptyCell;
|
|
cell.onmousedown = _.noop;
|
|
cell.onmouseleave = _.noop;
|
|
cell.onmouseup = _.noop;
|
|
|
|
bar.style.pointerEvents = 'auto';
|
|
jBody.off('mouseup');
|
|
jBody.off('mousemove');
|
|
jBody.off('keyup');
|
|
jQuery('.hascontextmenu').css('cursor', 'context-menu');
|
|
jQuery('.' + timelineElementCssClass).css('cursor', '');
|
|
jQuery('.' + classNameLeftHandle).css('cursor', 'w-resize');
|
|
jQuery('.' + classNameBar).css('cursor', 'ew-resize');
|
|
jQuery('.' + classNameRightHandle).css('cursor', 'e-resize');
|
|
mouseDownStartDay = null;
|
|
dateStates = {};
|
|
|
|
// const renderInfo = getRenderInfo();
|
|
if (cancelled) {
|
|
renderInfo.changeset.clear();
|
|
renderer.update(bar, renderInfo);
|
|
renderer.onMouseDownEnd(labels, renderInfo.changeset);
|
|
workPackageTimeline.refreshView();
|
|
} else if (!renderInfo.changeset.empty) {
|
|
// Persist the changes
|
|
saveWorkPackage(renderInfo.changeset)
|
|
.finally(() => {
|
|
renderInfo.changeset.clear();
|
|
renderer.onMouseDownEnd(labels, renderInfo.changeset);
|
|
workPackageTimeline.refreshView();
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
function saveWorkPackage(changeset:WorkPackageChangeset) {
|
|
return loadingIndicator.table.promise = changeset.save()
|
|
.then((wp) => {
|
|
wpNotificationsService.showSave(wp);
|
|
wpTableRefresh.request(true, `Moved work package ${changeset.workPackage.id} through timeline`);
|
|
})
|
|
.catch((error) => {
|
|
wpNotificationsService.handleErrorResponse(error, renderInfo.workPackage);
|
|
});
|
|
}
|
|
}
|
|
|
|
|