mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Caleb Xu <calebcenter@live.com> Signed-off-by: Caleb Xu <calebcenter@live.com>
109 lines
3.3 KiB
TypeScript
109 lines
3.3 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import styles from "./install.module.scss";
|
|
import React from "react";
|
|
import { prevDefault } from "../../utils";
|
|
import { Button } from "../button";
|
|
import { Icon } from "../icon";
|
|
import { observer } from "mobx-react";
|
|
import { Input, InputValidators } from "../input";
|
|
import { SubTitle } from "../layout/sub-title";
|
|
import { TooltipPosition } from "../tooltip";
|
|
import type { ExtensionInstallationStateStore } from "../../../extensions/extension-installation-state-store/extension-installation-state-store";
|
|
import extensionInstallationStateStoreInjectable from "../../../extensions/extension-installation-state-store/extension-installation-state-store.injectable";
|
|
import { withInjectables } from "@ogre-tools/injectable-react";
|
|
import { unionInputValidatorsAsync } from "../input/input_validators";
|
|
|
|
export interface InstallProps {
|
|
installPath: string;
|
|
supportedFormats: string[];
|
|
onChange: (path: string) => void;
|
|
installFromInput: () => void;
|
|
installFromSelectFileDialog: () => void;
|
|
}
|
|
|
|
interface Dependencies {
|
|
extensionInstallationStateStore: ExtensionInstallationStateStore;
|
|
}
|
|
|
|
const installInputValidator = unionInputValidatorsAsync(
|
|
{
|
|
message: "Invalid URL, absolute path, or extension name",
|
|
},
|
|
InputValidators.isUrl,
|
|
InputValidators.isExtensionNameInstall,
|
|
InputValidators.isPath,
|
|
);
|
|
|
|
const NonInjectedInstall: React.FC<Dependencies & InstallProps> = ({
|
|
installPath,
|
|
supportedFormats,
|
|
onChange,
|
|
installFromInput,
|
|
installFromSelectFileDialog,
|
|
extensionInstallationStateStore,
|
|
}) => (
|
|
<section>
|
|
<SubTitle
|
|
title={`Name or file path or URL to an extension package (${supportedFormats.join(
|
|
", ",
|
|
)})`}
|
|
/>
|
|
<div className={styles.inputs}>
|
|
<div>
|
|
<Input
|
|
theme="round-black"
|
|
disabled={extensionInstallationStateStore.anyPreInstallingOrInstalling}
|
|
placeholder={"Name or file path or URL"}
|
|
showErrorsAsTooltip={{ preferredPositions: TooltipPosition.BOTTOM }}
|
|
validators={installPath ? installInputValidator : undefined}
|
|
value={installPath}
|
|
onChange={onChange}
|
|
onSubmit={installFromInput}
|
|
iconRight={(
|
|
<Icon
|
|
className={styles.icon}
|
|
smallest
|
|
material="folder_open"
|
|
onClick={prevDefault(installFromSelectFileDialog)}
|
|
tooltip="Browse"
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<Button
|
|
className={styles.button}
|
|
primary
|
|
label="Install"
|
|
disabled={
|
|
extensionInstallationStateStore.anyPreInstallingOrInstalling
|
|
}
|
|
waiting={extensionInstallationStateStore.anyPreInstallingOrInstalling}
|
|
onClick={installFromInput}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<small className={styles.proTip}>
|
|
<b>Pro-Tip</b>
|
|
: you can drag and drop a tarball file to this area
|
|
</small>
|
|
</section>
|
|
);
|
|
|
|
export const Install = withInjectables<Dependencies, InstallProps>(
|
|
observer(NonInjectedInstall),
|
|
{
|
|
getProps: (di, props) => ({
|
|
extensionInstallationStateStore: di.inject(
|
|
extensionInstallationStateStoreInjectable,
|
|
),
|
|
|
|
...props,
|
|
}),
|
|
},
|
|
);
|