* feat: add session recordings * feat: add session recordings * feat: deleting recordings * feat: deleting recordings and initial form values * feat: use meeting date rather than today for initial title field. Fix delete recording * feat: confirm delete recordings modal. fix server utils delete recording * fix: removing debug console.log * feat: change button name from 'Ok' to 'Delete' for confirm deletion to be clearer * feat: UTC time in string and delete modal text * fix: django html validation tests * fix: django html validation tests * fix: django html validation tests * refactor: Work with SessionPresentations * fix: better ordering * chore: drop rev, hide table when empty * test: test delete_recordings method * fix: debug delete_recordings * test: test add_session_recordings view * fix: better permissions handling * fix: only delete recordings for selected session * refactor: inline script -> js module * chore: remove accidental import *shakes fist at pycharm* * fix: consistent timestamp format plus slight rephrase * style: Black * chore: remove comment * test: update test to match * fix: reversible url pattern for materials Tests were perturbed in a way that led to a test getting an interim instead of an IETF meeting. This exposed a bug reversing the URL for the materials_document() view. This splits it into two patterns that are equivalent to the original. --------- Co-authored-by: Jennifer Richards <jennifer@staff.ietf.org>
31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
// Copyright The IETF Trust 2024-2025, All Rights Reserved
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const form = document.getElementById('delete_recordings_form')
|
|
const dialog = document.getElementById('delete_confirm_dialog')
|
|
const dialog_link = document.getElementById('delete_confirm_link')
|
|
const dialog_submit = document.getElementById('delete_confirm_submit')
|
|
const dialog_cancel = document.getElementById('delete_confirm_cancel')
|
|
|
|
dialog.style.maxWidth = '30vw'
|
|
|
|
form.addEventListener('submit', (e) => {
|
|
e.preventDefault()
|
|
dialog_submit.value = e.submitter.value
|
|
const recording_link = e.submitter.closest('tr').querySelector('a')
|
|
dialog_link.setAttribute('href', recording_link.getAttribute('href'))
|
|
dialog_link.textContent = recording_link.textContent
|
|
dialog.showModal()
|
|
})
|
|
|
|
dialog_cancel.addEventListener('click', (e) => {
|
|
e.preventDefault()
|
|
dialog.close()
|
|
})
|
|
|
|
document.addEventListener('keydown', (e) => {
|
|
if (dialog.open && e.key === 'Escape') {
|
|
dialog.close()
|
|
}
|
|
})
|
|
})
|