|
|
@@ -1,18 +1,42 @@
|
|
|
|
function customTimeline() {
|
|
|
|
function customTimeline() {
|
|
|
|
|
|
|
|
let colors, titles, partTitles;
|
|
|
|
|
|
|
|
let partDurations = [];
|
|
|
|
|
|
|
|
let totalTime;
|
|
|
|
|
|
|
|
let tlContainer, tlContainerHeight;
|
|
|
|
|
|
|
|
let partBlockHeights = [];
|
|
|
|
|
|
|
|
let activePartIndex = 0;
|
|
|
|
|
|
|
|
let steps = {
|
|
|
|
|
|
|
|
tlElSteps: [],
|
|
|
|
|
|
|
|
scrollSteps: []
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
let previousScroll;
|
|
|
|
|
|
|
|
let grabbing = false;
|
|
|
|
|
|
|
|
let titresFrise;
|
|
|
|
|
|
|
|
let cursor = document.querySelector('#cursor');
|
|
|
|
|
|
|
|
let titresCursor;
|
|
|
|
|
|
|
|
let partRects;
|
|
|
|
|
|
|
|
let isScrollingFromGrab = false;
|
|
|
|
|
|
|
|
let prevPartIndex = 0;
|
|
|
|
|
|
|
|
let lastCallTimestamp = 0;
|
|
|
|
|
|
|
|
let timestampDebounce = 200;
|
|
|
|
|
|
|
|
|
|
|
|
// titres de parties dans le tableau
|
|
|
|
// titres de parties dans le tableau
|
|
|
|
let mainpartTitless = document.querySelectorAll('.isMainPart');
|
|
|
|
function setPartTitlesInPartition() {
|
|
|
|
for (let mainpartTitles of mainpartTitless) {
|
|
|
|
let mainpartTitles = document.querySelectorAll('.isMainPart');
|
|
|
|
if (mainpartTitles.nextElementSibling.classList.contains('isSubPart')) {
|
|
|
|
for (let mainpartTitle of mainpartTitles) {
|
|
|
|
mainpartTitles.firstElementChild.firstElementChild.style.height = "1.5rem";
|
|
|
|
if (mainpartTitle.nextElementSibling.classList.contains('isSubPart')) {
|
|
|
|
mainpartTitles.firstElementChild.style.marginBottom = "-0.25rem";
|
|
|
|
mainpartTitle.firstElementChild.firstElementChild.style.height = "1.5rem";
|
|
|
|
mainpartTitles.style.borderBottom = "0";
|
|
|
|
mainpartTitle.firstElementChild.style.marginBottom = "-0.25rem";
|
|
|
|
mainpartTitles.style.paddingBottom = "0";
|
|
|
|
mainpartTitle.style.borderBottom = "0";
|
|
|
|
mainpartTitles.nextElementSibling.style.paddingTop = "0";
|
|
|
|
mainpartTitle.style.paddingBottom = "0";
|
|
|
|
|
|
|
|
mainpartTitle.nextElementSibling.style.paddingTop = "0";
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// couleurs titres
|
|
|
|
// couleurs titres
|
|
|
|
let colors = [
|
|
|
|
function setPartsColors() {
|
|
|
|
|
|
|
|
colors = [
|
|
|
|
{'red' : 'cf0118'},
|
|
|
|
{'red' : 'cf0118'},
|
|
|
|
{'blue1': '0101c4'},
|
|
|
|
{'blue1': '0101c4'},
|
|
|
|
{'blue2': '01049e'},
|
|
|
|
{'blue2': '01049e'},
|
|
|
@@ -27,8 +51,8 @@ function customTimeline() {
|
|
|
|
{'pink1': 'cf0118'},
|
|
|
|
{'pink1': 'cf0118'},
|
|
|
|
{'pink2': 'a10418'}
|
|
|
|
{'pink2': 'a10418'}
|
|
|
|
];
|
|
|
|
];
|
|
|
|
let titles = document.querySelectorAll('.isMainPart, .isSubPart');
|
|
|
|
titles = document.querySelectorAll('.isMainPart, .isSubPart');
|
|
|
|
let partTitles = [];
|
|
|
|
partTitles = [];
|
|
|
|
for (let title of titles) {
|
|
|
|
for (let title of titles) {
|
|
|
|
if (!title.nextElementSibling.classList.contains('isSubPart')) {
|
|
|
|
if (!title.nextElementSibling.classList.contains('isSubPart')) {
|
|
|
|
partTitles.push(title);
|
|
|
|
partTitles.push(title);
|
|
|
@@ -40,6 +64,7 @@ function customTimeline() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
partTitles[i].firstElementChild.firstElementChild.style.backgroundColor = "#" + Object.values(colors[i])[0];
|
|
|
|
partTitles[i].firstElementChild.firstElementChild.style.backgroundColor = "#" + Object.values(colors[i])[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// set parts rectangles
|
|
|
|
// set parts rectangles
|
|
|
|
function convertToSeconds(timeStr) {
|
|
|
|
function convertToSeconds(timeStr) {
|
|
|
@@ -55,6 +80,7 @@ function customTimeline() {
|
|
|
|
return parseInt(hourStr) * 3600 + parseInt(min) * 60 + parseInt(sec);
|
|
|
|
return parseInt(hourStr) * 3600 + parseInt(min) * 60 + parseInt(sec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getPartsTimes() {
|
|
|
|
let partTimesNodes = document.querySelectorAll('body #app main tbody tr:not(.isContentPart) + tr:not(.isSubPart) td:first-of-type');
|
|
|
|
let partTimesNodes = document.querySelectorAll('body #app main tbody tr:not(.isContentPart) + tr:not(.isSubPart) td:first-of-type');
|
|
|
|
let partTimes = Array.from(partTimesNodes);
|
|
|
|
let partTimes = Array.from(partTimesNodes);
|
|
|
|
for (let i = 0; i < partTimes.length; i++) {
|
|
|
|
for (let i = 0; i < partTimes.length; i++) {
|
|
|
@@ -62,39 +88,31 @@ function customTimeline() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let lastTime = document.querySelectorAll('body #app main tbody tr:last-of-type td:first-of-type');
|
|
|
|
let lastTime = document.querySelectorAll('body #app main tbody tr:last-of-type td:first-of-type');
|
|
|
|
partTimes.push(convertToSeconds(lastTime[0].innerText));
|
|
|
|
partTimes.push(convertToSeconds(lastTime[0].innerText));
|
|
|
|
let partDurations = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < partTimes.length - 1; i++) {
|
|
|
|
for (let i = 0; i < partTimes.length - 1; i++) {
|
|
|
|
partDurations.push(partTimes[i + 1] - partTimes[i]);
|
|
|
|
partDurations.push(partTimes[i + 1] - partTimes[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let totalTime = convertToSeconds(lastTime[0].innerText);
|
|
|
|
totalTime = convertToSeconds(lastTime[0].innerText);
|
|
|
|
|
|
|
|
}
|
|
|
|
let tlContainer, tlContainerHeight;
|
|
|
|
|
|
|
|
let partBlockHeights = [];
|
|
|
|
|
|
|
|
let activePartIndex = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getAllHeights() {
|
|
|
|
function getAllHeights() {
|
|
|
|
partBlockHeights = [];
|
|
|
|
partBlockHeights = [];
|
|
|
|
tlContainer = document.querySelector('#timeline_container');
|
|
|
|
tlContainer = document.querySelector('#timeline_container');
|
|
|
|
let header = document.querySelector('header'), footer = document.querySelector('footer');
|
|
|
|
let header = document.querySelector('header');
|
|
|
|
|
|
|
|
let footer = document.querySelector('footer');
|
|
|
|
tlContainer.style.height = `calc(100vh - ${header.offsetHeight}px - ${footer.offsetHeight}px - 60px)`;
|
|
|
|
tlContainer.style.height = `calc(100vh - ${header.offsetHeight}px - ${footer.offsetHeight}px - 60px)`;
|
|
|
|
tlContainer.style.top = `${document.querySelector('header').offsetHeight + 30}px`;
|
|
|
|
tlContainer.style.top = `${header.offsetHeight + 30}px`;
|
|
|
|
tlContainerHeight = tlContainer.offsetHeight;
|
|
|
|
tlContainerHeight = tlContainer.offsetHeight;
|
|
|
|
for (let partDuration of partDurations) {
|
|
|
|
for (let partDuration of partDurations) {
|
|
|
|
partBlockHeights.push(partDuration / totalTime * tlContainerHeight);
|
|
|
|
partBlockHeights.push(partDuration / totalTime * tlContainerHeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
getAllHeights();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function drawFriseRects() {
|
|
|
|
function drawFriseRects() {
|
|
|
|
for (let i = 0; i < partBlockHeights.length; i++) {
|
|
|
|
for (let i = 0; i < partBlockHeights.length; i++) {
|
|
|
|
let partDiv = document.createElement('div');
|
|
|
|
let partDiv = document.createElement('div');
|
|
|
|
partDiv.style.width = "22px";
|
|
|
|
partDiv.classList.add('tlRectPart');
|
|
|
|
partDiv.style.height = partBlockHeights[i] + "px";
|
|
|
|
partDiv.style.height = partBlockHeights[i] + "px";
|
|
|
|
partDiv.style.backgroundColor = "#" + Object.values(colors[i])[0];
|
|
|
|
partDiv.style.backgroundColor = "#" + Object.values(colors[i])[0];
|
|
|
|
partDiv.style.borderBottom = "solid 1px #010d19";
|
|
|
|
|
|
|
|
partDiv.style.borderTop = "solid 1px #010d19";
|
|
|
|
|
|
|
|
partDiv.style.transition = "width 0.3s ease-out";
|
|
|
|
|
|
|
|
partDiv.style.cursor = "pointer";
|
|
|
|
|
|
|
|
tlContainer.prepend(partDiv);
|
|
|
|
tlContainer.prepend(partDiv);
|
|
|
|
tlContainer.children[0].addEventListener("mouseenter", function() {
|
|
|
|
tlContainer.children[0].addEventListener("mouseenter", function() {
|
|
|
|
let el = tlContainer.children[tlContainer.children.length - 1 - i];
|
|
|
|
let el = tlContainer.children[tlContainer.children.length - 1 - i];
|
|
|
@@ -116,21 +134,8 @@ function customTimeline() {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
drawFriseRects();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.addEventListener('resize', () => {
|
|
|
|
|
|
|
|
while(tlContainer.lastChild) {
|
|
|
|
|
|
|
|
tlContainer.removeChild(tlContainer.lastChild);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
getAllHeights();
|
|
|
|
|
|
|
|
drawFriseRects();
|
|
|
|
|
|
|
|
setPartRects();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// detect if is scrolling
|
|
|
|
// detect if is scrolling
|
|
|
|
|
|
|
|
|
|
|
|
let previousScroll;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function isWindowScrolling() {
|
|
|
|
function isWindowScrolling() {
|
|
|
|
let currentScroll = window.scrollY;
|
|
|
|
let currentScroll = window.scrollY;
|
|
|
|
if (currentScroll !== previousScroll) {
|
|
|
|
if (currentScroll !== previousScroll) {
|
|
|
@@ -142,18 +147,14 @@ function customTimeline() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// titres parties frise
|
|
|
|
// titres parties frise
|
|
|
|
let titreFriseEl = document.createElement('div');
|
|
|
|
function displayTimelineTitles() {
|
|
|
|
|
|
|
|
|
|
|
|
let elements = Array.from(document.querySelectorAll('.isMainPart, .isSubPart'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let mainWithoutSubAfter = [];
|
|
|
|
let mainWithoutSubAfter = [];
|
|
|
|
let mainWithSubAfter = [];
|
|
|
|
let mainWithSubAfter = [];
|
|
|
|
let subWithoutMainBefore = [];
|
|
|
|
let subWithoutMainBefore = [];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let elements = Array.from(document.querySelectorAll('.isMainPart, .isSubPart'));
|
|
|
|
let lastMain = null;
|
|
|
|
let lastMain = null;
|
|
|
|
|
|
|
|
|
|
|
|
let grabbing = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < elements.length; i++) {
|
|
|
|
for (let i = 0; i < elements.length; i++) {
|
|
|
|
let current = elements[i];
|
|
|
|
let current = elements[i];
|
|
|
|
let next = elements[i + 1];
|
|
|
|
let next = elements[i + 1];
|
|
|
@@ -173,7 +174,7 @@ function customTimeline() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
let titresFrise = [...mainWithoutSubAfter, ...mainWithSubAfter, ...subWithoutMainBefore];
|
|
|
|
titresFrise = [...mainWithoutSubAfter, ...mainWithSubAfter, ...subWithoutMainBefore];
|
|
|
|
|
|
|
|
|
|
|
|
titresFrise.sort((a, b) => a.index - b.index);
|
|
|
|
titresFrise.sort((a, b) => a.index - b.index);
|
|
|
|
|
|
|
|
|
|
|
@@ -186,24 +187,27 @@ function customTimeline() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let titreFriseEl = document.createElement('div');
|
|
|
|
|
|
|
|
|
|
|
|
titreFriseEl.setAttribute('id', 'titres_frise');
|
|
|
|
titreFriseEl.setAttribute('id', 'titres_frise');
|
|
|
|
titreFriseEl.innerHTML = `
|
|
|
|
titreFriseEl.innerHTML = `
|
|
|
|
<p class="uppercase">${getCurrentTime(titresFrise[0].el)}</p>
|
|
|
|
<p class="uppercase">${getCurrentTime(titresFrise[0].el)}</p>
|
|
|
|
<p>${titresFrise[0].main}</p>
|
|
|
|
<p>${titresFrise[0].main}</p>
|
|
|
|
<p class="font-authentic-60">${titresFrise[0].sub}</p>
|
|
|
|
<p class="font-authentic-60">${titresFrise[0].sub}</p>
|
|
|
|
`;
|
|
|
|
`;
|
|
|
|
titreFriseEl.style.fontSize = '0.9em';
|
|
|
|
|
|
|
|
titreFriseEl.style.backgroundColor = 'rgba(1, 13, 25, 0.6)';
|
|
|
|
|
|
|
|
titreFriseEl.style.zIndex = '20';
|
|
|
|
|
|
|
|
titreFriseEl.style.position = 'fixed';
|
|
|
|
|
|
|
|
titreFriseEl.style.left = '60px';
|
|
|
|
|
|
|
|
titreFriseEl.style.width = '10vw';
|
|
|
|
|
|
|
|
titreFriseEl.style.lineHeight = '1.2';
|
|
|
|
|
|
|
|
titreFriseEl.style.marginTop = '-8px';
|
|
|
|
|
|
|
|
titreFriseEl.style.top = `${document.querySelector('#timeline_container').getBoundingClientRect().top}px`;
|
|
|
|
titreFriseEl.style.top = `${document.querySelector('#timeline_container').getBoundingClientRect().top}px`;
|
|
|
|
let main = document.querySelector('#main');
|
|
|
|
let main = document.querySelector('#main');
|
|
|
|
main.prepend(titreFriseEl);
|
|
|
|
main.prepend(titreFriseEl);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
titresCursor = document.querySelector('#titres_frise');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
|
|
titreFriseEl.firstElementChild.innerText = getCurrentTime(titresFrise[0].el);
|
|
|
|
|
|
|
|
}, 10);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// création et togle des titres au survol des div de la timeline
|
|
|
|
// création et togle des titres au survol des div de la timeline
|
|
|
|
function drawFixedTitles() {
|
|
|
|
function drawFixedTitles() {
|
|
|
|
let tlContainer = document.querySelector('#timeline_container');
|
|
|
|
let tlContainer = document.querySelector('#timeline_container');
|
|
|
@@ -212,37 +216,17 @@ function customTimeline() {
|
|
|
|
main.prepend(fixedTitlesContainer);
|
|
|
|
main.prepend(fixedTitlesContainer);
|
|
|
|
for (let index = 0; index < titresFrise.length; index++) {
|
|
|
|
for (let index = 0; index < titresFrise.length; index++) {
|
|
|
|
let titreFixedEl = document.createElement('div');
|
|
|
|
let titreFixedEl = document.createElement('div');
|
|
|
|
titreFixedEl.style.position = 'fixed';
|
|
|
|
titreFixedEl.classList.add('tlFixedTitle');
|
|
|
|
titreFixedEl.style.zIndex = 1;
|
|
|
|
|
|
|
|
titreFixedEl.style.display = 'none';
|
|
|
|
|
|
|
|
titreFixedEl.style.opacity = '0';
|
|
|
|
|
|
|
|
titreFixedEl.style.transition = 'opacity 0.3s ease-out';
|
|
|
|
|
|
|
|
titreFixedEl.style.width = '10vw';
|
|
|
|
|
|
|
|
titreFixedEl.style.top = `${tlContainer.children[index].getBoundingClientRect().top - 8}px`;
|
|
|
|
titreFixedEl.style.top = `${tlContainer.children[index].getBoundingClientRect().top - 8}px`;
|
|
|
|
titreFixedEl.style.left = '60px';
|
|
|
|
|
|
|
|
titreFixedEl.style.fontSize = '0.9em';
|
|
|
|
|
|
|
|
titreFixedEl.style.lineHeight = '1.2';
|
|
|
|
|
|
|
|
let titreFixedElContent = document.createElement('p');
|
|
|
|
let titreFixedElContent = document.createElement('p');
|
|
|
|
titreFixedElContent.innerHTML = `
|
|
|
|
titreFixedElContent.innerHTML = `
|
|
|
|
<p>${titresFrise[titresFrise.length - index - 1].main}</p>
|
|
|
|
<p>${titresFrise[titresFrise.length - index - 1].main}</p>
|
|
|
|
<p class="font-authentic-60">${titresFrise[titresFrise.length - index - 1].sub}</p>
|
|
|
|
<p class="font-authentic-60">${titresFrise[titresFrise.length - index - 1].sub}</p>
|
|
|
|
`;
|
|
|
|
`;
|
|
|
|
titreFixedElContent.style.backgroundColor = '#010d19';
|
|
|
|
|
|
|
|
titreFixedEl.append(titreFixedElContent);
|
|
|
|
titreFixedEl.append(titreFixedElContent);
|
|
|
|
let topGradient = document.createElement('div');
|
|
|
|
|
|
|
|
topGradient.style.height = '10px';
|
|
|
|
|
|
|
|
topGradient.style.width = '100%';
|
|
|
|
|
|
|
|
topGradient.style.background = 'linear-gradient(to bottom, transparent, #010d19)';
|
|
|
|
|
|
|
|
titreFixedEl.prepend(topGradient);
|
|
|
|
|
|
|
|
let bottomGradient = document.createElement('div');
|
|
|
|
|
|
|
|
bottomGradient.style.height = '10px';
|
|
|
|
|
|
|
|
bottomGradient.style.width = '100%';
|
|
|
|
|
|
|
|
bottomGradient.style.background = 'linear-gradient(to top, transparent, #010d19)';
|
|
|
|
|
|
|
|
titreFixedEl.append(bottomGradient);
|
|
|
|
|
|
|
|
fixedTitlesContainer.prepend(titreFixedEl);
|
|
|
|
fixedTitlesContainer.prepend(titreFixedEl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
drawFixedTitles();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function toggleTitleHover(elIndex, state) {
|
|
|
|
function toggleTitleHover(elIndex, state) {
|
|
|
|
let fixedTitlesContainer = document.querySelector('#fixedTitlesContainer');
|
|
|
|
let fixedTitlesContainer = document.querySelector('#fixedTitlesContainer');
|
|
|
@@ -260,34 +244,29 @@ function customTimeline() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
|
|
|
|
// ICI IL Y A LE GRAB DU CURSEUR DE LA TL
|
|
|
|
|
|
|
|
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// make the cursor move on scroll
|
|
|
|
// make the cursor move on scroll
|
|
|
|
let cursor = document.querySelector('#cursor');
|
|
|
|
function setupCursor() {
|
|
|
|
cursor.style.top = `${document.querySelector('#timeline_container').getBoundingClientRect().top}px`;
|
|
|
|
cursor.style.top = `${document.querySelector('#timeline_container').getBoundingClientRect().top}px`;
|
|
|
|
cursor.style.cursor = 'grab';
|
|
|
|
cursor.style.cursor = 'grab';
|
|
|
|
let titres = document.querySelector('#titres_frise');
|
|
|
|
titresCursor.style.cursor = 'grab';
|
|
|
|
titres.style.cursor = 'grab';
|
|
|
|
}
|
|
|
|
let partRects;
|
|
|
|
|
|
|
|
function setPartRects() {
|
|
|
|
function setPartRects() {
|
|
|
|
partRects = document.querySelectorAll('#timeline_container div');
|
|
|
|
partRects = document.querySelectorAll('#timeline_container div');
|
|
|
|
partRects = Array.from(partRects);
|
|
|
|
partRects = Array.from(partRects);
|
|
|
|
partRects = partRects.reverse();
|
|
|
|
partRects = partRects.reverse();
|
|
|
|
partRects[0].style.width = '32px';
|
|
|
|
partRects[0].style.width = '32px';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setPartRects();
|
|
|
|
|
|
|
|
document.addEventListener("scroll", () => {
|
|
|
|
document.addEventListener("scroll", () => {
|
|
|
|
if (!grabbing) {
|
|
|
|
if (!grabbing) {
|
|
|
|
displayCurrentPartTitle(getCurrentPartFromScroll());
|
|
|
|
displayCurrentPartTitle(getCurrentPartFromScroll());
|
|
|
|
if (document.documentElement.scrollTop === 0) {
|
|
|
|
if (document.documentElement.scrollTop === 0) {
|
|
|
|
let firstTimeText = document.querySelector('tbody tr:nth-of-type(2) td:first-of-type');
|
|
|
|
let firstTimeText = document.querySelector('tbody tr:nth-of-type(2) td:first-of-type');
|
|
|
|
titres.firstElementChild.innerText = firstTimeText.innerText;
|
|
|
|
titresCursor.firstElementChild.innerText = firstTimeText.innerText;
|
|
|
|
} else if (document.documentElement.scrollTop + window.innerHeight >= document.body.scrollHeight) {
|
|
|
|
} else if (document.documentElement.scrollTop + window.innerHeight >= document.body.scrollHeight) {
|
|
|
|
let lastTimeText = document.querySelector('tbody tr:last-of-type td:first-of-type');
|
|
|
|
let lastTimeText = document.querySelector('tbody tr:last-of-type td:first-of-type');
|
|
|
|
titres.firstElementChild.innerText = lastTimeText.innerText;
|
|
|
|
titresCursor.firstElementChild.innerText = lastTimeText.innerText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
moveCursorFromScroll(getCurrentPartFromScroll());
|
|
|
|
moveCursorFromScroll(getCurrentPartFromScroll());
|
|
|
|
}
|
|
|
|
}
|
|
|
@@ -297,12 +276,7 @@ function customTimeline() {
|
|
|
|
let offsetY;
|
|
|
|
let offsetY;
|
|
|
|
|
|
|
|
|
|
|
|
element.addEventListener('mousedown', (e) => {
|
|
|
|
element.addEventListener('mousedown', (e) => {
|
|
|
|
let elTransformY;
|
|
|
|
let elTransformY = element.style.transform ? +element.style.transform.split('(')[1].split('p')[0] : 0;
|
|
|
|
if (!element.style.transform) {
|
|
|
|
|
|
|
|
elTransformY = 0;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
elTransformY = +element.style.transform.split('(')[1].split('p')[0];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
e.preventDefault();
|
|
|
|
grabbing = true;
|
|
|
|
grabbing = true;
|
|
|
|
offsetY = e.clientY - elTransformY;
|
|
|
|
offsetY = e.clientY - elTransformY;
|
|
|
@@ -311,70 +285,80 @@ function customTimeline() {
|
|
|
|
|
|
|
|
|
|
|
|
document.addEventListener('mousemove', (e) => {
|
|
|
|
document.addEventListener('mousemove', (e) => {
|
|
|
|
if (grabbing) {
|
|
|
|
if (grabbing) {
|
|
|
|
if (e.clientY < tlContainerHeight + tlContainer.offsetTop && e.clientY > tlContainer.offsetTop) {
|
|
|
|
|
|
|
|
const y = e.clientY - offsetY;
|
|
|
|
const y = e.clientY - offsetY;
|
|
|
|
|
|
|
|
if (e.clientY < tlContainerHeight + tlContainer.offsetTop && e.clientY > tlContainer.offsetTop && y > 0) {
|
|
|
|
element.style.transform = `translateY(${y}px)`;
|
|
|
|
element.style.transform = `translateY(${y}px)`;
|
|
|
|
relatedEl.style.transform = `translateY(${y}px)`;
|
|
|
|
relatedEl.style.transform = `translateY(${y}px)`;
|
|
|
|
if (!isNaN(y)) displayCurrentPartTitle(getCurrentPartFromCursor(y));
|
|
|
|
if (!isNaN(y)) displayCurrentPartTitle(getCurrentPartFromCursor(y));
|
|
|
|
} else if (e.clientY < tlContainer.offsetTop + 10) {
|
|
|
|
} else if (e.clientY < tlContainer.offsetTop || y <= 0) {
|
|
|
|
element.style.transform = `translateY(0px)`;
|
|
|
|
element.style.transform = `translateY(0px)`;
|
|
|
|
relatedEl.style.transform = `translateY(0px)`;
|
|
|
|
relatedEl.style.transform = `translateY(0px)`;
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
let firstTimeText = document.querySelector('tbody tr:nth-of-type(2) td:first-of-type');
|
|
|
|
let firstTimeText = document.querySelector('tbody tr:nth-of-type(2) td:first-of-type');
|
|
|
|
titres.firstElementChild.innerText = firstTimeText.innerText;
|
|
|
|
titresCursor.firstElementChild.innerText = firstTimeText.innerText;
|
|
|
|
|
|
|
|
}, 100);
|
|
|
|
} else if (e.clientY >= tlContainerHeight + tlContainer.offsetTop) {
|
|
|
|
} else if (e.clientY >= tlContainerHeight + tlContainer.offsetTop) {
|
|
|
|
element.style.transform = `translateY(${tlContainerHeight}px)`;
|
|
|
|
element.style.transform = `translateY(${tlContainerHeight}px)`;
|
|
|
|
relatedEl.style.transform = `translateY(${tlContainerHeight}px)`;
|
|
|
|
relatedEl.style.transform = `translateY(${tlContainerHeight}px)`;
|
|
|
|
let lastTimeText = document.querySelector('tbody tr:last-of-type td:first-of-type');
|
|
|
|
let lastTimeText = document.querySelector('tbody tr:last-of-type td:first-of-type');
|
|
|
|
titres.firstElementChild.innerText = lastTimeText.innerText;
|
|
|
|
titresCursor.firstElementChild.innerText = lastTimeText.innerText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
document.addEventListener('mouseup', () => {
|
|
|
|
document.addEventListener('mouseup', (e) => {
|
|
|
|
if (grabbing) scrollOnGrab(element);
|
|
|
|
if (grabbing) {
|
|
|
|
|
|
|
|
scrollOnGrab(element);
|
|
|
|
|
|
|
|
let elTransformY = element.style.transform ? +element.style.transform.split('(')[1].split('p')[0] : 0;
|
|
|
|
|
|
|
|
offsetY = e.clientY - elTransformY;
|
|
|
|
|
|
|
|
const y = e.clientY - offsetY;
|
|
|
|
|
|
|
|
if (e.clientY < tlContainer.offsetTop || y <= 0) {
|
|
|
|
|
|
|
|
window.scrollTo(0, 0);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
|
|
titresCursor.firstElementChild.innerText = getCurrentTime(titresFrise[getCurrentPartFromCursor(y)]?.el);
|
|
|
|
|
|
|
|
}, 1000);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
element.style.cursor = 'grab';
|
|
|
|
element.style.cursor = 'grab';
|
|
|
|
grabbing = false;
|
|
|
|
grabbing = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
makeElementDraggable(cursor, titres);
|
|
|
|
|
|
|
|
makeElementDraggable(titres, cursor);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// get heights of parts dans le tableau et dans la timeline
|
|
|
|
// get heights of parts dans le tableau et dans la timeline
|
|
|
|
function getSteps() {
|
|
|
|
function getSteps() {
|
|
|
|
let tlElSteps = [];
|
|
|
|
steps.tlElSteps = [];
|
|
|
|
|
|
|
|
steps.scrollSteps = [];
|
|
|
|
for (let i = 0; i < partRects.length; i++) {
|
|
|
|
for (let i = 0; i < partRects.length; i++) {
|
|
|
|
tlElSteps.push(partRects[i].offsetTop);
|
|
|
|
// steps.tlElSteps.push(partRects[i].offsetTop);
|
|
|
|
|
|
|
|
steps.tlElSteps.push(partRects[i].getBoundingClientRect().top);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let titles = document.querySelectorAll('.isMainPart, .isSubPart');
|
|
|
|
let titles = document.querySelectorAll('.isMainPart, .isSubPart');
|
|
|
|
let scrollSteps = [];
|
|
|
|
|
|
|
|
for (let title of titles) {
|
|
|
|
for (let title of titles) {
|
|
|
|
let nextLine = title.nextElementSibling;
|
|
|
|
let nextLine = title.nextElementSibling;
|
|
|
|
if (!nextLine?.classList.contains('isSubPart')) {
|
|
|
|
if (!nextLine?.classList.contains('isSubPart')) {
|
|
|
|
scrollSteps.push(title.offsetTop);
|
|
|
|
// steps.scrollSteps.push(title.offsetTop);
|
|
|
|
|
|
|
|
steps.scrollSteps.push(title.offsetTop);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return({
|
|
|
|
|
|
|
|
'tlElSteps':tlElSteps,
|
|
|
|
|
|
|
|
'scrollSteps':scrollSteps
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
|
|
|
|
// ICI IL Y A LE SCROLL DU GRAB
|
|
|
|
|
|
|
|
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
|
|
|
|
let isScrollingFromGrab = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function scrollOnGrab(el) {
|
|
|
|
function scrollOnGrab(el) {
|
|
|
|
let scrollValue =
|
|
|
|
let scrollValue;
|
|
|
|
((getSteps().scrollSteps[getCursorPositionInTimelinePart(el).stepAfterMouseUp] - getSteps().scrollSteps[getCursorPositionInTimelinePart(el).stepAfterMouseUp - 1]) * getCursorPositionInTimelinePart(el).proportionInPart)
|
|
|
|
if (getCursorPositionInTimelinePart(el).stepAfterMouseUp === steps.scrollSteps.length - 1) {
|
|
|
|
+ getSteps().scrollSteps[getCursorPositionInTimelinePart(el).stepAfterMouseUp];
|
|
|
|
scrollValue =
|
|
|
|
|
|
|
|
((document.documentElement.scrollHeight - steps.scrollSteps[getCursorPositionInTimelinePart(el).stepAfterMouseUp]) * getCursorPositionInTimelinePart(el).proportionInPart)
|
|
|
|
|
|
|
|
+ steps.scrollSteps[getCursorPositionInTimelinePart(el).stepAfterMouseUp];
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
scrollValue =
|
|
|
|
|
|
|
|
((steps.scrollSteps[getCursorPositionInTimelinePart(el).stepAfterMouseUp + 1] - steps.scrollSteps[getCursorPositionInTimelinePart(el).stepAfterMouseUp]) * getCursorPositionInTimelinePart(el).proportionInPart)
|
|
|
|
|
|
|
|
+ steps.scrollSteps[getCursorPositionInTimelinePart(el).stepAfterMouseUp];
|
|
|
|
|
|
|
|
}
|
|
|
|
isScrollingFromGrab = true;
|
|
|
|
isScrollingFromGrab = true;
|
|
|
|
window.scrollTo({ top: scrollValue, behavior: 'smooth' });
|
|
|
|
window.scrollTo({ top: scrollValue, behavior: 'smooth' });
|
|
|
|
setTimeout(() => {
|
|
|
|
setTimeout(() => {
|
|
|
|
isScrollingFromGrab = false;
|
|
|
|
isScrollingFromGrab = false;
|
|
|
|
}, 2000);
|
|
|
|
}, 1000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getCursorPositionInTimelinePart(el) {
|
|
|
|
function getCursorPositionInTimelinePart(el) {
|
|
|
@@ -386,85 +370,59 @@ function customTimeline() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
let tlPartHeight, tlPartBottom, tlPartTop, proportionInPart, stepAfterMouseUp;
|
|
|
|
let tlPartHeight, tlPartBottom, tlPartTop, proportionInPart, stepAfterMouseUp;
|
|
|
|
for (let j = 0; j < partRects.length; j++) {
|
|
|
|
tlPartHeight = partRects[getCurrentPartFromCursor(elTransformY) || 0].getBoundingClientRect().height;
|
|
|
|
if (j === getCurrentPartFromCursor(elTransformY)) {
|
|
|
|
tlPartBottom = partRects[getCurrentPartFromCursor(elTransformY) || 0].getBoundingClientRect().bottom - tlContainer.getBoundingClientRect().top;
|
|
|
|
tlPartHeight = partRects[j].getBoundingClientRect().height;
|
|
|
|
tlPartTop = steps.tlElSteps[getCurrentPartFromCursor(elTransformY) || 0] - steps.tlElSteps[0];
|
|
|
|
tlPartBottom = partRects[j].getBoundingClientRect().top - tlContainer.getBoundingClientRect().top;
|
|
|
|
proportionInPart = 1 - ((tlPartHeight - (elTransformY - tlPartTop)) / tlPartHeight);
|
|
|
|
tlPartTop = tlPartBottom - tlPartHeight;
|
|
|
|
|
|
|
|
proportionInPart = ((tlPartHeight - (elTransformY - tlPartTop)) / tlPartHeight) * -1;
|
|
|
|
|
|
|
|
if (proportionInPart > 0 && proportionInPart < 1) {
|
|
|
|
if (proportionInPart > 0 && proportionInPart < 1) {
|
|
|
|
stepAfterMouseUp = j;
|
|
|
|
stepAfterMouseUp = getCurrentPartFromCursor(elTransformY);
|
|
|
|
return {stepAfterMouseUp, proportionInPart};
|
|
|
|
return {stepAfterMouseUp, proportionInPart};
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
stepAfterMouseUp = j;
|
|
|
|
stepAfterMouseUp = getCurrentPartFromCursor(elTransformY);
|
|
|
|
proportionInPart = 0;
|
|
|
|
proportionInPart = 0;
|
|
|
|
return {stepAfterMouseUp, proportionInPart};
|
|
|
|
return {stepAfterMouseUp, proportionInPart};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
|
|
|
|
// ICI IL Y A LE RAPPORT SCROLL / TIMELINE
|
|
|
|
|
|
|
|
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function moveCursorFromScroll(currentPartIndex) {
|
|
|
|
function moveCursorFromScroll(currentPartIndex) {
|
|
|
|
if (!isScrollingFromGrab) {
|
|
|
|
if (!isScrollingFromGrab) {
|
|
|
|
let currentScroll = window.scrollY;
|
|
|
|
let currentScroll = window.scrollY;
|
|
|
|
|
|
|
|
let tlPartHeight = parseInt(partRects[currentPartIndex].style.height);
|
|
|
|
|
|
|
|
let cursorTopValue = partRects[currentPartIndex].getBoundingClientRect().top - parseInt(tlContainer.style.top);
|
|
|
|
|
|
|
|
|
|
|
|
let cursorTopValue = 0;
|
|
|
|
let currentScrollPartTop = steps.scrollSteps[currentPartIndex] || 0;
|
|
|
|
let tlPartHeight, tlPartBottom;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (let j = 0; j < partRects.length; j++) {
|
|
|
|
|
|
|
|
tlPartHeight = partRects[j].getBoundingClientRect().height
|
|
|
|
|
|
|
|
tlPartBottom = partRects[j].getBoundingClientRect().top - tlContainer.getBoundingClientRect().top;
|
|
|
|
|
|
|
|
cursorTopValue = tlPartBottom;
|
|
|
|
|
|
|
|
// get the amount of the current scrollpart scrolled
|
|
|
|
|
|
|
|
if (j === currentPartIndex) break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let currentScrollPartBottom = getSteps().scrollSteps[currentPartIndex - 1] ? getSteps().scrollSteps[currentPartIndex - 1] : 0;
|
|
|
|
|
|
|
|
let currentScrollPartHeight;
|
|
|
|
let currentScrollPartHeight;
|
|
|
|
if (getSteps().scrollSteps[currentPartIndex + 1]) {
|
|
|
|
if (steps.scrollSteps[currentPartIndex + 1]) {
|
|
|
|
currentScrollPartHeight = getSteps().scrollSteps[currentPartIndex + 1] - currentScrollPartBottom;
|
|
|
|
currentScrollPartHeight = steps.scrollSteps[currentPartIndex + 1] - currentScrollPartTop;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
currentScrollPartHeight = document.querySelector('body').scrollHeight - currentScrollPartBottom;
|
|
|
|
currentScrollPartHeight = document.querySelector('body').scrollHeight - currentScrollPartTop;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let currentScrollSincePartBottom = currentScroll - currentScrollPartBottom;
|
|
|
|
|
|
|
|
|
|
|
|
let currentScrollSincePartBottom = currentScroll - currentScrollPartTop;
|
|
|
|
let scrollPartProportion = currentScrollSincePartBottom / currentScrollPartHeight;
|
|
|
|
let scrollPartProportion = currentScrollSincePartBottom / currentScrollPartHeight;
|
|
|
|
|
|
|
|
|
|
|
|
cursorTopValue = cursorTopValue + tlPartHeight * (tlPartHeight / tlPartHeight * (scrollPartProportion - 0.3));
|
|
|
|
cursorTopValue = cursorTopValue + tlPartHeight * scrollPartProportion;
|
|
|
|
|
|
|
|
|
|
|
|
if (cursorTopValue > 0) {
|
|
|
|
if (cursorTopValue > 0) {
|
|
|
|
cursor.style.transform = `translateY(${cursorTopValue}px)`;
|
|
|
|
cursor.style.transform = `translateY(${cursorTopValue}px)`;
|
|
|
|
titres.style.transform = `translateY(${cursorTopValue}px)`;
|
|
|
|
titresCursor.style.transform = `translateY(${cursorTopValue}px)`;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
cursor.style.transform = `translateY(0px)`;
|
|
|
|
cursor.style.transform = `translateY(0px)`;
|
|
|
|
titres.style.transform = `translateY(0px)`;
|
|
|
|
titresCursor.style.transform = `translateY(0px)`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
let prevPartIndex = 0;
|
|
|
|
|
|
|
|
let lastCallTimestamp = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function displayCurrentPartTitle(currentPartIndex) {
|
|
|
|
function displayCurrentPartTitle(currentPartIndex) {
|
|
|
|
if (isNaN(currentPartIndex)) currentPartIndex = 0;
|
|
|
|
if (isNaN(currentPartIndex)) currentPartIndex = 0;
|
|
|
|
const currentTime = performance.now();
|
|
|
|
const currentTime = performance.now();
|
|
|
|
if (currentTime - lastCallTimestamp >= 400) {
|
|
|
|
if (currentTime - lastCallTimestamp >= timestampDebounce) {
|
|
|
|
lastCallTimestamp = currentTime;
|
|
|
|
lastCallTimestamp = currentTime;
|
|
|
|
titres.firstElementChild.innerText = getCurrentTime(titresFrise[currentPartIndex]?.el); // ICI POUR METTRE LE TEMPS BIEN
|
|
|
|
if (titresCursor) titresCursor.firstElementChild.innerText = getCurrentTime(titresFrise[currentPartIndex]?.el); // ICI POUR METTRE LE TEMPS BIEN
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
|
|
if (isWindowScrolling()) {
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
|
|
titres.firstElementChild.innerText = getCurrentTime(titresFrise[currentPartIndex]?.el);
|
|
|
|
|
|
|
|
}, 400);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 200);
|
|
|
|
let mainEl = titresCursor.children[1];
|
|
|
|
}
|
|
|
|
let subEl = titresCursor.lastElementChild;
|
|
|
|
let mainEl = titres.children[1];
|
|
|
|
|
|
|
|
let subEl = titres.lastElementChild;
|
|
|
|
|
|
|
|
if (mainEl.innerText != titresFrise[currentPartIndex]?.main || subEl.innerText != titresFrise[currentPartIndex]?.sub) {
|
|
|
|
if (mainEl.innerText != titresFrise[currentPartIndex]?.main || subEl.innerText != titresFrise[currentPartIndex]?.sub) {
|
|
|
|
mainEl.innerText = titresFrise[currentPartIndex]?.main;
|
|
|
|
mainEl.innerText = titresFrise[currentPartIndex]?.main;
|
|
|
|
subEl.innerText = titresFrise[currentPartIndex]?.sub;
|
|
|
|
subEl.innerText = titresFrise[currentPartIndex]?.sub;
|
|
|
@@ -477,12 +435,12 @@ function customTimeline() {
|
|
|
|
|
|
|
|
|
|
|
|
function getCurrentPartFromScroll() {
|
|
|
|
function getCurrentPartFromScroll() {
|
|
|
|
let currentScroll = window.scrollY;
|
|
|
|
let currentScroll = window.scrollY;
|
|
|
|
for (let i = 0; i < getSteps().scrollSteps.length; i++) {
|
|
|
|
for (let i = 0; i < steps.scrollSteps.length; i++) {
|
|
|
|
if (
|
|
|
|
if (
|
|
|
|
(currentScroll + window.innerHeight / 2 >= getSteps().scrollSteps[i]
|
|
|
|
(currentScroll + window.innerHeight / 2 >= steps.scrollSteps[i]
|
|
|
|
&& currentScroll + window.innerHeight / 2 <= getSteps().scrollSteps[i + 1]) ||
|
|
|
|
&& currentScroll + window.innerHeight / 2 <= steps.scrollSteps[i + 1]) ||
|
|
|
|
(currentScroll + window.innerHeight / 2 >= getSteps().scrollSteps[i]
|
|
|
|
(currentScroll + window.innerHeight / 2 >= steps.scrollSteps[i]
|
|
|
|
&& i === getSteps().scrollSteps.length - 1)
|
|
|
|
&& i === steps.scrollSteps.length - 1)
|
|
|
|
) {
|
|
|
|
) {
|
|
|
|
return(i);
|
|
|
|
return(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
@@ -490,48 +448,79 @@ function customTimeline() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getCurrentPartFromCursor(cursorTransformY) {
|
|
|
|
function getCurrentPartFromCursor(cursorTransformY) {
|
|
|
|
for (let i = 0; i < getSteps().tlElSteps.length; i++) {
|
|
|
|
for (let i = 0; i < steps.tlElSteps.length; i++) {
|
|
|
|
if (cursorTransformY >= getSteps().tlElSteps[i] && cursorTransformY < getSteps().tlElSteps[i + 1]) {
|
|
|
|
if (cursorTransformY >= steps.tlElSteps[i] - steps.tlElSteps[0] && cursorTransformY < steps.tlElSteps[i + 1] - steps.tlElSteps[0]) {
|
|
|
|
return(i);
|
|
|
|
return(i);
|
|
|
|
} else if (cursorTransformY > getSteps().tlElSteps[getSteps().tlElSteps.length - 1]) {
|
|
|
|
} else if (cursorTransformY > steps.tlElSteps[steps.tlElSteps.length - 1] - steps.tlElSteps[0]) {
|
|
|
|
return(getSteps().tlElSteps.length - 1);
|
|
|
|
return(steps.tlElSteps.length - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////
|
|
|
|
|
|
|
|
// ICI LE GETCURRENTTIME !!!!!!!!!!!!!!
|
|
|
|
|
|
|
|
///////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getCurrentTime(titleEl) {
|
|
|
|
function getCurrentTime(titleEl) {
|
|
|
|
let nextRow = titleEl?.nextElementSibling;
|
|
|
|
let nextRow = titleEl?.nextElementSibling;
|
|
|
|
|
|
|
|
let allRowsUnder = [];
|
|
|
|
if (!grabbing) {
|
|
|
|
if (!grabbing) {
|
|
|
|
while(nextRow) {
|
|
|
|
while(nextRow) {
|
|
|
|
if (nextRow.offsetTop - window.innerHeight / 4 > window.scrollY &&
|
|
|
|
if (nextRow.offsetTop - window.innerHeight / 4 > window.scrollY &&
|
|
|
|
nextRow.classList.contains('isContentPart')) {
|
|
|
|
nextRow.classList.contains('isContentPart')) {
|
|
|
|
return(nextRow.firstElementChild.innerText);
|
|
|
|
return nextRow.firstElementChild.innerText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allRowsUnder.push(nextRow.firstElementChild.innerText);
|
|
|
|
nextRow = nextRow.nextElementSibling;
|
|
|
|
nextRow = nextRow.nextElementSibling;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return allRowsUnder[allRowsUnder.length-1];
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
let cursor = document.querySelector('#cursor');
|
|
|
|
let cursor = document.querySelector('#cursor');
|
|
|
|
let allRowsUnder = [];
|
|
|
|
if (nextRow.classList.contains('isSubPart')) nextRow = nextRow.nextElementSibling.nextElementSibling;
|
|
|
|
nextRow = nextRow.nextElementSibling.nextElementSibling;
|
|
|
|
|
|
|
|
while(nextRow) {
|
|
|
|
while(nextRow) {
|
|
|
|
if (nextRow.classList.contains('isMainPart') || nextRow.classList.contains('isSubPart')) {
|
|
|
|
if (nextRow.classList.contains('isMainPart') || nextRow.classList.contains('isSubPart')) {
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
allRowsUnder.push(nextRow);
|
|
|
|
allRowsUnder.push(nextRow.firstElementChild.innerText);
|
|
|
|
nextRow = nextRow.nextElementSibling;
|
|
|
|
nextRow = nextRow.nextElementSibling;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let currentRowIndex = Math.floor(allRowsUnder.length * getCursorPositionInTimelinePart(cursor).proportionInPart);
|
|
|
|
let currentRowIndex = Math.floor(allRowsUnder.length * getCursorPositionInTimelinePart(cursor).proportionInPart);
|
|
|
|
if (currentRowIndex - 20 >= 0) {
|
|
|
|
return allRowsUnder[currentRowIndex];
|
|
|
|
return allRowsUnder[currentRowIndex - 20].firstElementChild.innerText;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
return allRowsUnder[0].firstElementChild.innerText;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setPartTitlesInPartition();
|
|
|
|
|
|
|
|
setPartsColors();
|
|
|
|
|
|
|
|
getPartsTimes();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
|
|
getAllHeights();
|
|
|
|
|
|
|
|
drawFriseRects();
|
|
|
|
|
|
|
|
displayTimelineTitles();
|
|
|
|
|
|
|
|
setupCursor();
|
|
|
|
|
|
|
|
drawFixedTitles();
|
|
|
|
|
|
|
|
setPartRects();
|
|
|
|
|
|
|
|
makeElementDraggable(cursor, titresCursor);
|
|
|
|
|
|
|
|
makeElementDraggable(titresCursor, cursor);
|
|
|
|
|
|
|
|
getSteps();
|
|
|
|
|
|
|
|
}, 100);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let resizeTimeout;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.addEventListener('resize', () => {
|
|
|
|
|
|
|
|
tlContainer.innerHTML = '';
|
|
|
|
|
|
|
|
document.querySelector("#titres_frise")?.remove();
|
|
|
|
|
|
|
|
clearTimeout(resizeTimeout);
|
|
|
|
|
|
|
|
resizeTimeout = setTimeout(() => {
|
|
|
|
|
|
|
|
getAllHeights();
|
|
|
|
|
|
|
|
drawFriseRects();
|
|
|
|
|
|
|
|
displayTimelineTitles();
|
|
|
|
|
|
|
|
setupCursor();
|
|
|
|
|
|
|
|
setPartRects();
|
|
|
|
|
|
|
|
makeElementDraggable(titresCursor, cursor);
|
|
|
|
|
|
|
|
getSteps();
|
|
|
|
|
|
|
|
}, 100);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export { customTimeline };
|
|
|
|
export { customTimeline };
|