Skip to content
Snippets Groups Projects
Commit 11061075 authored by florian's avatar florian
Browse files

ENH: Load property-display config file

parent 23eeb73e
No related branches found
No related tags found
2 merge requests!89Release v0.10.0,!86F hide properties
......@@ -21,8 +21,36 @@
'use strict';
/**
*
* @requires jQuery (library)
* @requires log (singleton from loglevel library)
* @requires load_config (function from webcaosdb.js)
*/
var prop_display = new function () {}
var prop_display = new function ($, logger, load_config) {
/**
* Return the property-display config file; `ext_prop_display.json` by
* default.
*
* @param {string} resource - file name of the config file
*/
this.load_config = async function (resource) {
var conf = {};
try {
resource = resource || "ext_prop_display.json";
conf = await load_config(resource);
console.log(`Successfully loaded config: ${JSON.stringify(conf, undefined, 2)}`);
} catch (err) {
logger.error(err);
}
return conf;
}
this.init = async function() {
console.log("initializing ext_prop_display.js");
const conf = await this.load_config();
}
}($, log.getLogger("ext_prop_display"), load_config);
$(document).ready(() => caosdb_modules.register(prop_display));
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment