1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Remove explicit side effects from kubeconfig-syncs

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-03-30 15:04:10 +03:00
parent 83cb571e5f
commit 4efbc1de3e
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A

View File

@ -9,14 +9,15 @@ import { disposeOnUnmount, observer } from "mobx-react";
import React from "react"; import React from "react";
import { Notice } from "../+extensions/notice"; import { Notice } from "../+extensions/notice";
import type { KubeconfigSyncEntry, KubeconfigSyncValue, UserStore } from "../../../common/user-store"; import type { KubeconfigSyncEntry, KubeconfigSyncValue, UserStore } from "../../../common/user-store";
import { isWindows } from "../../../common/vars";
import logger from "../../../main/logger";
import { iter, tuple } from "../../utils"; import { iter, tuple } from "../../utils";
import { SubTitle } from "../layout/sub-title"; import { SubTitle } from "../layout/sub-title";
import { PathPicker } from "../path-picker/path-picker"; import { PathPicker } from "../path-picker/path-picker";
import { Spinner } from "../spinner"; import { Spinner } from "../spinner";
import { RemovableItem } from "./removable-item"; import { RemovableItem } from "./removable-item";
import userStoreInjectable from "../../../common/user-store/user-store.injectable"; import userStoreInjectable from "../../../common/user-store/user-store.injectable";
import isWindowsInjectable from "../../../common/vars/is-windows.injectable";
import loggerInjectable from "../../../common/logger.injectable";
import type { Logger } from "../../../common/logger";
interface SyncInfo { interface SyncInfo {
type: "file" | "folder" | "unknown"; type: "file" | "folder" | "unknown";
@ -31,7 +32,7 @@ interface Value {
info: SyncInfo; info: SyncInfo;
} }
async function getMapEntry({ filePath, ...data }: KubeconfigSyncEntry): Promise<[string, Value]> { async function getMapEntry({ filePath, ...data }: KubeconfigSyncEntry, logger: Logger): Promise<[string, Value]> {
try { try {
// stat follows the stat(2) linux syscall spec, namely it follows symlinks // stat follows the stat(2) linux syscall spec, namely it follows symlinks
const stats = await fse.stat(filePath); const stats = await fse.stat(filePath);
@ -54,12 +55,14 @@ async function getMapEntry({ filePath, ...data }: KubeconfigSyncEntry): Promise<
} }
} }
export async function getAllEntries(filePaths: string[]): Promise<[string, Value][]> { export async function getAllEntries(filePaths: string[], logger: Logger): Promise<[string, Value][]> {
return Promise.all(filePaths.map(filePath => getMapEntry({ filePath }))); return Promise.all(filePaths.map(filePath => getMapEntry({ filePath }, logger)));
} }
interface Dependencies { interface Dependencies {
userStore: UserStore; userStore: UserStore;
isWindows: boolean;
logger: Logger;
} }
@observer @observer
@ -76,7 +79,7 @@ class NonInjectedKubeconfigSyncs extends React.Component<Dependencies> {
const mapEntries = await Promise.all( const mapEntries = await Promise.all(
iter.map( iter.map(
this.props.userStore.syncKubeconfigEntries, this.props.userStore.syncKubeconfigEntries,
([filePath, ...value]) => getMapEntry({ filePath, ...value }), ([filePath, ...value]) => getMapEntry({ filePath, ...value }, this.props.logger),
), ),
); );
@ -102,7 +105,7 @@ class NonInjectedKubeconfigSyncs extends React.Component<Dependencies> {
} }
onPick = async (filePaths: string[]) => { onPick = async (filePaths: string[]) => {
this.syncs.merge(await getAllEntries(filePaths)); this.syncs.merge(await getAllEntries(filePaths, this.props.logger));
}; };
getIconName(entry: Entry) { getIconName(entry: Entry) {
@ -158,7 +161,7 @@ class NonInjectedKubeconfigSyncs extends React.Component<Dependencies> {
} }
renderSyncButtons() { renderSyncButtons() {
if (isWindows) { if (this.props.isWindows) {
return ( return (
<div className="flex gaps align-center mb-5"> <div className="flex gaps align-center mb-5">
<PathPicker <PathPicker
@ -207,6 +210,8 @@ export const KubeconfigSyncs = withInjectables<Dependencies>(
{ {
getProps: (di) => ({ getProps: (di) => ({
userStore: di.inject(userStoreInjectable), userStore: di.inject(userStoreInjectable),
isWindows: di.inject(isWindowsInjectable),
logger: di.inject(loggerInjectable),
}), }),
}, },
); );