/* * 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 IconOpenInBrowser from '@mui/icons-material/OpenInBrowser'; import IconOpenInNew from '@mui/icons-material/OpenInNew'; import Button from '@mui/material/Button'; import { observer } from 'mobx-react-lite'; import React from 'react'; import { Trans, useTranslation } from 'react-i18next'; import type Service from '../stores/Service'; import NotificationBanner from './NotificationBanner'; function NewWindowBanner({ service, }: { service: Service | undefined; }): JSX.Element | null { const { t } = useTranslation(undefined, { keyPrefix: 'banner.newWindow', }); if (service === undefined) { // eslint-disable-next-line unicorn/no-null -- React requires `null` to skip rendering. return null; } 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 ? ( {{ name }} wants to open {{ url }} in a new window ) : ( {{ name }} wants to open {{ url }} and{' '} {{ count: count - 1 }} other links in new windows )} ); } export default observer(NewWindowBanner);