53 lines
1.6 KiB
JavaScript
53 lines
1.6 KiB
JavaScript
window.addEventListener('load', e => {
|
|
submitSearch()
|
|
|
|
fileInputUpdatePath()
|
|
})
|
|
|
|
/*************************************************************
|
|
* File upload path
|
|
*************************************************************/
|
|
const fileInputUpdatePath = () => {
|
|
const updateFilePath = () => {
|
|
Array.from(document.querySelectorAll('input[type=file]')).forEach(input => {
|
|
input.addEventListener('change', e => {
|
|
const parts = e.target.value.split('\\')
|
|
const placeholder = input.parentNode.parentNode.querySelector('input[type=text]')
|
|
placeholder.setAttribute('value', parts[parts.length - 1])
|
|
})
|
|
})
|
|
}
|
|
|
|
updateFilePath()
|
|
|
|
document.addEventListener('DOMNodeInserted', e => {
|
|
updateFilePath()
|
|
})
|
|
}
|
|
|
|
/*************************************************************
|
|
* Search form on changelist view
|
|
*************************************************************/
|
|
const submitSearch = () => {
|
|
const searchbar = document.getElementById('searchbar')
|
|
const searchbarSubmit = document.getElementById('searchbar-submit')
|
|
|
|
if (searchbar !== null) {
|
|
searchbar.addEventListener('keypress', e => {
|
|
if (e.key === 'Enter') {
|
|
window.location = `?q=${e.target.value}`
|
|
e.preventDefault()
|
|
} else {
|
|
|
|
}
|
|
})
|
|
}
|
|
|
|
if (searchbarSubmit !== null && searchbar !== null) {
|
|
searchbarSubmit.addEventListener('click', e => {
|
|
e.preventDefault()
|
|
window.location = `?q=${searchbar.value}`
|
|
})
|
|
}
|
|
}
|