aboutsummaryrefslogtreecommitdiffstats
path: root/packages/renderer/src/components/locationBar/ExtraButtons.tsx
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-03-15 00:15:31 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-05-16 00:54:56 +0200
commitd425435c290a7e63c4e30a469da51f43be4db5cc (patch)
tree73b1cfed3ad81bc987312a9093b654ca4bc37c1f /packages/renderer/src/components/locationBar/ExtraButtons.tsx
parentfeat(renderer): Show service error on service icon (diff)
downloadsophie-d425435c290a7e63c4e30a469da51f43be4db5cc.tar.gz
sophie-d425435c290a7e63c4e30a469da51f43be4db5cc.tar.zst
sophie-d425435c290a7e63c4e30a469da51f43be4db5cc.zip
feat: Open in external browser
Signed-off-by: Kristóf Marussy <kristof@marussy.com>
Diffstat (limited to 'packages/renderer/src/components/locationBar/ExtraButtons.tsx')
-rw-r--r--packages/renderer/src/components/locationBar/ExtraButtons.tsx52
1 files changed, 52 insertions, 0 deletions
diff --git a/packages/renderer/src/components/locationBar/ExtraButtons.tsx b/packages/renderer/src/components/locationBar/ExtraButtons.tsx
new file mode 100644
index 0000000..4eaee29
--- /dev/null
+++ b/packages/renderer/src/components/locationBar/ExtraButtons.tsx
@@ -0,0 +1,52 @@
1/*
2 * Copyright (C) 2022 Kristóf Marussy <kristof@marussy.com>
3 *
4 * This file is part of Sophie.
5 *
6 * Sophie is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, version 3.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 *
18 * SPDX-License-Identifier: AGPL-3.0-only
19 */
20
21import IconOpenInBrowser from '@mui/icons-material/OpenInBrowser';
22import Box from '@mui/material/Box';
23import IconButton from '@mui/material/IconButton';
24import { observer } from 'mobx-react-lite';
25import React from 'react';
26
27import type Service from '../../stores/Service';
28
29function ExtraButtons({
30 service,
31}: {
32 service: Service | undefined;
33}): JSX.Element {
34 return (
35 <Box
36 sx={{
37 display: 'flex',
38 flexDirection: 'row',
39 }}
40 >
41 <IconButton
42 aria-label="Open in browser"
43 disabled={service?.currentUrl === undefined}
44 onClick={() => service?.openCurrentURLInExternalBrowser()}
45 >
46 <IconOpenInBrowser />
47 </IconButton>
48 </Box>
49 );
50}
51
52export default observer(ExtraButtons);