bug fixes: dashboard utility functions

pull/17/head
Steve Nyemba 2 months ago
parent b932ff8ba8
commit 338d9fe757

@ -184,8 +184,11 @@ def plug_info (manifest:Annotated[str,typer.Argument(help="path to manifest file
""" """
manifest = get_manifest(manifest) manifest = get_manifest(manifest)
_config = config.get(manifest) _config = config.get(manifest)
if _config :
_root = os.sep.join(manifest.split(os.sep)[:-1] + [_config['layout']['root'],'_plugins']) _root = os.sep.join(manifest.split(os.sep)[:-1] + [_config['layout']['root'],'_plugins'])
if os.path.exists(_root) : else :
_root = None
if _root and os.path.exists(_root) :
# files = os.listdir(_root) # files = os.listdir(_root)
_msg = f"""{FAILED} no operation was specified, please use --help option""" _msg = f"""{FAILED} no operation was specified, please use --help option"""
# if 'plugins' in _config : # if 'plugins' in _config :
@ -228,8 +231,8 @@ def plug_info (manifest:Annotated[str,typer.Argument(help="path to manifest file
print() print()
print(_msg) print(_msg)
else: else:
_msg = f"""{FAILED} no plugin folder found """ _msg = f"""{FAILED} No plugin folder could be found in {manifest}"""
pass print (_msg)
@cli.command (name='create') @cli.command (name='create')

@ -9,42 +9,42 @@ import os
# #
def stats (_config) : # def stats (_config) :
""" # """
Returns the statistics of the plugins # Returns the statistics of the plugins
""" # """
_data = [] # _data = []
for _name in _config : # for _name in _config :
_log = {"files":_name,"loaded":len(_config[_name]),"logs":json.dumps(_config[_name])} # _log = {"files":_name,"loaded":len(_config[_name]),"logs":json.dumps(_config[_name])}
_data.append(_log) # _data.append(_log)
return pd.DataFrame(_data) # return pd.DataFrame(_data)
pass # pass
def load(_path,_filename,_name) : # def load(_path,_filename,_name) :
""" # """
This function will load external module form a given location and return a pointer to a function in a given module # This function will load external module form a given location and return a pointer to a function in a given module
:path absolute path of the file (considered plugin) to be loaded # :path absolute path of the file (considered plugin) to be loaded
:name name of the function to be applied # :name name of the function to be applied
""" # """
# _path = _args['path'] #os.sep.join([_args['root'],'plugin']) # # _path = _args['path'] #os.sep.join([_args['root'],'plugin'])
if os.path.isdir(_path): # if os.path.isdir(_path):
files = os.listdir(_path) # files = os.listdir(_path)
if files : # if files :
files = [name for name in files if name.endswith('.py') and name == _filename] # files = [name for name in files if name.endswith('.py') and name == _filename]
if files: # if files:
_path = os.sep.join([_path,files[0]]) # _path = os.sep.join([_path,files[0]])
else: # else:
return None # return None
else: # else:
return None # return None
#-- We have a file ... # #-- We have a file ...
# _name = _args['name'] # # _name = _args['name']
spec = importlib.util.spec_from_file_location(_filename, _path) # spec = importlib.util.spec_from_file_location(_filename, _path)
module = importlib.util.module_from_spec(spec) # module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module) # spec.loader.exec_module(module)
# # #
# we need to make sure we have the plugin decorator here to make sure # # we need to make sure we have the plugin decorator here to make sure
return getattr(module,_name) if hasattr(module,_name) else None # return getattr(module,_name) if hasattr(module,_name) else None

@ -5,6 +5,9 @@ dialog.show = function(_args,_pointer){
// http.setData({title:_title,html:_message},'application/json') // http.setData({title:_title,html:_message},'application/json')
var uri = _args.context+'/dialog' var uri = _args.context+'/dialog'
http.setHeader('dom',_args.title) http.setHeader('dom',_args.title)
if (_args.uri.match(/=/)){
_args.uri = _args.uri.split(/=/)[1]
}
http.setHeader('uri',_args.uri) http.setHeader('uri',_args.uri)
http.get(uri,function(x){ http.get(uri,function(x){
$('.jxmodal').remove() $('.jxmodal').remove()

@ -0,0 +1,14 @@
var Search = function(_searchBoxId,_paneId,_bind){
var _text = jx.dom.get.value(_searchBoxId)
_regex = new RegExp(_text.toLowerCase())
_paneId = (_paneId['#'])?_paneId:('#'+_paneId)
$(_paneId).slideUp()
(_paneId).children().each(_index=>{
_div = $(_paneId).children()[_index]
if (_div._data.match(_regex)){
$(_div).slideDown()
}
})
}
Loading…
Cancel
Save