aboutsummaryrefslogtreecommitdiffstats
path: root/packages/renderer/src/components/locationBar/UrlAdornment.tsx
blob: 6ede37871a14e8fb22b27ed95ef6eaafa745534b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
 * Copyright (C)  2022 Kristóf Marussy <kristof@marussy.com>
 *
 * 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 <https://www.gnu.org/licenses/>.
 *
 * SPDX-License-Identifier: AGPL-3.0-only
 */

import IconHttps from '@mui/icons-material/HttpsOutlined';
import IconGlobe from '@mui/icons-material/Public';
import IconWarning from '@mui/icons-material/Warning';
import { styled } from '@mui/material';
import Button from '@mui/material/Button';
import React from 'react';

import ButtonAdornment, { NO_LABEL_BUTTON_CLASS_NAME } from './ButtonAdornment';
import IconAdornment from './IconAdornment';
import type { SplitResult } from './splitUrl';

const FastColorChangingButton = styled(Button)(({ theme }) => ({
  transition: theme.transitions.create(
    ['background-color', 'box-shadow', 'border-color'],
    {
      duration: theme.transitions.duration.short,
      easing: theme.transitions.easing.easeInOut,
    },
  ),
}));

export default function UrlAdornment({
  splitResult,
  changed,
}: {
  splitResult: SplitResult;
  changed: boolean;
}): JSX.Element {
  const { type } = splitResult;
  if (changed || type === 'empty') {
    return (
      <IconAdornment position="start">
        <IconGlobe fontSize="small" />
      </IconAdornment>
    );
  }
  switch (type) {
    case 'valid': {
      const { secure } = splitResult;
      return secure ? (
        <ButtonAdornment position="start">
          <FastColorChangingButton
            aria-label="Show certificate"
            color="inherit"
            className={NO_LABEL_BUTTON_CLASS_NAME}
            startIcon={<IconHttps />}
          />
        </ButtonAdornment>
      ) : (
        <ButtonAdornment position="start">
          <FastColorChangingButton color="error" startIcon={<IconWarning />}>
            Not secure
          </FastColorChangingButton>
        </ButtonAdornment>
      );
    }
    case 'invalid':
      return (
        <ButtonAdornment position="start">
          <FastColorChangingButton color="error" startIcon={<IconWarning />}>
            Unknown site
          </FastColorChangingButton>
        </ButtonAdornment>
      );
    default:
      /* eslint-disable-next-line @typescript-eslint/restrict-template-expressions --
        Error handling for impossible case.
      */
      throw new Error(`Unexpected SplitResult: ${type}`);
  }
}