phantasma/app/static/js/ascroll.js

202 lines
6.5 KiB
JavaScript
Raw Normal View History

var cache = cache || {}
var layer = 'descriptions'
var baseURL = 'https://pad.ma'
var imageResolution = 480
let lastKnownScrollPosition = 0
let ticking = false;
async function pandoraAPI(action, data) {
var url = baseURL + '/api/'
//var url = '/pandoraAPI/'
var key = JSON.stringify([action, data])
if (!cache[key]) {
var response = await fetch(url, {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
action: action,
data: data
})
})
cache[key] = await response.json()
}
return cache[key]
}
2021-10-10 15:46:19 +00:00
function updatePlayer(video, frame, currentTime, out, src) {
var rect = frame.getBoundingClientRect();
video.style.opacity = 0
console.log('update player', rect)
video.style.top = (rect.top + window.scrollY) + 'px'
video.style.display = 'block';
2021-10-10 15:06:43 +00:00
if (src) {
video.src = src
}
//video.poster = frame.querySelector('img').src
video.currentTime = currentTime
2021-10-10 15:46:19 +00:00
video.dataset.in = currentTime
video.dataset.out = out
video.controls = true
video.play()
video.style.opacity = 1
}
function isElementInViewport (el) {
var rect = el.getBoundingClientRect();
return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && /* or $(window).height() */
rect.right <= (window.innerWidth || document.documentElement.clientWidth) /* or $(window).width() */
);
}
function onVisibilityChange(el, callback) {
var old_visible;
return function () {
var visible = isElementInViewport(el);
if (visible != old_visible) {
old_visible = visible;
if (typeof callback == 'function') {
callback(visible);
}
}
}
}
2021-10-10 15:46:19 +00:00
function timeupdate(event) {
if (event.target.dataset.out && event.target.dataset.in) {
var in_= parseFloat(event.target.dataset.in)
var out_= parseFloat(event.target.dataset.out)
if (event.target.currentTime >= out_) {
event.target.currentTime = in_
}
}
}
2021-10-10 15:06:43 +00:00
function loadItem(config) {
pandoraAPI('get', {id: config.item, keys: ['id', 'title', 'layers']}).then(response => {
var ascroll = document.querySelector('#ascroll')
var loaded = false
2021-10-10 15:06:43 +00:00
var video = document.createElement('video')
video.classList.add('player')
video.muted = true
video.src = `${baseURL}/${config.item}/480p.webm`
2021-10-10 15:46:19 +00:00
video.addEventListener('timeupdate', timeupdate)
2021-10-10 15:06:43 +00:00
ascroll.appendChild(video)
2021-10-10 15:06:43 +00:00
var h1 = document.createElement('h1')
2021-10-10 15:46:19 +00:00
var first
2021-10-10 15:06:43 +00:00
h1.innerHTML = response.data.title
ascroll.appendChild(h1)
2021-10-10 15:06:43 +00:00
response.data.layers[layer].forEach(annotation => {
if (config.user && annotation.user != config.user) {
return
}
2021-10-10 15:46:19 +00:00
if (!first) {
first = annotation
}
2021-10-10 15:06:43 +00:00
var div = document.createElement('div')
div.classList.add('annotation')
div.innerHTML = `
<div class="frame"><img src="${baseURL}/${annotation.id.split('/')[0]}/${imageResolution}p${annotation.in}.jpg"></div>
<div class="text">${annotation.value}</div>
`
ascroll.appendChild(div)
var frame = div.querySelector('.frame')
document.addEventListener('scroll', onVisibilityChange(div.querySelector('.frame'), function(visible) {
if (loaded && visible)
2021-10-10 15:46:19 +00:00
updatePlayer(video, frame, annotation['in'], annotation['out'])
2021-10-10 15:06:43 +00:00
}))
})
loaded = true
let frame = ascroll.querySelector('.annotation .frame')
if (frame) {
2021-10-10 15:46:19 +00:00
updatePlayer(video, frame, first['in'], first['out'])
2021-10-10 15:06:43 +00:00
}
2021-10-10 15:06:43 +00:00
/*
document.addEventListener('scroll', function(e) {
lastKnownScrollPosition = window.scrollY;
2021-10-10 15:06:43 +00:00
if (!ticking) {
window.requestAnimationFrame(function() {
updatePlayerPosition(video, lastKnownScrollPosition);
ticking = false;
});
2021-10-10 15:06:43 +00:00
ticking = true;
}
})
*/
})
2021-10-10 15:06:43 +00:00
}
function loadEdit(config) {
pandoraAPI('getEdit', {id: config.edit, keys: []}).then(response => {
console.log(response)
var ascroll = document.querySelector('#ascroll')
var loaded = false
var video = document.createElement('video')
video.classList.add('player')
video.muted = true
2021-10-10 15:46:19 +00:00
video.addEventListener('timeupdate', timeupdate)
2021-10-10 15:06:43 +00:00
ascroll.appendChild(video)
var h1 = document.createElement('h1')
var first
h1.innerHTML = response.data.name
ascroll.appendChild(h1)
response.data.clips.forEach(clip => {
clip.layers[layer].forEach(annotation => {
if (config.user && annotation.user != config.user) {
return
}
if (!first) {
first = annotation
}
var div = document.createElement('div')
div.classList.add('annotation')
div.innerHTML = `
2021-10-10 15:25:17 +00:00
<div class="frame">
<figure>
<img src="${baseURL}/${annotation.id.split('/')[0]}/${imageResolution}p${annotation.in}.jpg">
<figcaption><a href="${baseURL}/${annotation.id}" target="_blank">${clip.title}</a></figcaption>
</figure>
</div>
2021-10-10 15:06:43 +00:00
<div class="text">${annotation.value}</div>
`
ascroll.appendChild(div)
var frame = div.querySelector('.frame')
document.addEventListener('scroll', onVisibilityChange(div.querySelector('.frame'), function(visible) {
var src = `${baseURL}/${annotation.id.split('/')[0]}/480p.webm`
if (loaded && visible)
2021-10-10 15:46:19 +00:00
updatePlayer(video, frame, annotation['in'], annotation['out'], src)
2021-10-10 15:06:43 +00:00
}))
})
})
loaded = true
let frame = ascroll.querySelector('.annotation .frame')
if (frame) {
2021-10-10 15:25:17 +00:00
var src = `${baseURL}/${first.id.split('/')[0]}/480p.webm`
2021-10-10 15:46:19 +00:00
updatePlayer(video, frame, first['in'], first['out'], src)
2021-10-10 15:06:43 +00:00
}
})
2021-10-10 15:06:43 +00:00
}
if (config.item) {
loadItem(config)
} else if (config.edit) {
loadEdit(config)
}