mirror of
https://github.com/urbit/shrub.git
synced 2024-12-20 09:21:42 +03:00
interface: added debug menu
This commit is contained in:
parent
f20da46745
commit
acfb0560bc
@ -80,7 +80,7 @@ export function CalmPrefs(props: {
|
|||||||
<Form>
|
<Form>
|
||||||
<BackButton/>
|
<BackButton/>
|
||||||
<Col borderBottom="1" borderBottomColor="washedGray" p="5" pt="4" gapY="5">
|
<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">
|
<Text color="black" fontSize={2} fontWeight="medium">
|
||||||
CalmEngine
|
CalmEngine
|
||||||
</Text>
|
</Text>
|
||||||
|
101
pkg/interface/src/views/apps/settings/components/lib/Debug.tsx
Normal file
101
pkg/interface/src/views/apps/settings/components/lib/Debug.tsx
Normal 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;
|
@ -1,4 +1,4 @@
|
|||||||
import React, { ReactNode } from 'react';
|
import React, { ReactNode, useEffect } from 'react';
|
||||||
import { useLocation } from 'react-router-dom';
|
import { useLocation } from 'react-router-dom';
|
||||||
import Helmet from 'react-helmet';
|
import Helmet from 'react-helmet';
|
||||||
|
|
||||||
@ -13,6 +13,8 @@ import { LeapSettings } from './components/lib/LeapSettings';
|
|||||||
import { useHashLink } from '~/logic/lib/useHashLink';
|
import { useHashLink } from '~/logic/lib/useHashLink';
|
||||||
import { SidebarItem as BaseSidebarItem } from '~/views/landscape/components/SidebarItem';
|
import { SidebarItem as BaseSidebarItem } from '~/views/landscape/components/SidebarItem';
|
||||||
import { PropFunc } from '~/types';
|
import { PropFunc } from '~/types';
|
||||||
|
import DebugPane from './components/lib/Debug';
|
||||||
|
import useHarkState from '~/logic/state/hark';
|
||||||
|
|
||||||
export const Skeleton = (props: { children: ReactNode }) => (
|
export const Skeleton = (props: { children: ReactNode }) => (
|
||||||
<Box height='100%' width='100%' px={[0, 3]} pb={[0, 3]} borderRadius={1}>
|
<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) {
|
export default function SettingsScreen(props: any) {
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
const hash = location.hash.slice(1);
|
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 (
|
return (
|
||||||
<>
|
<>
|
||||||
<Helmet defer={false}>
|
<Helmet defer={false}>
|
||||||
<title>Landscape - Settings</title>
|
<title>{ notificationsCount ? `(${String(notificationsCount) }) `: '' }Landscape - Settings</title>
|
||||||
</Helmet>
|
</Helmet>
|
||||||
<Skeleton>
|
<Skeleton>
|
||||||
<Col
|
<Col
|
||||||
@ -118,6 +135,7 @@ export default function SettingsScreen(props: any) {
|
|||||||
{hash === 'leap' && <LeapSettings api={props.api} />}
|
{hash === 'leap' && <LeapSettings api={props.api} />}
|
||||||
{hash === 'calm' && <CalmPrefs api={props.api} />}
|
{hash === 'calm' && <CalmPrefs api={props.api} />}
|
||||||
{hash === 'security' && <SecuritySettings api={props.api} />}
|
{hash === 'security' && <SecuritySettings api={props.api} />}
|
||||||
|
{hash === 'debug' && <DebugPane />}
|
||||||
</SettingsItem>
|
</SettingsItem>
|
||||||
</Col>
|
</Col>
|
||||||
</Skeleton>
|
</Skeleton>
|
||||||
|
Loading…
Reference in New Issue
Block a user