aboutsummaryrefslogtreecommitdiffstats
path: root/packages/renderer/src/components/locationBar/SecurityLabel.tsx
blob: 7521fa6080bb7535c3b83147e75a852761e66923 (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
92
93
94
95
96
97
98
99
100
/*
 * 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 HttpsOutliedIcon from '@mui/icons-material/HttpsOutlined';
import NoEncrpytionIcon from '@mui/icons-material/NoEncryption';
import PublicIcon from '@mui/icons-material/Public';
import WarningIcon from '@mui/icons-material/Warning';
import { styled } from '@mui/material/styles';
import { SecurityLabelKind } from '@sophie/shared';
import React from 'react';
import { useTranslation } from 'react-i18next';

import LocationInputAdornment from './LocationInputAdornment.js';
import getAlertColor from './getAlertColor.js';

const SecurityLabelRoot = styled(LocationInputAdornment, {
  name: 'SecurityLabel',
  slot: 'Root',
  shouldForwardProp: (prop) => prop !== 'alert',
})<{ alert: boolean }>(({ theme, alert }) => ({
  padding: 6,
  color: getAlertColor(theme, alert),
  // Clicking on the security label should focus the text field instead.
  pointerEvents: 'none',
}));

const SecurityLabelText = styled('span', {
  name: 'SecurityLabel',
  slot: 'Text',
})(({ theme }) => ({
  marginLeft: theme.spacing(1),
  // Keep the same baseline as the input box text.
  paddingBottom: 1,
  fontWeight: theme.typography.fontWeightMedium,
  userSelect: 'none',
}));

export default function SecurityLabel({
  kind,
  changed,
  position,
}: {
  kind: SecurityLabelKind;
  changed: boolean;
  position: 'start' | 'end';
}): JSX.Element {
  const { t } = useTranslation();

  if (changed || kind === SecurityLabelKind.Empty) {
    return (
      <SecurityLabelRoot alert={false} position={position} aria-hidden>
        <PublicIcon fontSize="small" />
      </SecurityLabelRoot>
    );
  }
  if (kind === SecurityLabelKind.SecureConnection) {
    return (
      <SecurityLabelRoot
        alert={false}
        position={position}
        aria-label={t('securityLabel.secureConnection')}
      >
        <HttpsOutliedIcon fontSize="small" />
      </SecurityLabelRoot>
    );
  }
  const tslError =
    kind === SecurityLabelKind.NotSecureConnection ||
    kind === SecurityLabelKind.CertificateError;
  const icon = tslError ? (
    <NoEncrpytionIcon fontSize="small" />
  ) : (
    <WarningIcon fontSize="small" />
  );
  return (
    <SecurityLabelRoot alert position={position}>
      {icon}
      <SecurityLabelText>
        {t([`securityLabel.${kind}`, 'securityLabel.unspecific'])}
      </SecurityLabelText>
    </SecurityLabelRoot>
  );
}