]> Johnzone git - stable.git/commitdiff
stableparts view can now load bays dynamically
authorJohn Janus <mail@johnzone.org>
Mon, 15 Apr 2019 23:35:56 +0000 (01:35 +0200)
committerJohn Janus <mail@johnzone.org>
Mon, 15 Apr 2019 23:35:56 +0000 (01:35 +0200)
needs some love, especially concerning number of requests....

core/templates/core/bay_detail.html
core/templates/core/stablepart_list.html
core/views.py
static/base.js [new file with mode: 0644]
templates/base.html

index 9496e419c3775bda87354076580d986a47295f87..226fc26cb275a878bf155fe4ce91edc9f2ac810d 100644 (file)
@@ -1,8 +1,3 @@
-{% extends 'base.html' %}
-
-{% block title %}Bay {{ object }} - {{ block.super }}{% endblock %}
-
-{% block main %}
 <div class="card">
   <h3>{{ object }}</h3>
   <div>
@@ -15,4 +10,3 @@
     </ul>
   </div>
 </div>
-{% endblock %}
index 284fa00f8f1970ecda5c4a5cccde1f141df26c30..40625a3eae30a426e738b23a9a034e1f5614683c 100644 (file)
@@ -3,31 +3,14 @@
 {% block title %}Stable Parts - {{ block.super }}{% endblock %}
 
 {% block main %}
-<ul>
-  {% for sp in object_list %}
-  <li>{{ sp }}
-    <ul>
-      {% for bay in sp.bays.all %}
-      <li>
-        <div class="card">
-          <h3>{{ bay }}</h3>
-          {% for inbay in bay.isinbay_set.all %}
-          <div>{{ inbay.in_bay_since }} bis {{ inbay.in_bay_until }}: {{ inbay.horse }}</div>
-          {% endfor %}
-        </div>
-      </li>
-      {% endfor %}
-    </ul>
-  </li>
-  {% endfor %}
-</ul>
+<div id="bays"></div>
 {% endblock %}
-<!-- {% block nav %}
+{% block nav %}
 <ul>
   {% for sp in object_list %}
-  <li><a href="/stablepart/{{sp.id}}">{{ sp }}</a></li>
+  <li><button onclick="getBayCards('bays', [{% for bay in sp.bays.all %} {{bay.id}}, {% endfor %}])">{{ sp }}</button></li>
   {% empty %}
   <li>No Stable yet</li>
   {% endfor %}
 </ul>
-{% endblock %} -->
\ No newline at end of file
+{% endblock %}
index 23b09c0ea8c29e5726be736dbbc554cb64dc9e7d..9a747f5eec658a4c14d80a6562284fddc28bd7c2 100644 (file)
@@ -11,7 +11,7 @@ class StableParts(ListView):
 
 class StablePartDetail(DetailView):
     model = StablePart
-    
-    
+
+
 class BayDetail(DetailView):
     model = Bay
diff --git a/static/base.js b/static/base.js
new file mode 100644 (file)
index 0000000..7845bff
--- /dev/null
@@ -0,0 +1,32 @@
+function setMainCards( id, cards ) {
+    document.getElementById(id).innerHTML = cards;
+    
+}
+
+function generateCard( title, content ) {
+    return '<div class="card"><h3>'.concat(title).concat('</h3><div>').concat(content).concat('</div></div>');
+}
+
+function generateCardFromObject(card) {
+    return generateCard(card.title, card.content);
+}
+
+function generateCards() {
+    // console.log(this.response);
+    cards += this.response;
+    document.getElementById('bays').innerHTML = cards;
+    // console.log(cards);
+}
+var cards;
+function getBayCards(id, bayIds) {
+    // console.log(bayIds);
+    cards = '';
+    
+    for (const bay of bayIds) {
+        const xhr = new XMLHttpRequest();
+        // console.log('loading bay', bay);
+        xhr.open('GET', '/bay/'.concat(bay));
+        xhr.addEventListener('load', generateCards);
+        xhr.send();
+    }
+}
index 7e5e1cf8d774045d659fb46aa2d2754f2408c9c0..0c9c994a10fcad4bbff886be8e3351846f688382 100644 (file)
@@ -5,6 +5,7 @@
     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
     {% load static %}
     <link rel="stylesheet" type="text/css" href="{% static 'base.css' %}" />
+    <script src="{% static 'base.js' %}"></script>
     <title>{% block title %} Stable Management {% endblock %}</title>
   </head>
   <body>