Compare commits

...

2 commits

Author SHA1 Message Date
mrilyew
22d3e5e494 add beforeUnload event 2024-12-05 18:49:15 +03:00
mrilyew
178cefede9 Fix time setting 2024-12-05 15:07:18 +03:00
3 changed files with 17 additions and 4 deletions

View file

@ -553,7 +553,7 @@
}
.audioEntry .buttons .report-icon {
background-position: -50px -67px;
background-position: -51px -67px;
}
.audioEntry .buttons .remove-icon {

View file

@ -409,6 +409,10 @@ window.player = new class {
return u('.bigPlayer').length > 0
}
isAtCurrentContextPage() {
return this.isAtAudiosPage() && this.context.object.url == location.pathname + location.search
}
dump() {
const final = {
context: this.context,
@ -434,7 +438,9 @@ window.player = new class {
}
if(dump_object.time) {
this.audioPlayer.currentTime = dump_object.time
setTimeout(() => {
this.audioPlayer.currentTime = dump_object.time
}, 1000)
}
}
@ -757,6 +763,9 @@ document.addEventListener("DOMContentLoaded", async () => {
try {
parsed = JSON.parse(localStorage.getItem('audio.lastDump'))
} catch(e) {}
if(window.openvk.current_id == 0) {
return
}
if(parsed) {
await window.player.init(null)
@ -771,6 +780,10 @@ document.addEventListener("DOMContentLoaded", async () => {
}
})
window.addEventListener('beforeunload', (e) => {
window.player.dump()
})
u(document).on('click', '.audioEntry .playerButton > .playIcon', async (e) => {
const audioPlayer = u(e.target).closest('.audioEmbed')
const id = Number(audioPlayer.attr('data-realid'))
@ -1976,6 +1989,7 @@ u(document).on('click', '.upload_container_element #small_remove_button', (e) =>
return
}
// 1984
const element = u(e.target).closest('.upload_container_element')
const element_index = Number(element.attr('data-index'))
@ -2044,7 +2058,6 @@ u(document).on("drop", "#upload_container", function (e) {
})
u(document).on('click', '#_playlistAppendTracks', (e) => {
// 1984
showAudioAttachment('playlist', u('.PE_wrapper').nodes[0])
})

View file

@ -2360,7 +2360,7 @@ async function __processPaginatorNextPage(page)
container.nodes[0].append(u(`.paginator:not(.paginator-at-top)`).nodes[0].parentNode)
}
if(window.player) {
if(window.player && window.player.isAtAudiosPage() && window.player.isAtCurrentContextPage()) {
window.player.loadContext(page)
}