Parse template, refactor layout panes

This commit is contained in:
space-nuko
2023-05-24 14:35:58 -05:00
parent b30ecd3166
commit f793630064
22 changed files with 1028 additions and 656 deletions

View File

@@ -9,6 +9,8 @@ export type InterfaceState = {
pointerNearLeft: boolean,
showIndicator: boolean,
indicatorValue: any,
graphTransitioning: boolean
}
type InterfaceStateOps = {
@@ -22,6 +24,8 @@ const store: Writable<InterfaceState> = writable(
pointerNearLeft: false,
showIndicator: false,
indicatorValue: null,
graphTransitioning: false
})
const debounceDrag = debounce(() => { store.update(s => { s.showIndicator = false; return s }) }, 1000)

View File

@@ -29,7 +29,7 @@ const store: Writable<UIState> = writable(
uiEditMode: "widgets",
reconnecting: false,
isSavingToLocalStorage: false
isSavingToLocalStorage: false,
})
function reconnecting() {