forked from BitBoxSwiss/bitbox-wallet-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbluetooth.tsx
93 lines (89 loc) · 3.09 KB
/
bluetooth.tsx
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
/**
* Copyright 2025 Shift Crypto AG
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { useTranslation } from 'react-i18next';
import { useSync } from '@/hooks/api';
import { connect, getState, syncState, TPeripheral } from '@/api/bluetooth';
import { runningInIOS } from '@/utils/env';
import { Status } from '@/components/status/status';
import { ActionableItem } from '@/components/actionable-item/actionable-item';
import { Badge } from '@/components/badge/badge';
import { HorizontallyCenteredSpinner, SpinnerRingAnimated } from '@/components/spinner/SpinnerAnimation';
import styles from './bluetooth.module.css';
const isConnectedOrConnecting = (peripheral: TPeripheral) => {
return peripheral.connectionState === 'connecting' || peripheral.connectionState === 'connected';
};
const _Bluetooth = () => {
const { t } = useTranslation();
const state = useSync(getState, syncState);
if (!state) {
return null;
}
if (!state.bluetoothAvailable) {
return (
<Status type="warning">
{t('bluetooth.enable')}
</Status>
);
}
const hasConnection = state.peripherals.some(isConnectedOrConnecting);
return (
<>
<div className={styles.label}>
{t('bluetooth.select')}
</div>
<div className={styles.container}>
{state.peripherals.map(peripheral => {
const onClick = !hasConnection ? () => connect(peripheral.identifier) : undefined;
const connectingIcon = peripheral.connectionState === 'connecting' ? (
<SpinnerRingAnimated />
) : undefined;
return (
<ActionableItem
key={peripheral.identifier}
icon={connectingIcon}
onClick={onClick}>
<span>
{ peripheral.name !== '' ? peripheral.name : peripheral.identifier }
{' '}
{ peripheral.connectionState === 'connected' ? (
<Badge type="success">
{t('bluetooth.connected')}
</Badge>
) : null }
{ peripheral.connectionState === 'error' ? (
<Badge type="danger">
<span style={{ whiteSpace: 'wrap' }}>
{peripheral.connectionError}
</span>
</Badge>
) : null }
</span>
</ActionableItem>
);
})}
</div>
{state.scanning && (
<HorizontallyCenteredSpinner />
)}
</>
);
};
export const Bluetooth = () => {
if (!runningInIOS()) {
return null;
}
return <_Bluetooth />;
};