Skip to content
Snippets Groups Projects
Commit 7e52cc4e authored by Rachel Gaubil's avatar Rachel Gaubil
Browse files

Merge branch 'timeline' into 'main'

[fix + refa] fix first line which was not collapsing + refa titleList management

See merge request !56
parents 629dd8b6 2fa5c666
No related branches found
No related tags found
1 merge request!56[fix + refa] fix first line which was not collapsing + refa titleList management
let handler = { let handler = {
// listReigns: "../static/json/list_reigns_sauv.json",
listReigns: "../static/json/list_reigns.json", listReigns: "../static/json/list_reigns.json",
copyListReigns: Object(), copyListReigns: Object(),
items: new vis.DataSet(), items: new vis.DataSet(),
groups: new vis.DataSet(), groups: new vis.DataSet(),
titlesList: ["Roi de France", titlesGroup: [
"Roi de France",
"Roi des Francs à la fin du IVe siècle",
"Roi des Francs"
],
titlesList: [
"Roi de France",
"Roi des Francs à la fin du IVe siècle", "Roi des Francs à la fin du IVe siècle",
"Roi des Francs", "Roi des Francs",
"Roi des Francs saliens", "Roi des Francs saliens",
...@@ -17,6 +22,7 @@ let handler = { ...@@ -17,6 +22,7 @@ let handler = {
"Roi des Francs d'Austrasie et de Bourgogne", "Roi des Francs d'Austrasie et de Bourgogne",
"Roi des Lombards" "Roi des Lombards"
], ],
titlesId: {},
kingsList: [], kingsList: [],
// liste des reignes traités pour éviter les doublons quand deux mêmes règnes // liste des reignes traités pour éviter les doublons quand deux mêmes règnes
reignIds: [], reignIds: [],
...@@ -28,19 +34,32 @@ let handler = { ...@@ -28,19 +34,32 @@ let handler = {
return date; return date;
}, },
init: function() { init: function() {
style: 'color: red; top: 0px !important;' // initiate titlesId ("reignName": groupId)
titleCnt = 1;
for(var i = 0; i < handler.titlesList.length; i++){
if (handler.titlesGroup.includes(handler.titlesList[i])){
handler.titlesId[handler.titlesList[i]] = 1;
}
else {
titleCnt += 1;
handler.titlesId[handler.titlesList[i]] = titleCnt;
}
}
handler.groups.add({ handler.groups.add({
id: 1, id: 1,
content: "Roi de France / Roi des Francs" content: "Roi de France / Roi des Francs",
subgroupStack: {'severalReigns': true, "oneReign": false}
}); });
// ATTENTION : change si titlesList change (titleNb bouge et id aussi sûrement) for (var i = 0; i < handler.titlesList.length; i++) {
for (var titleNb = 3; titleNb < handler.titlesList.length; titleNb++) { var id = handler.titlesId[handler.titlesList[i]];
handler.groups.add({ if (id != 1){
id: titleNb-1, handler.groups.add({
content: handler.titlesList[titleNb], id: id,
subgroupStack: {'severalReigns': true, "oneReign": false} content: handler.titlesList[i],
}); subgroupStack: {'severalReigns': true, "oneReign": false}
});
}
} }
$.get(handler.listReigns, function(reigns) { $.get(handler.listReigns, function(reigns) {
...@@ -78,25 +97,16 @@ let handler = { ...@@ -78,25 +97,16 @@ let handler = {
if (start == copyStart && end == copyEnd && reigns[i]["title"] == copyTitle) { if (start == copyStart && end == copyEnd && reigns[i]["title"] == copyTitle) {
severalReigns = true; severalReigns = true;
} }
// faire un background pour tous sauf les deux en tag ?
} }
// list kings to have one color per king // list kings to have one color per king
if (handler.kingsList.findIndex((element) => element == content) == -1) { if (handler.kingsList.findIndex((element) => element == content) == -1) {
handler.kingsList.push(content); handler.kingsList.push(content);
} }
kingNb = handler.kingsList.findIndex((element) => element == content)+1; kingNb = handler.kingsList.findIndex((element) => element == content)+1;
for (var j = 0; j < handler.titlesList.length; j++) { for (var j = 0; j < handler.titlesList.length; j++) {
var groupId = ""; var groupId = handler.titlesId[handler.titlesList[j]];
// ATTENTION : peut changer si titlesList change
if (handler.titlesList[j] == "Roi de France" || handler.titlesList[j] == "Roi des Francs" || handler.titlesList[j] == "Roi des Francs à la fin du IVe siècle") {
groupId = 1;
} else {
groupId = j;
}
if (reigns[i]["title"] == handler.titlesList[j]) { if (reigns[i]["title"] == handler.titlesList[j]) {
if (severalReigns) { if (severalReigns) {
handler.items.add({ handler.items.add({
...@@ -124,10 +134,8 @@ let handler = { ...@@ -124,10 +134,8 @@ let handler = {
} }
break; break;
} }
} }
} }
} }
} }
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment