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

remote notifications

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2021-04-20 06:48:45 +03:00
parent 786af2a96b
commit 7f46e50669

View File

@ -2,14 +2,12 @@ import "./hotbar-menu.scss";
import "./hotbar.commands";
import React from "react";
import { disposeOnUnmount, observer } from "mobx-react";
import { observer } from "mobx-react";
import { HotbarIcon } from "./hotbar-icon";
import { cssNames, IClassName } from "../../utils";
import { catalogEntityRegistry } from "../../api/catalog-entity-registry";
import { hotbarStore } from "../../../common/hotbar-store";
import { catalogEntityRunContext } from "../../api/catalog-entity";
import { reaction } from "mobx";
import { Notifications } from "../notifications";
import { Icon } from "../icon";
import { Badge } from "../badge";
import { CommandOverlay } from "../command-palette";
@ -21,18 +19,6 @@ interface Props {
@observer
export class HotbarMenu extends React.Component<Props> {
componentDidMount() {
disposeOnUnmount(this, [
reaction(() => hotbarStore.activeHotbarId, () => {
Notifications.info(`Hotbar "${hotbarStore.getActive().name}" is now active.`, {
id: "active-hotbar",
timeout: 5_000
});
})
]);
}
get hotbarItems() {
const hotbar = hotbarStore.getActive();