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.
258 lines
10 KiB
258 lines
10 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 {WorkPackageChangeset} from '../../../wp-edit-form/work-package-changeset';
|
|
import {WorkPackageNotificationService} from '../../../wp-edit/wp-notification.service';
|
|
import {WorkPackageTableRefreshService} from '../../wp-table-refresh-request.service';
|
|
import {WorkPackageTimelineTableController} from '../container/wp-timeline-container.directive';
|
|
import {RenderInfo} from '../wp-timeline';
|
|
import {TimelineCellRenderer} from './timeline-cell-renderer';
|
|
import {WorkPackageCellLabels} from './wp-timeline-cell';
|
|
import Moment = moment.Moment;
|
|
import {$injectNow} from '../../../angular/angular-injector-bridge.functions';
|
|
import {States} from '../../../states.service';
|
|
import {QueryDmService} from '../../../api/api-v3/hal-resource-dms/query-dm.service';
|
|
|
|
export 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.timelinecell', () => 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.timelinecell', createMouseMoveFn(direction));
|
|
jBody.on('keyup.timelinecell', keyPressFn);
|
|
jBody.on('mouseup.timelinecell', () => 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, labels, 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;
|
|
}
|
|
|
|
if (!(wp.isLeaf && renderer.canMoveDates(wp))) {
|
|
cell.style.cursor = 'not-allowed';
|
|
return;
|
|
}
|
|
|
|
// placeholder logic
|
|
cell.style.cursor = '';
|
|
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, labels, 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, labels, renderInfo);
|
|
};
|
|
|
|
cell.onmouseleave = () => {
|
|
deactivate(true);
|
|
};
|
|
|
|
cell.onmouseup = () => {
|
|
deactivate(false);
|
|
};
|
|
|
|
jBody.on('keyup.timelinecell', 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('.timelinecell');
|
|
workPackageTimeline.resetCursor();
|
|
mouseDownStartDay = null;
|
|
dateStates = {};
|
|
|
|
// const renderInfo = getRenderInfo();
|
|
if (cancelled || renderInfo.changeset.empty) {
|
|
renderInfo.changeset.clear();
|
|
renderer.update(bar, labels, renderInfo);
|
|
renderer.onMouseDownEnd(labels, renderInfo.changeset);
|
|
workPackageTimeline.refreshView();
|
|
} else {
|
|
// Persist the changes
|
|
saveWorkPackage(renderInfo.changeset)
|
|
.finally(() => {
|
|
renderInfo.changeset.clear();
|
|
renderer.onMouseDownEnd(labels, renderInfo.changeset);
|
|
workPackageTimeline.refreshView();
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
function saveWorkPackage(changeset:WorkPackageChangeset) {
|
|
const queryDm:QueryDmService = $injectNow('QueryDm');
|
|
const states:States = $injectNow('states');
|
|
|
|
// Remmeber the time before saving the work package to know which work packages to update
|
|
const updatedAt = moment().toISOString();
|
|
|
|
return loadingIndicator.table.promise = changeset.save()
|
|
.then((wp) => {
|
|
wpNotificationsService.showSave(wp);
|
|
const ids = _.map(states.table.rendered.value!, row => row.workPackageId);
|
|
loadingIndicator.table.promise =
|
|
queryDm.loadIdsUpdatedSince(ids, updatedAt).then(workPackageCollection => {
|
|
wpCacheService.updateWorkPackageList(workPackageCollection.elements);
|
|
|
|
wpTableRefresh.request(`Moved work package ${wp.id} through timeline`);
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
wpNotificationsService.handleErrorResponse(error, renderInfo.workPackage);
|
|
});
|
|
}
|
|
}
|
|
|
|
|