simplelist includes spin.all.js
[unfold.git] / plugins / simplelist.py
index d08266b..d4cefb1 100644 (file)
@@ -1,14 +1,26 @@
-from django.template.loader import render_to_string
-
 from engine.plugin import Plugin
 
 class SimpleList (Plugin) :
 
-    def template (self):        return "simplelist.html"
+    # only deal with our own stuff here and let Plugin handle the rest
+    def __init__ (self, list=[], with_datatables=False, **settings):
+        Plugin.__init__ (self, **settings)
+        self.list=list
+        self.with_datatables = with_datatables
 
-    def media_js ():            return [ 'js/simplelist.js' ]
+    # SimpleList is useless per se anyways
+    def template_file (self): return "simplelist.html"
 
-    def media_css ():           return { 'all': ('css/simplelist.css'), }
+    def requirements (self):
+        reqs = { 'js_files' : [ "js/simplelist.js", "js/plugin.js", "js/query.js", "js/onavail.js",
+                                "js/manifold-pubsub.js", "js/manifold-async.js", "spin/spin.all.js", 
+] ,
+                 'css_files': [ "css/simplelist.css" ],
+                 }
+        if self.with_datatables:
+            reqs['js_files'].append ("datatables/js/dataTables.js")
+            reqs['js_files'].append ("js/with-datatables.js")
+        return reqs
+    
+    def json_settings_list (self): return ['plugin_uuid', 'query','query_uuid','key','value']
 
-    # SimpleList is useless per se anyways
-    def title (self) : return "Title for Simple List"