mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-04-30 09:32:05 -04:00
- adds log.info/error/debug/warn/fatal - adds ability to write logs to any file - add CLI options in addition to env to set log levels
32 lines
762 B
QML
32 lines
762 B
QML
import QtQuick
|
|
import qs.Services
|
|
|
|
Item {
|
|
id: root
|
|
readonly property var log: Log.scoped("PluginGlobalVar")
|
|
|
|
required property string varName
|
|
property var defaultValue: undefined
|
|
|
|
readonly property var value: {
|
|
const pid = parent?.pluginId ?? "";
|
|
if (!pid || !PluginService.globalVars[pid]) {
|
|
return defaultValue;
|
|
}
|
|
return PluginService.globalVars[pid][varName] ?? defaultValue;
|
|
}
|
|
|
|
function set(newValue) {
|
|
const pid = parent?.pluginId ?? "";
|
|
if (pid) {
|
|
PluginService.setGlobalVar(pid, varName, newValue);
|
|
} else {
|
|
log.warn("Cannot set", varName, "- no pluginId from parent");
|
|
}
|
|
}
|
|
|
|
visible: false
|
|
width: 0
|
|
height: 0
|
|
}
|