Merge pull request #4594 from tylershuster/debug-menu

interface: added debug menu
This commit is contained in:
matildepark 2021-03-19 17:58:11 -04:00 committed by GitHub
commit 0594e33b2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 122 additions and 3 deletions

View File

@ -80,7 +80,7 @@ export function CalmPrefs(props: {
<Form>
<BackButton/>
<Col borderBottom="1" borderBottomColor="washedGray" p="5" pt="4" gapY="5">
<Col gapY="1" mt="0">
<Col gapY="1" mt="0">
<Text color="black" fontSize={2} fontWeight="medium">
CalmEngine
</Text>

View File

@ -0,0 +1,101 @@
import { BaseInput, Box, Col, Text } from "@tlon/indigo-react";
import _ from "lodash";
import React, { useCallback, useState } from "react";
import { UseStore } from "zustand";
import { BaseState } from "~/logic/state/base";
import useContactState from "~/logic/state/contact";
import useGraphState from "~/logic/state/graph";
import useGroupState from "~/logic/state/group";
import useHarkState from "~/logic/state/hark";
import useInviteState from "~/logic/state/invite";
import useLaunchState from "~/logic/state/launch";
import useMetadataState from "~/logic/state/metadata";
import useSettingsState from "~/logic/state/settings";
import useStorageState from "~/logic/state/storage";
import { BackButton } from "./BackButton";
interface StoreDebuggerProps {
name: string;
useStore: UseStore<BaseState<any>>;
}
const objectToString = (obj: any): string => JSON.stringify(obj, null, ' ');
const StoreDebugger = (props: StoreDebuggerProps) => {
const name = props.name;
const state = props.useStore();
const [filter, setFilter] = useState('');
const [text, setText] = useState(objectToString(state));
const [visible, setVisible] = useState(false);
const tryFilter = useCallback((filterToTry) => {
let output: any = false;
try {
output = _.get(state, filterToTry, undefined);
} catch (e) { }
if (output) {
console.log(output);
setText(objectToString(output));
setFilter(filterToTry);
}
}, [state, filter, text]);
return (
<Box p={1}>
<Text cursor="pointer" onClick={() => setVisible(!visible)}>{name}</Text>
{visible && <Box>
<BaseInput
position="sticky"
top={0}
my={1}
p={2}
backgroundColor='white'
color='black'
border='1px solid transparent'
borderRadius='2'
fontSize={1}
placeholder="Drill Down"
width="100%"
onKeyUp={event => {
if (event.target.value) {
tryFilter(event.target.value);
} else {
setFilter('');
setText(objectToString(state));
}
}} />
<Text mono p='1' borderRadius='1' display='block' overflow='auto' backgroundColor='washedGray' style={{ whiteSpace: 'pre', wordWrap: 'break-word' }}>{text}</Text>
</Box>}
</Box>
);
};
const DebugPane = () => {
return (
<>
<BackButton />
<Col borderBottom="1" borderBottomColor="washedGray" p="5" pt="4" gapY="5">
<Col gapY="1" mt="0">
<Text color="black" fontSize={2} fontWeight="medium">
Debug Menu
</Text>
<Text gray>
Debug Landscape state. Click any state to see its contents and drill down.
</Text>
</Col>
<StoreDebugger name="Contacts" useStore={useContactState} />
<StoreDebugger name="Graph" useStore={useGraphState} />
<StoreDebugger name="Group" useStore={useGroupState} />
<StoreDebugger name="Hark" useStore={useHarkState} />
<StoreDebugger name="Invite" useStore={useInviteState} />
<StoreDebugger name="Launch" useStore={useLaunchState} />
<StoreDebugger name="Metadata" useStore={useMetadataState} />
<StoreDebugger name="Settings" useStore={useSettingsState} />
<StoreDebugger name="Storage" useStore={useStorageState} />
</Col>
</>
)
};
export default DebugPane;

View File

@ -1,4 +1,4 @@
import React, { ReactNode } from 'react';
import React, { ReactNode, useEffect } from 'react';
import { useLocation } from 'react-router-dom';
import Helmet from 'react-helmet';
@ -13,6 +13,8 @@ import { LeapSettings } from './components/lib/LeapSettings';
import { useHashLink } from '~/logic/lib/useHashLink';
import { SidebarItem as BaseSidebarItem } from '~/views/landscape/components/SidebarItem';
import { PropFunc } from '~/types';
import DebugPane from './components/lib/Debug';
import useHarkState from '~/logic/state/hark';
export const Skeleton = (props: { children: ReactNode }) => (
<Box height='100%' width='100%' px={[0, 3]} pb={[0, 3]} borderRadius={1}>
@ -70,11 +72,26 @@ function SettingsItem(props: { children: ReactNode }) {
export default function SettingsScreen(props: any) {
const location = useLocation();
const hash = location.hash.slice(1);
const notificationsCount = useHarkState(state => state.notificationsCount);
useEffect(() => {
const debugShower = (event) => {
if (hash) return;
if (event.key === '~') {
window.location.hash = 'debug';
}
};
document.addEventListener('keyup', debugShower);
return () => {
document.removeEventListener('keyup', debugShower);
}
}, [hash]);
return (
<>
<Helmet defer={false}>
<title>Landscape - Settings</title>
<title>{ notificationsCount ? `(${String(notificationsCount) }) `: '' }Landscape - Settings</title>
</Helmet>
<Skeleton>
<Col
@ -118,6 +135,7 @@ export default function SettingsScreen(props: any) {
{hash === 'leap' && <LeapSettings api={props.api} />}
{hash === 'calm' && <CalmPrefs api={props.api} />}
{hash === 'security' && <SecuritySettings api={props.api} />}
{hash === 'debug' && <DebugPane />}
</SettingsItem>
</Col>
</Skeleton>