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.
153 lines
4.4 KiB
153 lines
4.4 KiB
import {WorkPackageResourceInterface} from "../../../api/api-v3/hal-resources/work-package-resource.service";
|
|
import {RenderInfo, calculatePositionValueForDayCount, timelineElementCssClass} from "../wp-timeline";
|
|
|
|
const classNameLeftHandle = "leftHandle";
|
|
const classNameRightHandle = "rightHandle";
|
|
|
|
interface CellDateMovement {
|
|
// Target values to move work package to
|
|
startDate?: moment.Moment;
|
|
dueDate?: moment.Moment;
|
|
}
|
|
|
|
export class TimelineCellRenderer {
|
|
|
|
public get type():string {
|
|
return 'bar';
|
|
}
|
|
|
|
public get fallbackColor():string {
|
|
return '#8CD1E8';
|
|
}
|
|
|
|
/**
|
|
* Assign changed dates to the work package.
|
|
* For generic work packages, assigns start and due date.
|
|
*
|
|
*/
|
|
public assignDateValues(wp:WorkPackageResourceInterface, dates:CellDateMovement) {
|
|
this.assignDate(wp, 'startDate', dates.startDate);
|
|
this.assignDate(wp, 'dueDate', dates.dueDate);
|
|
}
|
|
|
|
/**
|
|
* Restore the original date, if any was set.
|
|
*/
|
|
public onCancel(wp:WorkPackageResourceInterface, dates:CellDateMovement) {
|
|
wp.restoreFromPristine('startDate');
|
|
wp.restoreFromPristine('dueDate');
|
|
}
|
|
|
|
/**
|
|
* Handle movement by <delta> days of the work package to either (or both) edge(s)
|
|
* depending on which initial date was set.
|
|
*/
|
|
public onDaysMoved(wp:WorkPackageResourceInterface, delta:number) {
|
|
const initialStartDate = wp.$pristine['startDate'];
|
|
const initialDueDate = wp.$pristine['dueDate'];
|
|
let dates:CellDateMovement = {};
|
|
|
|
if (initialStartDate) {
|
|
dates.startDate = moment(initialStartDate).add(delta, "days");
|
|
}
|
|
|
|
if (initialDueDate) {
|
|
dates.dueDate = moment(initialDueDate).add(delta, "days");
|
|
}
|
|
|
|
return dates;
|
|
}
|
|
|
|
public onMouseDown(ev: MouseEvent, renderInfo:RenderInfo) {
|
|
let dates:CellDateMovement = {};
|
|
|
|
// Update the cursor to
|
|
if (jQuery(ev.target).hasClass(classNameLeftHandle)) {
|
|
this.forceCursor('w-resize');
|
|
} else if (jQuery(ev.target).hasClass(classNameRightHandle)) {
|
|
this.forceCursor('e-resize');
|
|
} else {
|
|
this.forceCursor('ew-resize');
|
|
}
|
|
|
|
if (!jQuery(ev.target).hasClass(classNameRightHandle)) {
|
|
renderInfo.workPackage.storePristine('startDate');
|
|
}
|
|
if (!jQuery(ev.target).hasClass(classNameLeftHandle)) {
|
|
renderInfo.workPackage.storePristine('dueDate');
|
|
}
|
|
|
|
return dates;
|
|
}
|
|
|
|
/**
|
|
* @return true, if the element should still be displayed.
|
|
* false, if the element must be removed from the timeline.
|
|
*/
|
|
public update(element: HTMLDivElement, wp: WorkPackageResourceInterface, renderInfo: RenderInfo): boolean {
|
|
// abort if no start or due date
|
|
if (!wp.startDate || !wp.dueDate) {
|
|
return false;
|
|
}
|
|
|
|
// general settings - bar
|
|
element.style.marginLeft = renderInfo.viewParams.scrollOffsetInPx + "px";
|
|
element.style.backgroundColor = this.typeColor(renderInfo.workPackage);
|
|
|
|
const viewParams = renderInfo.viewParams;
|
|
const start = moment(wp.startDate as any);
|
|
const due = moment(wp.dueDate as any);
|
|
|
|
// offset left
|
|
const offsetStart = start.diff(viewParams.dateDisplayStart, "days");
|
|
element.style.left = calculatePositionValueForDayCount(viewParams, offsetStart);
|
|
|
|
// duration
|
|
const duration = due.diff(start, "days") + 1;
|
|
element.style.width = calculatePositionValueForDayCount(viewParams, duration);
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Render the generic cell element, a bar spanning from
|
|
* start to due date.
|
|
*/
|
|
public render(renderInfo:RenderInfo):HTMLDivElement {
|
|
const bar = document.createElement("div");
|
|
const left = document.createElement("div");
|
|
const right = document.createElement("div");
|
|
|
|
bar.className = timelineElementCssClass + " " + this.type;
|
|
left.className = classNameLeftHandle;
|
|
right.className = classNameRightHandle;
|
|
|
|
bar.appendChild(left);
|
|
bar.appendChild(right);
|
|
|
|
return bar;
|
|
}
|
|
|
|
protected typeColor(wp: WorkPackageResourceInterface):string {
|
|
let type = wp.type.state.getCurrentValue();
|
|
if (type) {
|
|
return type.color;
|
|
}
|
|
|
|
return this.fallbackColor;
|
|
}
|
|
|
|
protected assignDate(wp: WorkPackageResourceInterface, attributeName:string, value: moment.Moment) {
|
|
if (value) {
|
|
wp[attributeName] = value.format("YYYY-MM-DD") as any;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Force the cursor to the given cursor type.
|
|
*/
|
|
protected forceCursor(cursor:string) {
|
|
jQuery(".hascontextmenu").css("cursor", cursor);
|
|
jQuery("." + timelineElementCssClass).css("cursor", cursor);
|
|
}
|
|
}
|
|
|