]> git.0d.be Git - panikweb.git/commitdiff
import custom panik gallery template & script
authorFrédéric Péters <fpeters@0d.be>
Thu, 11 Jun 2020 09:45:42 +0000 (11:45 +0200)
committerFrédéric Péters <fpeters@0d.be>
Thu, 11 Jun 2020 09:45:42 +0000 (11:45 +0200)
panikweb_templates/static/js/combo.gallery.js [new file with mode: 0644]
panikweb_templates/templates/combo/gallery.html

diff --git a/panikweb_templates/static/js/combo.gallery.js b/panikweb_templates/static/js/combo.gallery.js
new file mode 100644 (file)
index 0000000..a91e714
--- /dev/null
@@ -0,0 +1,29 @@
+function gallery(element) {
+  var element_id = '#' + $(element).attr('id');
+  $(element).sortable({
+    items: '> li',
+    containment: 'parent',
+    placeholder: 'empty-image',
+    update: function(event, ui) {
+      var new_order = $(element).find('> li').map(function() { return $(this).data('object-id'); }).get().join();
+      $.ajax({
+        url: $(element).data('order-url'),
+        data: {'new-order': new_order},
+        success: function(data, status) {
+          $(element).replaceWith($(data).find(element_id));
+          gallery($(element_id));
+        }
+      });
+    }
+  });
+  $('.image-delete').on('click', function() {
+    $.ajax({
+      url: $(this).attr('href'),
+      success: function(data, status) {
+        $(element).replaceWith($(data).find(element_id));
+        gallery($(element_id));
+      }
+    });
+    return false;
+  });
+};
index 49451a96643d81a480042e482e8bdcc81908c477..6be3c9f22a8b134cd531da44c814602951689594 100644 (file)
@@ -1,28 +1,32 @@
 {% load thumbnail %}
-{% if cell.title %}<h3>{{ cell.title }}</h3>{% endif %}
 <div class="gallery" id="gallery-{{cell.id}}">
 {% for image in cell.image_set.all %}
   {% if forloop.first %}
-<div class="first" style="display: none;">
-<img src="#"/>
-<span class="gallery-legend"></span>
+{% thumbnail image.image "640x480" crop="50% 25%" as im %}
+<div class="first">
+<img src="{{ im.url }}"/>
+<span>{% if image.title %}{{ image.title }}{% endif %}</span>
 </div>
-<div>
-  {% endif %}
-{% thumbnail image.image "200x100" crop="50% 25%" as im %}
-{% if cell.slug == 'portrait' %}
-{% thumbnail image.image "480x640" crop="50% 25%" as im_large %}
-<span class="image" data-image-large="{{ im_large.url }}"><img src="{{ im.url }}"
-        class="portrait" {% if image.title %} title="{{image.title}}" {% endif %}/></span>
+<div> {# extra opened <div> #}
 {% endthumbnail %}
-{% else %}
+  {% endif %}
+{% thumbnail image.image "60x60" crop="50% 25%" as im %}
 {% thumbnail image.image "640x480" crop="50% 25%" as im_large %}
-<span class="image" data-image-large="{{ im_large.url }}"><img src="{{ im.url }}"
+<span data-image-large="{{ im_large.url }}"><img src="{{ im.url }}"
         {% if image.title %} title="{{image.title}}" {% endif %}/></span>
 {% endthumbnail %}
-
-{% endif %}
 {% endthumbnail %}
+
+  {% if forloop.last %}
+  </div> {# close extra <div> #}
+  {% endif %}
 {% endfor %}
 </div>
-</div>
+<script type="text/javascript">
+$(function() {
+  var $gallery = $('#gallery-{{cell.id}}');
+  $gallery.find('span').on('click', function() {
+    $gallery.find('div.first img').attr('src', $(this).data('image-large'));
+  });
+});
+</script>