Pure javascript for dynamically adding forms to formsets. Works, but id

attributes are not properly incremented and will cause unknown trouble in
the future. Strangely enough, it works for now!
main
Jaap Joris Vens 2020-03-06 14:37:25 +01:00
rodzic e4950e8d47
commit f715a472d7
1 zmienionych plików z 74 dodań i 28 usunięć

Wyświetl plik

@ -32,8 +32,10 @@
{% endif %}
{% if formset %}
<div id="formset">
{{formset.management_form}}
{% for form in formset %}
<div class="formset_form">
{{form.media}}
{% for field in form.hidden_fields %}
{{field}}
@ -53,33 +55,77 @@
</div>
</div>
</section>
</div>
{% endfor %}
</div>
<style>
div.formset_form:last-child {
display: none;
}
</style>
<section>
<div class="wrapper">
<a class="button" href="#" onclick="addForm(); return false">+</a>
</div>
</section>
{% endif %}
<div class="edit page">
<button><img src="{% static 'cms/ok.svg' %}"></button>
</div>
</form>
{% endblock %}
{% block extrabody %}
<script type="text/javascript" src="/static/admin/js/urlify.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function(event) {
NodeList.prototype.last = function(){
return this[this.length - 1];
};
// Auto-resize <textarea's>
var formset = document.getElementById('formset');
var counter = formset.firstElementChild;
var re = /(.+)-(\d)-(.+)/;
function updateIndex(el) {
matches = el.name.match(re);
if (matches) {
prefix = matches[1];
suffix = matches[3];
index = parseInt(matches[2]) + 1;
el.name = `${prefix}-${index}-${suffix}`;
}
}
function addForm() {
final_form = document.querySelectorAll('div.formset_form').last();
extra_form = final_form.cloneNode(true);
inputs = extra_form.querySelectorAll("input, select, textarea");
for (input of inputs) {
updateIndex(input);
}
formset.appendChild(extra_form);
counter.value = parseInt(counter.value) + 1;
resizeTextareas();
}
function resizeTextareas() {
var tx = document.getElementsByTagName('textarea');
for (var i = 0; i < tx.length; i++) {
tx[i].setAttribute('style', 'height:0;overflow-y:hidden;');
tx[i].style.height = (tx[i].scrollHeight) + 'px';
tx[i].addEventListener("input", OnInput, false);
tx[i].addEventListener('input', function() {
console.log(this.scrollHeight);
this.style.height = (this.scrollHeight) + 1 + 'px'; // why the 1???
});
}
function OnInput() {
this.style.height = '0';
this.style.height = (this.scrollHeight) + 'px';
}
document.addEventListener("DOMContentLoaded", function(event) {
resizeTextareas();
// My own implementation of Django's prepopulate.js
var slugfield = document.getElementById('id_slug');