* refactor TextViewer Content component * open account data inside setting window * close account data edit window on cancel when adding new
113 lines
3.9 KiB
TypeScript
113 lines
3.9 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { Box, Text, IconButton, Icon, Icons, Scroll, Switch, Button } from 'folds';
|
|
import { Page, PageContent, PageHeader } from '../../../components/page';
|
|
import { SequenceCard } from '../../../components/sequence-card';
|
|
import { SequenceCardStyle } from '../styles.css';
|
|
import { SettingTile } from '../../../components/setting-tile';
|
|
import { useSetting } from '../../../state/hooks/settings';
|
|
import { settingsAtom } from '../../../state/settings';
|
|
import { useMatrixClient } from '../../../hooks/useMatrixClient';
|
|
import { AccountDataEditor } from './AccountDataEditor';
|
|
import { copyToClipboard } from '../../../utils/dom';
|
|
import { AccountData } from './AccountData';
|
|
|
|
type DeveloperToolsProps = {
|
|
requestClose: () => void;
|
|
};
|
|
export function DeveloperTools({ requestClose }: DeveloperToolsProps) {
|
|
const mx = useMatrixClient();
|
|
const [developerTools, setDeveloperTools] = useSetting(settingsAtom, 'developerTools');
|
|
const [expand, setExpend] = useState(false);
|
|
const [accountDataType, setAccountDataType] = useState<string | null>();
|
|
|
|
if (accountDataType !== undefined) {
|
|
return (
|
|
<AccountDataEditor
|
|
type={accountDataType ?? undefined}
|
|
requestClose={() => setAccountDataType(undefined)}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Page>
|
|
<PageHeader outlined={false}>
|
|
<Box grow="Yes" gap="200">
|
|
<Box grow="Yes" alignItems="Center" gap="200">
|
|
<Text size="H3" truncate>
|
|
Developer Tools
|
|
</Text>
|
|
</Box>
|
|
<Box shrink="No">
|
|
<IconButton onClick={requestClose} variant="Surface">
|
|
<Icon src={Icons.Cross} />
|
|
</IconButton>
|
|
</Box>
|
|
</Box>
|
|
</PageHeader>
|
|
<Box grow="Yes">
|
|
<Scroll hideTrack visibility="Hover">
|
|
<PageContent>
|
|
<Box direction="Column" gap="700">
|
|
<Box direction="Column" gap="100">
|
|
<Text size="L400">Options</Text>
|
|
<SequenceCard
|
|
className={SequenceCardStyle}
|
|
variant="SurfaceVariant"
|
|
direction="Column"
|
|
gap="400"
|
|
>
|
|
<SettingTile
|
|
title="Enable Developer Tools"
|
|
after={
|
|
<Switch
|
|
variant="Primary"
|
|
value={developerTools}
|
|
onChange={setDeveloperTools}
|
|
/>
|
|
}
|
|
/>
|
|
</SequenceCard>
|
|
{developerTools && (
|
|
<SequenceCard
|
|
className={SequenceCardStyle}
|
|
variant="SurfaceVariant"
|
|
direction="Column"
|
|
gap="400"
|
|
>
|
|
<SettingTile
|
|
title="Access Token"
|
|
description="Copy access token to clipboard."
|
|
after={
|
|
<Button
|
|
onClick={() =>
|
|
copyToClipboard(mx.getAccessToken() ?? '<NO_ACCESS_TOKEN_FOUND>')
|
|
}
|
|
variant="Secondary"
|
|
fill="Soft"
|
|
size="300"
|
|
radii="300"
|
|
outlined
|
|
>
|
|
<Text size="B300">Copy</Text>
|
|
</Button>
|
|
}
|
|
/>
|
|
</SequenceCard>
|
|
)}
|
|
</Box>
|
|
{developerTools && (
|
|
<AccountData
|
|
expand={expand}
|
|
onExpandToggle={setExpend}
|
|
onSelect={setAccountDataType}
|
|
/>
|
|
)}
|
|
</Box>
|
|
</PageContent>
|
|
</Scroll>
|
|
</Box>
|
|
</Page>
|
|
);
|
|
}
|