mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
116 lines
4.1 KiB
TypeScript
116 lines
4.1 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import React, { useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { Input, InputValidators } from "../input";
|
|
import { SubTitle } from "../layout/sub-title";
|
|
import type { UserStore } from "../../../common/user-store";
|
|
import type { SelectOption } from "../select";
|
|
import { Select } from "../select";
|
|
import { Switch } from "../switch";
|
|
import { packageMirrors } from "../../../common/user-store/preferences-helpers";
|
|
import directoryForBinariesInjectable from "../../../common/app-paths/directory-for-binaries/directory-for-binaries.injectable";
|
|
import { withInjectables } from "@ogre-tools/injectable-react";
|
|
import userStoreInjectable from "../../../common/user-store/user-store.injectable";
|
|
import directoryForKubectlBinariesInjectable from "../../../common/app-paths/directory-for-kubectl-binaries/directory-for-kubectl-binaries.injectable";
|
|
|
|
interface Dependencies {
|
|
defaultPathForGeneralBinaries: string;
|
|
defaultPathForKubectlBinaries: string;
|
|
userStore: UserStore;
|
|
}
|
|
|
|
const NonInjectedKubectlBinaries: React.FC<Dependencies> = observer(
|
|
({ defaultPathForGeneralBinaries, defaultPathForKubectlBinaries, userStore }) => {
|
|
const [downloadPath, setDownloadPath] = useState(
|
|
userStore.downloadBinariesPath || "",
|
|
);
|
|
|
|
const [binariesPath, setBinariesPath] = useState(
|
|
userStore.kubectlBinariesPath || "",
|
|
);
|
|
|
|
const pathValidator = downloadPath ? InputValidators.isPath : undefined;
|
|
const downloadMirrorOptions: SelectOption<string>[] = Array.from(
|
|
packageMirrors.entries(),
|
|
([value, { label, platforms }]) => ({ value, label, platforms }),
|
|
);
|
|
|
|
const save = () => {
|
|
userStore.downloadBinariesPath = downloadPath;
|
|
userStore.kubectlBinariesPath = binariesPath;
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<section>
|
|
<SubTitle title="Kubectl binary download" />
|
|
<Switch
|
|
checked={userStore.downloadKubectlBinaries}
|
|
onChange={() => userStore.downloadKubectlBinaries = !userStore.downloadKubectlBinaries}
|
|
>
|
|
Download kubectl binaries matching the Kubernetes cluster version
|
|
</Switch>
|
|
</section>
|
|
|
|
<section>
|
|
<SubTitle title="Download mirror" />
|
|
<Select
|
|
id="download-mirror-input"
|
|
placeholder="Download mirror for kubectl"
|
|
options={downloadMirrorOptions}
|
|
value={userStore.downloadMirror}
|
|
onChange={({ value }: SelectOption) => userStore.downloadMirror = value}
|
|
disabled={!userStore.downloadKubectlBinaries}
|
|
isOptionDisabled={({ platforms }) =>
|
|
!platforms.has(process.platform)
|
|
}
|
|
themeName="lens"
|
|
/>
|
|
</section>
|
|
|
|
<section>
|
|
<SubTitle title="Directory for binaries" />
|
|
<Input
|
|
theme="round-black"
|
|
value={downloadPath}
|
|
placeholder={defaultPathForGeneralBinaries}
|
|
validators={pathValidator}
|
|
onChange={setDownloadPath}
|
|
onBlur={save}
|
|
disabled={!userStore.downloadKubectlBinaries}
|
|
/>
|
|
<div className="hint">The directory to download binaries into.</div>
|
|
</section>
|
|
|
|
<section>
|
|
<SubTitle title="Path to kubectl binary" />
|
|
<Input
|
|
theme="round-black"
|
|
placeholder={defaultPathForKubectlBinaries}
|
|
value={binariesPath}
|
|
validators={pathValidator}
|
|
onChange={setBinariesPath}
|
|
onBlur={save}
|
|
disabled={userStore.downloadKubectlBinaries}
|
|
/>
|
|
</section>
|
|
</>
|
|
);
|
|
},
|
|
);
|
|
|
|
export const KubectlBinaries = withInjectables<Dependencies>(
|
|
NonInjectedKubectlBinaries,
|
|
{
|
|
getProps: (di) => ({
|
|
defaultPathForGeneralBinaries: di.inject(directoryForBinariesInjectable),
|
|
defaultPathForKubectlBinaries: di.inject(directoryForKubectlBinariesInjectable),
|
|
userStore: di.inject(userStoreInjectable),
|
|
}),
|
|
},
|
|
);
|