ConfigManager
A configuration manager for persisting and retrieving client-side settings across sessions.
import { ConfigManager } from "@schukai/monster/source/components/host/config-manager.mjs";Introduction
The Monster ConfigManager stores and retrieves client-side configuration values. Use it when user preferences, layout decisions or other lightweight settings should persist across sessions.
When to use ConfigManager
- Use it for persistent UI settings: Theme, layout or filter preferences are typical examples.
- Use it when configuration belongs on the client: The component is useful for browser-local state, not server truth.
- Do not use it for sensitive application data: Security-relevant values need a stronger persistence model.
Config Manager
Persist a simple configuration value to IndexedDB and read it back.
Javascript
import '@schukai/monster/source/components/host/config-manager.mjs';
const manager = document.getElementById('config-manager');
const output = document.getElementById('config-manager-output');
document.getElementById('config-manager-save').addEventListener('click', () => {
manager.setConfig('theme', { mode: 'light' }).then(() => {
output.textContent = 'Saved theme setting.';
});
});
document.getElementById('config-manager-load').addEventListener('click', () => {
manager.getConfig('theme').then((value) => {
output.textContent = value ? JSON.stringify(value) : 'No value stored.';
});
});<script type="module">import '@schukai/monster/source/components/host/config-manager.mjs';
const manager = document.getElementById('config-manager');
const output = document.getElementById('config-manager-output');
document.getElementById('config-manager-save').addEventListener('click', () => {
manager.setConfig('theme', { mode: 'light' }).then(() => {
output.textContent = 'Saved theme setting.';
});
});
document.getElementById('config-manager-load').addEventListener('click', () => {
manager.getConfig('theme').then((value) => {
output.textContent = value ? JSON.stringify(value) : 'No value stored.';
});
});</script>HTML
<div id="config-manager-output">No value yet.</div>
<button id="config-manager-save">Save setting</button>
<button id="config-manager-load">Load setting</button>
<monster-config-manager id="config-manager"></monster-config-manager>Stylesheet
/** no additional stylesheet is defined **/Component Design
The config manager is a headless component with no visual UI. It exposes a simple API for storing data and can be styled only if you add custom markup around it.
HTML Structure
<monster-config-manager></monster-config-manager>JavaScript Initialization
const element = document.createElement('monster-config-manager');
document.body.appendChild(element);Exported
ConfigManagerDerived from
CustomElementOptions
The Options listed in this section are defined directly within the class. This class is derived from several parent classes, including the CustomElement class. Therefore, it inherits Options from these parent classes. If you cannot find a specific Options in this list, we recommend consulting the documentation of the CustomElement.
- since
- deprecated
Properties and Attributes
The Properties and Attributes listed in this section are defined directly within the class. This class is derived from several parent classes, including the CustomElement class and ultimately from HTMLElement. Therefore, it inherits Properties and Attributes from these parent classes. If you cannot find a specific Properties and Attributes in this list, we recommend consulting the documentation of the CustomElement.
data-monster-options: Sets the configuration options for the collapse component when used as an HTML attribute.data-monster-option-[name]: Sets the value of the configuration option[name]for the collapse component when used as an HTML attribute.
Methods
The methods listed in this section are defined directly within the class. This class is derived from several parent classes, including the CustomElement class and ultimately from HTMLElement. Therefore, it inherits methods from these parent classes. If you cannot find a specific method in this list, we recommend consulting the documentation of the CustomElement.
Constructor
constructor()- {symbol}
instanceof operator.Behavioral methods
ready()- {Promise}
State query methods
hasConfig(key)key{string}: key
- {Promise
}
Structural methods
getConfig(key)key{string}: key
- {Promise
}
setConfig(key,value)key{string}: keyvalue{*}: value
- {Promise
}
Static methods
[instanceSymbol]()- {symbol}
instanceof operator.getCSSStyleSheet()- {CSSStyleSheet[]}
getTag()- {string}
Lifecycle methods
Lifecycle methods are called by the environment and are usually not intended to be called directly.
[assembleMethodSymbol]()Other methods
deleteConfig(key)key{string}: key
- {Promise
}
Events
This component does not fire any public events. It may fire events that are inherited from its parent classes.