feat: added copy button to debug window

pull/3157/head
yougotwill 8 months ago
parent 320822f490
commit 3ad305f451

@ -5,6 +5,8 @@ import { switchThemeTo } from '../themes/switchTheme';
import { fetchNodeLog } from '../util/logging';
import { SessionButton, SessionButtonType } from './basic/SessionButton';
import { SessionIconButton } from './icon';
import { CopyToClipboardButton } from './buttons';
import { Flex } from './basic/Flex';
const StyledContent = styled.div`
background-color: var(--modal-background-content-color);
@ -54,7 +56,14 @@ const DebugLogTextArea = (props: { content: string }) => {
const DebugLogButtons = (props: { content: string }) => {
return (
<div className="buttons">
<Flex
container={true}
width={'fit-content'}
justifyContent={'flex-start'}
alignItems={'center'}
flexGap="var(--margins-md)"
className="buttons"
>
<SessionButton
text={window.i18n('saveLogToDesktop')}
buttonType={SessionButtonType.Simple}
@ -66,7 +75,12 @@ const DebugLogButtons = (props: { content: string }) => {
(window as any).saveLog(props.content);
}}
/>
</div>
<CopyToClipboardButton
copyContent={props.content}
buttonType={SessionButtonType.Simple}
hotkey={true}
/>
</Flex>
);
};
@ -107,7 +121,7 @@ export const DebugLogView = () => {
}, []);
return (
<SessionTheme>
<SessionTheme runSetup={false}>
<StyledContent>
<div>
<SessionIconButton

@ -52,10 +52,19 @@ const setupTheme = async () => {
}
};
export const SessionTheme = ({ children }: { children: ReactNode }) => {
export const SessionTheme = ({
children,
runSetup = true,
}: {
children: ReactNode;
/** If we don't have access to some window functions or Storage yet we might not want to run the theme setup */
runSetup?: boolean;
}) => {
useMount(() => {
setThemeValues(THEME_GLOBALS);
void setupTheme();
if (runSetup) {
void setupTheme();
}
});
return children;
};

Loading…
Cancel
Save