Difference between revisions of "MediaWiki:Common.js"
From Conceptual Reconstructionism Project
Thaumasnot (talk | contribs) |
Thaumasnot (talk | contribs) |
||
Line 22: | Line 22: | ||
TimeSegment.prototype.update = function(track, currentTime) { | TimeSegment.prototype.update = function(track, currentTime) { | ||
var percent = Math.max(currentTime - this.startTime, 0) / (this.endTime - this.startTime) | var percent = Math.max(currentTime - this.startTime, 0) / (this.endTime - this.startTime) | ||
console.log("segment % = " + percent); | |||
if (track === this.track && percent < 100.0) { | if (track === this.track && percent < 100.0) { | ||
this.element.get(0).style.setProperty('--gauge-fill', percent); | this.element.get(0).style.setProperty('--gauge-fill', percent); | ||
Line 118: | Line 119: | ||
(m.groups.minuteStart? parseInt(m.groups.minuteStart) : 0) * 60 + parseFloat(m.groups.secondStart), | (m.groups.minuteStart? parseInt(m.groups.minuteStart) : 0) * 60 + parseFloat(m.groups.secondStart), | ||
(m.groups.minuteEnd? parseInt(m.groups.minuteEnd) : 0) * 60 + parseFloat(m.groups.secondEnd), | (m.groups.minuteEnd? parseInt(m.groups.minuteEnd) : 0) * 60 + parseFloat(m.groups.secondEnd), | ||
$(this))); | $(this).find('.meta-progress') )); | ||
} | } | ||
else { | else { |
Revision as of 20:31, 19 December 2021
/* Any JavaScript here will be loaded for all users on every page load. */ function TimeSegment(track, startTime, endTime, element) { this.track = track; this.startTime = startTime; this.endTime = endTime; this.element = element; } TimeSegment.prototype.isDisabled = function() { return this.element.hasClass('active'); }; TimeSegment.prototype.disable = function() { this.element.removeClass('active'); }; TimeSegment.prototype.update = function(track, currentTime) { var percent = Math.max(currentTime - this.startTime, 0) / (this.endTime - this.startTime) console.log("segment % = " + percent); if (track === this.track && percent < 100.0) { this.element.get(0).style.setProperty('--gauge-fill', percent); this.element.addClass('active'); } else { this.disable(); } }; function PlaybackData() { this.autostopTime = null; this.segments = []; this.htmlAudios = []; this.closestPlayableSegment = 0; this.playingAudio = null; }; var playbackData = new PlaybackData(); $(document).ready(function() { // Create one audio player per declared track $('*[data-track]').each(function(trackNumber) { var audio = $('<audio></audio>') .prop('controls', true) .attr('preload', 'auto') .attr('src', $(this).attr('data-track')); $('<figure></figure>') .append($('<figcaption></figcaption>') .text($(this).attr('data-track-title'))) .appendTo($(this)) .append(audio); function onPlay(event) { if (playbackData.playingAudio !== null && playbackData.playingAudio !== trackNumber) { playbackData.htmlAudios[playbackData.playingAudio].pause(); } playbackData.playingAudio = trackNumber; } function onPause(event) { playbackData.autostopTime = null; playbackData.playingAudio = null; playbackData.closestPlayableSegment = 0; } function onSeeked(event) { playbackData.closestPlayableSegment = 0; playbackData.segments.forEach(function(s) { s.disable(); }); } function onEnded(event) { var nextPlayingAudio = playbackData.playingAudio + 1; var hasAutoStop = playbackData.autostopTime !== null; onPause(event); onSeeked(event); if (nextPlayingAudio < playbackData.htmlAudios.length && !hasAutoStop) { playbackData.htmlAudios[nextPlayingAudio].play(); } } audio.on('play', onPlay); audio.on('pause', onPause); audio.on('ended', onEnded); audio.on('seeked', onSeeked); playbackData.htmlAudios.push(audio.get(0)); }); // Create hyperlinks out of reconstruction markup $('*[data-def]').click(function() { var url = location.href; location.href = "#" + $(this).attr('data-def'); history.replaceState(null, null, url); }); // Update timing data $('*[data-segment]').each(function() { var m = /(?<track>\d+\/)?((?<minuteStart>\d+):)?(?<secondStart>\d+(.\d*)?)-((?<minuteEnd>\d+):)?(?<secondEnd>\d+(.\d*)?)/.exec($(this).attr('data-segment')); if (m) { playbackData.segments.push(new TimeSegment( m.groups.track? parseInt(m.groups.track) : 0, (m.groups.minuteStart? parseInt(m.groups.minuteStart) : 0) * 60 + parseFloat(m.groups.secondStart), (m.groups.minuteEnd? parseInt(m.groups.minuteEnd) : 0) * 60 + parseFloat(m.groups.secondEnd), $(this).find('.meta-progress') )); } else { $(this).append('Wrong time segment'); } }); playbackData.segments.sort(function(a, b) { return a.startTime - b.startTime; }); // Playing tick window.setInterval(function() { if (playbackData.playingAudio === null) { return; } var playingAudio = playbackData.htmlAudios[playbackData.playingAudio]; var currentTime = playingAudio.currentTime; var segIndex = playbackData.closestPlayableSegment; var previouSegmentActive = false; while (segIndex < playbackData.segments.length) { var segment = playbackData.segments[segIndex++]; segment.update(playingAudio, currentTime); if (segment.isDisabled()) { if (segment.startTime > currentTime) { break; } continue; } else { if (!previouSegmentActive) { playbackData.closestPlayableSegment = segIndex; } previouSegmentActive = true; } } if (playbackData.autostopTime !== null && currentTime >= playbackData.autostopTime) { playingAudio.pause(); return; } }, 50); });