mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
113 lines
3.4 KiB
TypeScript
113 lines
3.4 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import type { UserStore } from "../../../common/user-store";
|
|
import { SubTitle } from "../layout/sub-title";
|
|
import { Input, InputValidators } from "../input";
|
|
import { Switch } from "../switch";
|
|
import { Select } from "../select";
|
|
import type { ThemeStore } from "../../theme.store";
|
|
import { Preferences } from "./preferences";
|
|
import { withInjectables } from "@ogre-tools/injectable-react";
|
|
import userStoreInjectable from "../../../common/user-store/user-store.injectable";
|
|
import themeStoreInjectable from "../../theme-store.injectable";
|
|
import defaultShellInjectable from "./default-shell.injectable";
|
|
|
|
interface Dependencies {
|
|
userStore: UserStore;
|
|
themeStore: ThemeStore;
|
|
defaultShell: string;
|
|
}
|
|
|
|
const NonInjectedTerminal = observer(({ userStore, themeStore, defaultShell }: Dependencies) => {
|
|
const themeOptions = [
|
|
"",
|
|
...themeStore.themes.keys(),
|
|
].map(name => ({ name }));
|
|
|
|
return (
|
|
<Preferences data-testid="terminal-preferences-page">
|
|
<section>
|
|
<h2>Terminal</h2>
|
|
|
|
<section id="shell">
|
|
<SubTitle title="Terminal Shell Path" />
|
|
<Input
|
|
theme="round-black"
|
|
placeholder={defaultShell}
|
|
value={userStore.shell}
|
|
onChange={(value) => userStore.shell = value}
|
|
/>
|
|
</section>
|
|
|
|
<section id="terminalSelection">
|
|
<SubTitle title="Terminal copy & paste" />
|
|
<Switch
|
|
checked={userStore.terminalCopyOnSelect}
|
|
onChange={() => userStore.terminalCopyOnSelect = !userStore.terminalCopyOnSelect}
|
|
>
|
|
Copy on select and paste on right-click
|
|
</Switch>
|
|
</section>
|
|
|
|
<section id="terminalTheme">
|
|
<SubTitle title="Terminal theme" />
|
|
<Select
|
|
themeName="lens"
|
|
options={themeOptions}
|
|
getOptionLabel={option => {
|
|
const theme = themeStore.themes.get(option.name);
|
|
|
|
if (theme) {
|
|
return theme.name;
|
|
}
|
|
|
|
return "Match System Theme";
|
|
}}
|
|
value={{ name: userStore.terminalTheme }}
|
|
onChange={option => userStore.terminalTheme = option?.name ?? ""}
|
|
/>
|
|
</section>
|
|
|
|
<section>
|
|
<SubTitle title="Font size" />
|
|
<Input
|
|
theme="round-black"
|
|
type="number"
|
|
min={10}
|
|
validators={InputValidators.isNumber}
|
|
value={userStore.terminalConfig.fontSize.toString()}
|
|
onChange={(value) => userStore.terminalConfig.fontSize = Number(value)}
|
|
/>
|
|
</section>
|
|
<section>
|
|
<SubTitle title="Font family" />
|
|
<Input
|
|
theme="round-black"
|
|
type="text"
|
|
value={userStore.terminalConfig.fontFamily}
|
|
onChange={(value) => userStore.terminalConfig.fontFamily = value}
|
|
/>
|
|
</section>
|
|
</section>
|
|
</Preferences>
|
|
);
|
|
});
|
|
|
|
export const Terminal = withInjectables<Dependencies>(
|
|
NonInjectedTerminal,
|
|
|
|
{
|
|
getProps: (di) => ({
|
|
userStore: di.inject(userStoreInjectable),
|
|
themeStore: di.inject(themeStoreInjectable),
|
|
defaultShell: di.inject(defaultShellInjectable),
|
|
}),
|
|
},
|
|
);
|
|
|