gantt-task-react-powern 0.4.79 → 0.4.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/gantt/gantt.d.ts +1 -1
- package/dist/index.js +54 -41
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +54 -41
- package/dist/index.modern.js.map +1 -1
- package/dist/types/bar-task.d.ts +1 -0
- package/dist/types/public-types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5,4 +5,4 @@ export declare function topologicalOrderingHelper(taskID: string, taskMap: {}, s
|
|
|
5
5
|
export declare function getCriticalPaths(leafTasks: Task[]): any[][];
|
|
6
6
|
export declare function computeCriticalPath(taskID: string, taskMap: {}): void;
|
|
7
7
|
export declare function uncolorAll(tasks: Task[]): void;
|
|
8
|
-
export declare function colorPath(path: Task[], color: string, tasks: Task[]): void;
|
|
8
|
+
export declare function colorPath(path: Task[], color: string, tasks: Task[], criticalPathType: string): void;
|
package/dist/index.js
CHANGED
|
@@ -442,7 +442,7 @@ var TaskListTableDefault = function TaskListTableDefault(_ref) {
|
|
|
442
442
|
}, tasks.map(function (t) {
|
|
443
443
|
var expanderSymbol = "";
|
|
444
444
|
|
|
445
|
-
if (!leafTaskIds.has(t.id)) {
|
|
445
|
+
if (!(leafTaskIds.has(t.id) || t.type === "milestone")) {
|
|
446
446
|
if (t.hideChildren === false) {
|
|
447
447
|
expanderSymbol = "▼";
|
|
448
448
|
} else if (t.hideChildren === true) {
|
|
@@ -491,7 +491,7 @@ var TaskListTableDefault = function TaskListTableDefault(_ref) {
|
|
|
491
491
|
style: {
|
|
492
492
|
paddingLeft: t.depth * 4 + "px"
|
|
493
493
|
}
|
|
494
|
-
}, !leafTaskIds.has(t.id) ? React__default.createElement("div", {
|
|
494
|
+
}, !(leafTaskIds.has(t.id) || t.type === "milestone") ? React__default.createElement("div", {
|
|
495
495
|
className: styles$1.taskListExpander,
|
|
496
496
|
onClick: function onClick() {
|
|
497
497
|
return onExpanderClick(t);
|
|
@@ -2519,44 +2519,51 @@ var TaskGanttContent = function TaskGanttContent(_ref) {
|
|
|
2519
2519
|
}
|
|
2520
2520
|
};
|
|
2521
2521
|
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
className: "arrows"
|
|
2526
|
-
}, tasks.map(function (_task) {
|
|
2527
|
-
var task = _task.start.getTime() > 0 && _task.end.getTime() > 0 ? _task : undefined;
|
|
2522
|
+
var getArrows = function getArrows(isCritical, criticalPathType) {
|
|
2523
|
+
return tasks.flatMap(function (_task) {
|
|
2524
|
+
var task = _task.start.getTime() > 0 && _task.end.getTime() > 0 ? _task : undefined;
|
|
2528
2525
|
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2526
|
+
if (!task) {
|
|
2527
|
+
return [React__default.createElement("g", {
|
|
2528
|
+
key: _task.id + (isCritical ? "-critical" : "-normal"),
|
|
2529
|
+
style: {
|
|
2530
|
+
height: taskHeight
|
|
2531
|
+
}
|
|
2532
|
+
})];
|
|
2533
|
+
}
|
|
2537
2534
|
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2535
|
+
return task.barChildren.map(function (child) {
|
|
2536
|
+
if (task.x2 > task.x1 || task.actualx2 > task.actualx1) {
|
|
2537
|
+
var _task$criticalPathArr;
|
|
2538
|
+
|
|
2539
|
+
var criticalTask = (_task$criticalPathArr = task.criticalPathArrows) === null || _task$criticalPathArr === void 0 ? void 0 : _task$criticalPathArr.find(function (arrow) {
|
|
2540
|
+
return arrow.taskId === tasks[child.index].id && (!!arrow.criticalPathType ? arrow.criticalPathType === criticalPathType : !criticalPathType);
|
|
2541
|
+
});
|
|
2542
|
+
|
|
2543
|
+
if (!!criticalTask === isCritical) {
|
|
2544
|
+
return React__default.createElement(Arrow, {
|
|
2545
|
+
key: "Arrow from " + task.id + " to " + tasks[child.index].id + (isCritical ? "-critical" : ""),
|
|
2546
|
+
taskFrom: task,
|
|
2547
|
+
taskTo: tasks[child.index],
|
|
2548
|
+
rowHeight: rowHeight,
|
|
2549
|
+
taskHeight: taskHeight,
|
|
2550
|
+
arrowIndent: arrowIndent,
|
|
2551
|
+
rtl: rtl,
|
|
2552
|
+
arrowColor: (criticalTask === null || criticalTask === void 0 ? void 0 : criticalTask.arrowColor) || "#808080"
|
|
2553
|
+
});
|
|
2554
|
+
}
|
|
2556
2555
|
}
|
|
2557
|
-
|
|
2556
|
+
|
|
2557
|
+
return null;
|
|
2558
|
+
}).filter(Boolean);
|
|
2558
2559
|
});
|
|
2559
|
-
}
|
|
2560
|
+
};
|
|
2561
|
+
|
|
2562
|
+
return React__default.createElement("g", {
|
|
2563
|
+
className: "content"
|
|
2564
|
+
}, React__default.createElement("g", {
|
|
2565
|
+
className: "arrows"
|
|
2566
|
+
}, getArrows(false), getArrows(true, "secondary"), getArrows(true, "primary")), React__default.createElement("g", {
|
|
2560
2567
|
className: "bar",
|
|
2561
2568
|
fontFamily: fontFamily,
|
|
2562
2569
|
fontSize: fontSize
|
|
@@ -2882,8 +2889,8 @@ var Gantt = function Gantt(_ref) {
|
|
|
2882
2889
|
uncolorAll(tasks);
|
|
2883
2890
|
|
|
2884
2891
|
if (scheduleType !== "lookAhead") {
|
|
2885
|
-
colorPath(secondaryPath, "#00ff00", tasks);
|
|
2886
|
-
colorPath(primaryPath, "#ff0000", tasks);
|
|
2892
|
+
colorPath(secondaryPath, "#00ff00", tasks, "secondary");
|
|
2893
|
+
colorPath(primaryPath, "#ff0000", tasks, "primary");
|
|
2887
2894
|
}
|
|
2888
2895
|
|
|
2889
2896
|
setBarTasks(convertToBarTasks(filteredTasks, newDates, columnWidth, rowHeight, taskHeight, barCornerRadius, handleWidth, rtl, barProgressColor, barProgressSelectedColor, barBackgroundColor, barBackgroundSelectedColor, projectProgressColor, projectProgressSelectedColor, projectBackgroundColor, projectBackgroundSelectedColor, milestoneBackgroundColor, milestoneBackgroundSelectedColor));
|
|
@@ -3326,7 +3333,7 @@ function uncolorAll(tasks) {
|
|
|
3326
3333
|
delete task.criticalPathArrows;
|
|
3327
3334
|
});
|
|
3328
3335
|
}
|
|
3329
|
-
function colorPath(path, color, tasks) {
|
|
3336
|
+
function colorPath(path, color, tasks, criticalPathType) {
|
|
3330
3337
|
for (var i = 0; i < path.length; i++) {
|
|
3331
3338
|
var longestIDLength = 0;
|
|
3332
3339
|
var longestTask = void 0;
|
|
@@ -3369,10 +3376,16 @@ function colorPath(path, color, tasks) {
|
|
|
3369
3376
|
var arrow = arrows.find(function (arrow) {
|
|
3370
3377
|
return arrow.taskId === path[_i7 + 1].id;
|
|
3371
3378
|
});
|
|
3372
|
-
|
|
3379
|
+
|
|
3380
|
+
if (arrow) {
|
|
3381
|
+
arrow.arrowColor = color;
|
|
3382
|
+
arrow.criticalPathType = criticalPathType;
|
|
3383
|
+
} else arrows.push({
|
|
3373
3384
|
taskId: path[_i7 + 1].id,
|
|
3374
|
-
arrowColor: color
|
|
3385
|
+
arrowColor: color,
|
|
3386
|
+
criticalPathType: criticalPathType
|
|
3375
3387
|
});
|
|
3388
|
+
|
|
3376
3389
|
taskFromTasks.criticalPathArrows = arrows;
|
|
3377
3390
|
}
|
|
3378
3391
|
};
|