mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Ignore clusters with invalid kubeconfig Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Improve error message Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Mark cluster as dead if kubeconfig loading fails Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Fix tests Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Validate cluster object in kubeconfig when constructing cluster Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Add unit tests for validateKubeConfig Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Refactor validateKubeconfig unit tests Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Extract ValidationOpts type Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Add default value to validationOpts param Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Change isDead to property Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Fix lint issues Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Add missing new line Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Update validateKubeConfig in-code documentation Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Remove isDead property Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Display warning notification if invalid kubeconfig detected (#2233) * Display warning notification if invalid kubeconfig detected Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
106 lines
2.9 KiB
TypeScript
106 lines
2.9 KiB
TypeScript
import "./notifications.scss";
|
|
|
|
import React from "react";
|
|
import { reaction } from "mobx";
|
|
import { disposeOnUnmount, observer } from "mobx-react";
|
|
import { JsonApiErrorParsed } from "../../api/json-api";
|
|
import { cssNames, prevDefault } from "../../utils";
|
|
import { Notification, NotificationMessage, notificationsStore, NotificationStatus } from "./notifications.store";
|
|
import { Animate } from "../animate";
|
|
import { Icon } from "../icon";
|
|
|
|
@observer
|
|
export class Notifications extends React.Component {
|
|
public elem: HTMLElement;
|
|
|
|
static ok(message: NotificationMessage) {
|
|
notificationsStore.add({
|
|
message,
|
|
timeout: 2500,
|
|
status: NotificationStatus.OK
|
|
});
|
|
}
|
|
|
|
static error(message: NotificationMessage, customOpts: Partial<Notification> = {}) {
|
|
notificationsStore.add({
|
|
message,
|
|
timeout: 10000,
|
|
status: NotificationStatus.ERROR,
|
|
...customOpts
|
|
});
|
|
}
|
|
|
|
static info(message: NotificationMessage, customOpts: Partial<Notification> = {}) {
|
|
return notificationsStore.add({
|
|
status: NotificationStatus.INFO,
|
|
timeout: 0,
|
|
message,
|
|
...customOpts,
|
|
});
|
|
}
|
|
|
|
componentDidMount() {
|
|
disposeOnUnmount(this, [
|
|
reaction(() => notificationsStore.notifications.length, () => {
|
|
this.scrollToLastNotification();
|
|
}, { delay: 250 }),
|
|
]);
|
|
}
|
|
|
|
scrollToLastNotification() {
|
|
if (!this.elem) {
|
|
return;
|
|
}
|
|
this.elem.scrollTo({
|
|
top: this.elem.scrollHeight,
|
|
behavior: "smooth"
|
|
});
|
|
}
|
|
|
|
getMessage(notification: Notification) {
|
|
let { message } = notification;
|
|
|
|
if (message instanceof JsonApiErrorParsed) {
|
|
message = message.toString();
|
|
}
|
|
|
|
return React.Children.toArray(message);
|
|
}
|
|
|
|
render() {
|
|
const { notifications, remove, addAutoHideTimer, removeAutoHideTimer } = notificationsStore;
|
|
|
|
return (
|
|
<div className="Notifications flex column align-flex-end" ref={e => this.elem = e}>
|
|
{notifications.map(notification => {
|
|
const { id, status, onClose } = notification;
|
|
const msgText = this.getMessage(notification);
|
|
|
|
return (
|
|
<Animate key={id}>
|
|
<div
|
|
className={cssNames("notification flex", status)}
|
|
onMouseLeave={() => addAutoHideTimer(id)}
|
|
onMouseEnter={() => removeAutoHideTimer(id)}>
|
|
<div className="box">
|
|
<Icon material="info_outline"/>
|
|
</div>
|
|
<div className="message box grow">{msgText}</div>
|
|
<div className="box">
|
|
<Icon
|
|
material="close" className="close"
|
|
onClick={prevDefault(() => {
|
|
remove(id);
|
|
onClose?.();
|
|
})}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</Animate>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
}
|
|
}
|