Highlight a markdown input in red if required and submit is pressed

Kind of copy the behaviour of a Firefox input
Once the submit button has been pressed, highlight in red the text
input if it's required but empty
This commit is contained in:
tleb 2019-10-15 09:54:10 +02:00
parent ced90c23db
commit 13312e9879
1 changed files with 31 additions and 0 deletions

View File

@ -166,5 +166,36 @@
},
]
});
$(function() {
let textarea = document.getElementById('{{ widget.attrs.id }}')
let submit = textarea
.closest('form')
.querySelector('input[type="submit"]')
let parentDiv = textarea.parentElement
let submitPressed = false
function checkMarkdownInput() {
// an attribute is null if it does not exist, else a string
let required = textarea.getAttribute('required') != null
let length = textarea.value.trim().length
if (required && length == 0) {
parentDiv.style.boxShadow = 'red 0px 0px 1.5px 1px'
} else {
parentDiv.style.boxShadow = ''
}
}
submit.addEventListener('click', () => {
submitPressed = true
checkMarkdownInput()
})
easymde.codemirror.on('change', () => {
if (submitPressed) {
checkMarkdownInput()
}
})
})
</script>
</div>