/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import styles from "./styles.module.scss"; import type { HTMLAttributes } from "react"; import React, { useState } from "react"; import { Menu, MenuItem } from "../../../../../../../renderer/components/menu"; import { cssNames } from "../../../../../../../renderer/utils"; import type { IconProps } from "../../../../../../../renderer/components/icon"; import { Icon } from "../../../../../../../renderer/components/icon"; import { withInjectables } from "@ogre-tools/injectable-react"; import { observer } from "mobx-react"; import type { IComputedValue } from "mobx"; import restartAndInstallUpdateInjectable from "../../../../../renderer/restart-and-install-update.injectable"; import updateWarningLevelInjectable from "../update-warning-level.injectable"; interface UpdateButtonProps extends HTMLAttributes {} interface Dependencies { warningLevel: IComputedValue<"light" | "medium" | "high" | "">; update: () => void; } export const NonInjectedUpdateButton = observer(({ warningLevel, update, id }: UpdateButtonProps & Dependencies) => { const buttonId = id ?? "update-lens-button"; const menuIconProps: IconProps = { material: "update", small: true }; const [opened, setOpened] = useState(false); const level = warningLevel.get(); const toggle = () => { setOpened(!opened); }; return ( <> Relaunch to Update Lens ); }); export const UpdateButton = withInjectables( NonInjectedUpdateButton, { getProps: (di, props) => ({ ...props, warningLevel: di.inject(updateWarningLevelInjectable), update: di.inject(restartAndInstallUpdateInjectable), }), }, );