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.

227 lines
7.8 KiB

let geom = [];
2 years ago
gantt.ajax.get({
url: `${base_url}activity/${ganttId}/${proyekId}/get`,
headers: {
"Content-Type": "application/json",
"Authorization": `Bearer ${token}`
}
}).then(function (xhr) {
let data = {};
1 year ago
let response = xhr.responseText;
2 years ago
let obj = JSON.parse(response);
data['data'] = obj.data.data;
data['links'] = obj.data.links;
// check if baseline has been set
if (data.data && data.data.length > 0) {
if (data.data[0].planned_start !== null && data.data[0].planned_end !== null) {
isBaselineSet = true;
}
else {
isBaselineSet = false;
}
}
1 year ago
geom = [];
data.data.forEach(element => {
geom.push({
"activity_id": element.id,
"geom": element.geom
})
});
gantt.silent(function () {
gantt.parse(data);
getGanttOpen();
});
1 year ago
if (Date.now() < timestamp) {
gantt.ajax.post({
headers: {
"Content-Type": "application/json",
"Authorization": `Bearer ${token}`
},
url: `${base_url}activity/import-update`,
dataType: "json",
data: JSON.stringify(allTasks)
}).then(function (response) {
let res = response.responseText
res = JSON.parse(res)
if (res) {
refresData();
}
});
}
2 years ago
});
1 year ago
function refresData(id) {
console.log("refres triggered!!");
// Store the current scroll position
var scrollState = {
x: gantt.getScrollState().x,
y: gantt.getScrollState().y
};
2 years ago
gantt.ajax.get({
url: `${base_url}activity/${ganttId}/${proyekId}/get`,
headers: {
"Content-Type": "application/json",
"Authorization": `Bearer ${token}`
}
}).then(function (xhr) {
gantt.clearAll();
2 years ago
let data = {};
1 year ago
let response = xhr.responseText;
2 years ago
let obj = JSON.parse(response);
data['data'] = obj.data.data;
data['links'] = obj.data.links;
1 year ago
geom = [];
data.data.forEach(element => {
geom.push({
"activity_id": element.id,
"geom": element.geom
})
});
gantt.silent(function () {
gantt.parse(data);
getGanttOpen();
});
1 year ago
if (id) {
if (gantt.isTaskExists(id)) {
2 years ago
expandTask();
}
2 years ago
}
// Restore the scroll position
gantt.scrollTo(scrollState.x, scrollState.y);
1 year ago
2 years ago
});
}
// entity - "task"|"link"
// action - "create"|"update"|"delete"
// data - an object with task or link data
// id – the id of a processed object (task or link)
1 year ago
var dp = gantt.createDataProcessor(function (entity, action, data, id) {
switch (action) {
2 years ago
case "create":
1 year ago
if (entity == "task") {
2 years ago
data['proyek_id'] = proyekId;
//TODO : Possible end date bug
2 years ago
data['start_date'] = `${data.start_date}+07`;
let endDate = moment(data.end_date, "YYYY-MM-DD");
1 year ago
data['end_date'] = endDate.format("YYYY-MM-DD") + " 23:59:59+07";
1 year ago
let newDuration = gantt.calculateDuration({
1 year ago
start_date: new Date(data['start_date']),
end_date: new Date(data['end_date'])
1 year ago
})
data['duration'] = newDuration;
2 years ago
1 year ago
if (data && data.parent) {
2 years ago
data['parent_id'] = data.parent;
}
}
data['version_gantt_id'] = ganttId;
return gantt.ajax.post({
headers: {
1 year ago
"Content-Type": "application/json",
"Authorization": `Bearer ${token}`
2 years ago
},
url: base_url + entity,
1 year ago
data: JSON.stringify(data)
}).then(function (response) {
2 years ago
let res = response.responseText
res = JSON.parse(res)
1 year ago
if (entity == "link") {
2 years ago
gantt.changeLinkId(id, res.tid);
1 year ago
} else if (entity == "task") {
2 years ago
gantt.changeTaskId(id, res.tid);
}
});
1 year ago
break;
2 years ago
case "update":
1 year ago
if (entity == "task") {
// let startDate = moment(data.start_date, "YYYY-MM-DD").subtract(1, "days");
let startDate = moment(data.start_date, "YYYY-MM-DD");
// data['start_date'] = startDate.format("YYYY-MM-DD")+" 00:00:00+07";
let endDate = moment(data.end_date, "YYYY-MM-DD");
1 year ago
if (startDate > endDate) {
gantt.alert({
title: "Peringatan",
type: "alert-error",
text: "Tanggal selesai tidak bisa sebelum tanggal mulai!"
});
data['end_date'] = data['start_date'];
refresData(id);
return;
}
1 year ago
if (data && data.parent) {
2 years ago
data['parent_id'] = data.parent;
}
1 year ago
Object.keys(data).forEach(function (key) {
if (data[key] == "") {
data[key] = null;
2 years ago
}
});
}
1 year ago
let newStart = new Date(data['start_date']);
let newEnd = new Date(data['end_date']);
if (data['start_date'] && data['end_date']) {
data['duration'] = gantt.calculateDuration({
start_date: newStart,
end_date: newEnd
1 year ago
});
1 year ago
}
data['geom'] = geom.find(obj => obj.activity_id == id)?.geom;
2 years ago
return gantt.ajax.put({
headers: {
1 year ago
"Content-Type": "application/json",
"Authorization": `Bearer ${token}`
2 years ago
},
url: base_url + entity + "/" + id,
1 year ago
data: JSON.stringify(data)
}).then(function (response) {
if (entity == "task") {
2 years ago
let parent = data.parent;
let responseText = JSON.parse(response.responseText)
let resData = responseText
let updateBobot = resData.update_bobot || false
1 year ago
if (updateBobot) {
1 year ago
if (parent && parent > 0) {
updateActivity(parent);
}
refresData(id);
1 year ago
} else if (parent && parent > 0) {
1 year ago
updateActivity(parent);
2 years ago
}
}
});
1 year ago
break;
2 years ago
case "delete":
return gantt.ajax.del({
headers: {
1 year ago
"Authorization": `Bearer ${token}`
2 years ago
},
url: base_url + entity + "/" + id
1 year ago
}).then(function (response) {
if (entity == "task") {
2 years ago
let parent = data.parent;
1 year ago
if (parent && parent > 0) {
2 years ago
let children = gantt.getChildren(parent);
updateActivity(parent);
1 year ago
if (children && children.length > 0) {
2 years ago
1 year ago
} else {
if (gantt.isTaskExists(parent)) {
2 years ago
gantt.getTask(parent).type = "task";
gantt.updateTask(parent);
}
}
}
}
});
1 year ago
break;
}
});