/* * Copyright (C) 2022 Kristóf Marussy * * This file is part of Sophie. * * Sophie is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * * SPDX-License-Identifier: AGPL-3.0-only */ import ArrowBackIcon from '@mui/icons-material/ArrowBack'; import ArrowForwardIcon from '@mui/icons-material/ArrowForward'; import DoNotDisturbOnOutlinedIcon from '@mui/icons-material/DoNotDisturbOnOutlined'; import OpenInBrowserIcon from '@mui/icons-material/OpenInBrowser'; import OpenInNewIcon from '@mui/icons-material/OpenInNew'; import Button from '@mui/material/Button'; import { useTheme } from '@mui/material/styles'; import { observer } from 'mobx-react-lite'; import React from 'react'; import { Trans, useTranslation } from 'react-i18next'; import type Service from '../../stores/Service.js'; import NotificationBanner from './NotificationBanner.js'; function NewWindowBanner({ service, }: { service: Service; }): JSX.Element | null { const { t } = useTranslation(undefined, { keyPrefix: 'banner.newWindow', }); const { direction } = useTheme(); const { popups, settings: { name }, } = service; const { length: count } = popups; if (count === 0) { // eslint-disable-next-line unicorn/no-null -- React requires `null` to skip rendering. return null; } const url = popups[count - 1]; return ( } onClose={() => service.dismissAllPopups()} buttons={ <> {count > 1 && ( <> )} } > {count === 1 ? ( url]} values={{ name, url }} /> ) : ( url, count]} values={{ name, url, count: count - 1 }} /> )} ); } export default observer(NewWindowBanner);