1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/catalog-entities/weblink-add-command.tsx
Sebastian Malton 9fee31a872 Remove more usages of Singleton
Signed-off-by: Sebastian Malton <sebastian@malton.name>
2022-12-06 09:18:58 -05:00

103 lines
2.8 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 { Input } from "../input";
import { isUrl } from "../input/input_validators";
import type { WeblinkStore } from "../../../common/weblink-store";
import { computed, makeObservable, observable } from "mobx";
import { withInjectables } from "@ogre-tools/injectable-react";
import commandOverlayInjectable from "../command-palette/command-overlay.injectable";
import weblinkStoreInjectable from "../../../common/weblink-store.injectable";
interface Dependencies {
closeCommandOverlay: () => void;
weblinkStore: WeblinkStore;
}
@observer
class NonInjectedWeblinkAddCommand extends React.Component<Dependencies> {
@observable url = "";
@observable nameHidden = true;
@observable dirty = false;
constructor(props: Dependencies) {
super(props);
makeObservable(this);
}
onChangeUrl(url: string) {
this.dirty = true;
this.url = url;
}
onSubmitUrl(url: string) {
this.dirty = true;
this.url = url;
this.nameHidden = false;
}
onSubmit(name: string) {
this.props.weblinkStore.add({
name: name || this.url,
url: this.url,
});
this.props.closeCommandOverlay();
}
@computed get showValidation() {
return this.url?.length > 0;
}
render() {
return (
<>
<Input
placeholder="Link URL"
autoFocus={this.nameHidden}
theme="round-black"
data-test-id="command-palette-weblink-add-url"
validators={[isUrl]}
dirty={this.dirty}
value={this.url}
onChange={(v) => this.onChangeUrl(v)}
onSubmit={(v) => this.onSubmitUrl(v)}
showValidationLine={true}
/>
{ this.nameHidden && (
<small className="hint">
Please provide a web link URL (Press &quot;Enter&quot; to continue or &quot;Escape&quot; to cancel)
</small>
)}
{ !this.nameHidden && (
<>
<Input
placeholder="Name (optional)"
autoFocus={true}
theme="round-black"
data-test-id="command-palette-weblink-add-name"
onSubmit={(v) => this.onSubmit(v)}
dirty={true}
/>
<small className="hint">
Please provide a name for the web link (Press &quot;Enter&quot; to confirm or &quot;Escape&quot; to cancel)
</small>
</>
)}
</>
);
}
}
export const WeblinkAddCommand = withInjectables<Dependencies>(NonInjectedWeblinkAddCommand, {
getProps: (di, props) => ({
...props,
closeCommandOverlay: di.inject(commandOverlayInjectable).close,
weblinkStore: di.inject(weblinkStoreInjectable),
}),
});