1 from engine.plugin import Plugin
3 class SimpleList (Plugin) :
5 # it would make sense to *not* define any constructor here and let Plugin kick in
6 # however it feels nicer this way as we document the settings used in our own template
7 # plus it's less confusing for any subclass if they can be sure which constructor to call
8 def __init__ (self, list=[], with_datatables=False, **settings):
9 Plugin.__init__ (self, **settings)
11 self.with_datatables = with_datatables
13 # SimpleList is useless per se anyways
14 def template_file (self): return "simplelist.html"
16 def requirements (self):
17 reqs = { 'js_files' : [ "js/plugin.js", "js/query.js",
18 "js/manifold-pubsub.js", "js/simplelist.js" ],
19 'css_files': [ "css/simplelist.css" ],
21 if self.with_datatables:
22 reqs['js_files'].append ("datatables/js/dataTables.js")
23 reqs['js_files'].append ("js/with-datatables.js")
26 # 'js_chunks' : "/* a javascript chunk */",
27 # 'css_chunks': "/* a css style */ ",
29 def json_settings_list (self): return ['plugin_uuid', 'query','query_uuid','key','value']