Skip to content
Snippets Groups Projects
Commit d2e3c103 authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[dome] more settings hooks

parent 034a846b
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,14 @@ interface Settings<A> {
/**
Global settings.
This utility class allows you to share accross several
components and windows the parameters associated to global settings.
However, it is important to note that global settings are uniquely identified
by their `name`. If you have multiple definitions of global settings class
with the same name, they will actually share the same value. Hence, if they
have different default values or decoders, this might leads to strange
results.
*/
export class GlobalSettings<A> {
name: string;
......
......@@ -636,6 +636,25 @@ export function useStringOptSettings(key: string | undefined) {
);
}
/** Direct shortcut to [[dome/data/settings.useWindowSettings]]. */
export const useWindowSettings = Settings.useWindowSettings;
/**
Utility shortcut to [[dome/data/settings.useGlobalSettings]]
with global settings class created on-the-fly.
*/
export function useGlobalSettings<A extends Json.json>(
globalKey: string,
decoder: Json.Loose<A>,
defaultValue: A
) {
// Object creation is cheaper than useMemo...
const G = new Settings.GlobalSettings(
globalKey, decoder, Json.identity, defaultValue
);
return Settings.useGlobalSettings(G);
}
// --------------------------------------------------------------------------
// --- Pretty Printing (Browser Console)
// --------------------------------------------------------------------------
......
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