-
Notifications
You must be signed in to change notification settings - Fork 267
Expand file tree
/
Copy pathLayoutDashboard.tsx
More file actions
291 lines (270 loc) · 11.7 KB
/
Copy pathLayoutDashboard.tsx
File metadata and controls
291 lines (270 loc) · 11.7 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
import { useGetLoggedInFingerprintQuery, useGetKeyQuery, useFingerprintSettings } from '@chia-network/api-react';
import { Trans } from '@lingui/macro';
import { Edit as EditIcon } from '@mui/icons-material';
import { Box, AppBar, Toolbar, Drawer, IconButton, Typography, CircularProgress, Button } from '@mui/material';
import { alpha, useTheme } from '@mui/material/styles';
import React, { type ReactNode, useState, Suspense, useCallback } from 'react';
import { Outlet } from 'react-router-dom';
import styled from 'styled-components';
import Color from '../../constants/Color';
import useGetLatestVersionFromWebsite from '../../hooks/useGetLatestVersionFromWebsite';
import useOpenDialog from '../../hooks/useOpenDialog';
import EmojiAndColorPicker from '../../screens/SelectKey/EmojiAndColorPicker';
import SelectKeyRenameForm from '../../screens/SelectKey/SelectKeyRenameForm';
import getColorModeValue from '../../utils/useColorModeValue';
import Flex from '../Flex';
import Link from '../Link';
import Loading from '../Loading';
import NewerAppVersionAvailable from './NewerAppVersionAvailable';
// import LayoutFooter from '../LayoutMain/LayoutFooter';
const StyledAppBar = styled(({ drawer, ...rest }) => <AppBar {...rest} />)`
border-bottom: 1px solid ${({ theme }) => (theme.palette.mode === 'dark' ? Color.Neutral[700] : Color.Neutral[300])};
width: ${({ theme, drawer }) => (drawer ? `calc(100% - ${theme.drawer.width})` : '100%')};
margin-left: ${({ theme, drawer }) => (drawer ? theme.drawer.width : 0)};
z-index: ${({ theme }) => theme.zIndex.drawer + 1};};
`;
const StyledDrawer = styled(Drawer)`
z-index: ${({ theme }) => theme.zIndex.drawer + 2};
width: ${({ theme }) => theme.drawer.width};
flex-shrink: 0;
& .MuiDrawer-paper {
width: ${({ theme }) => theme.drawer.width};
background-color: ${({ theme }) => getColorModeValue(theme, 'sidebarBackground')};
border-right: 1px solid
${({ theme }) =>
theme.palette.mode === 'dark'
? alpha(getColorModeValue(theme, 'border'), 0.45)
: alpha(getColorModeValue(theme, 'border'), 0.35)};
color: ${({ theme }) =>
theme.palette.sidebarText
? getColorModeValue(theme, 'sidebarText' as Parameters<typeof getColorModeValue>[1])
: getColorModeValue(theme, 'sidebarIcon')};
}
`;
const StyledToolbar = styled(Toolbar)`
padding-left: calc(${({ theme }) => theme.spacing(3)} - 12px);
padding-right: ${({ theme }) => theme.spacing(3)};
padding-top: ${({ theme }) => theme.spacing(1)};
padding-bottom: ${({ theme }) => theme.spacing(1)};
`;
const StyledInlineTypography = styled(Typography)`
display: inline-block;
`;
export type LayoutDashboardProps = {
children?: ReactNode;
sidebar?: ReactNode;
outlet?: boolean;
actions?: ReactNode;
};
export default function LayoutDashboard(props: LayoutDashboardProps) {
const { children, sidebar, outlet = false, actions } = props;
const [editWalletName, setEditWalletName] = useState(false);
const [showEmojiPicker, setShowEmojiPicker] = useState<boolean>(false);
const { data: fingerprint, isLoading: isLoadingFingerprint } = useGetLoggedInFingerprintQuery();
const { data: keyData, isLoading: isLoadingKeyData } = useGetKeyQuery(
{
fingerprint,
},
{
skip: !fingerprint,
},
);
type WalletKeyTheme = {
emoji: string | null;
color: string | null;
};
const theme: any = useTheme();
const isColor = useCallback((color: string) => Object.keys(theme.palette.colors).includes(color), [theme]);
const isDark = theme.palette.mode === 'dark';
const [walletKeyTheme, setWalletKeyTheme] = useFingerprintSettings<WalletKeyTheme>(fingerprint, 'walletKeyTheme', {
emoji: ``,
color: 'green',
});
const { appVersion, latestVersion, newVersionAvailable, isVersionSkipped, addVersionToSkip, downloadUrl, blogUrl } =
useGetLatestVersionFromWebsite();
const openDialog = useOpenDialog();
const isLoading = isLoadingFingerprint || isLoadingKeyData;
React.useEffect(() => {
function checkForUpdates() {
if (appVersion) {
openDialog(<NewerAppVersionAvailable currentVersion={appVersion} />);
}
}
const unsubscribe = window.appAPI.subscribeToCheckForUpdates(checkForUpdates);
return () => {
unsubscribe();
};
}, [openDialog, appVersion]);
function handleEditWalletName() {
setEditWalletName(true);
}
function handleCloseEditWalletName() {
setEditWalletName(false);
}
function isNewVersionBannerShown() {
return newVersionAvailable && !isVersionSkipped;
}
function renderNewVersionBanner() {
if (isNewVersionBannerShown()) {
return (
<Flex
gap={2}
flexDirection="row"
justifyContent="center"
style={{
background: theme.palette.sidebarBackground,
padding: '12px',
lineHeight: '29px',
marginBottom: '10px',
fontSize: '15px',
}}
>
<Trans>New version {latestVersion} available</Trans>
{latestVersion && (
<Button color="secondary" variant="outlined" size="small" onClick={() => addVersionToSkip(latestVersion)}>
<Trans>Skip</Trans>
</Button>
)}
{blogUrl && (
<Link target="_blank" href={blogUrl} sx={{ textDecoration: 'none !important' }}>
<Button color="secondary" variant="outlined" size="small" sx={{ boxShadow: 'none' }}>
<Trans>What's New</Trans>
</Button>
</Link>
)}
<Link target="_blank" href={downloadUrl} sx={{ textDecoration: 'none !important' }}>
<Button size="small" variant="contained" color="primary" sx={{ boxShadow: 'none' }}>
<Trans>Download</Trans>
</Button>
</Link>
</Flex>
);
}
return null;
}
return (
<Flex sx={{ height: '100%' }}>
<Suspense fallback={<Loading center />}>
{sidebar ? <StyledDrawer variant="permanent">{sidebar}</StyledDrawer> : null}
<Flex flexDirection="column" flexGrow={1} sx={{ minWidth: 0 }}>
<StyledAppBar color="transparent" position="static" elevation={0}>
{renderNewVersionBanner()}
<StyledToolbar>
<Flex width="100%" alignItems="center" gap={2} flexWrap="wrap">
<Flex
alignItems="center"
flexGrow={9999}
justifyContent="space-between"
flexWrap="wrap"
minWidth={0}
gap={1}
>
<Flex flexGrow={1} minWidth={0}>
{isLoading ? (
<Box>
<CircularProgress size={32} color="secondary" />
</Box>
) : editWalletName ? (
<Box flexGrow={1} maxWidth={{ md: '80%' }}>
<SelectKeyRenameForm keyData={keyData} onClose={handleCloseEditWalletName} />
</Box>
) : (
<Flex minWidth={0} alignItems="baseline">
<span
style={{ display: showEmojiPicker ? 'inline' : 'none', position: 'fixed', zIndex: 10 }}
onClick={() => {}}
>
{showEmojiPicker && (
<EmojiAndColorPicker
onSelect={(result: any) => {
if (isColor(result)) {
setWalletKeyTheme({ ...walletKeyTheme, color: result });
} else {
setWalletKeyTheme({ ...walletKeyTheme, emoji: result });
}
setShowEmojiPicker(false);
}}
onClickOutside={() => {
setShowEmojiPicker(false);
}}
currentColor={walletKeyTheme.color}
currentEmoji={walletKeyTheme.emoji}
themeColors={theme.palette.colors}
isDark={isDark}
/>
)}
</span>
<Flex flexDirection="row" minWidth={0}>
<Box
sx={{
backgroundColor:
walletKeyTheme.emoji === '' ? theme.palette.colors[walletKeyTheme.color].main : 'none',
fontSize: '48px',
marginRight: '10px',
width: '64px',
height: '64px',
lineHeight: '67px',
textAlign: 'center',
borderRadius: '5px',
'&:hover': {
cursor: 'pointer',
backgroundColor: theme.palette.colors[walletKeyTheme.color].main,
},
}}
onClick={() => setShowEmojiPicker(true)}
>
{walletKeyTheme.emoji}
</Box>
<Flex flexDirection="column" minWidth={0}>
<Flex flexDirection="row" sx={{ height: '39px' }}>
<Typography variant="h4" display="flex-inline" noWrap>
{keyData?.label || <Trans>Wallet</Trans>}
</Typography>
<IconButton
onClick={handleEditWalletName}
size="small"
data-testid="LayoutDashboard-edit-walletName"
sx={{ padding: '8px' }}
>
<EditIcon
style={{
color: isDark ? Color.Neutral[600] : Color.Neutral[400],
}}
/>
</IconButton>
</Flex>
{fingerprint && (
<Flex flexDirection="row" alignItems="center" gap={0.5}>
<StyledInlineTypography
color="textSecondary"
component="span"
data-testid="LayoutDashboard-fingerprint"
sx={{ fontSize: '16px' }}
>
{fingerprint}
</StyledInlineTypography>
</Flex>
)}
</Flex>
</Flex>
</Flex>
)}
</Flex>
</Flex>
<Flex alignItems="center" gap={1} flexGrow={1}>
{actions}
</Flex>
</Flex>
</StyledToolbar>
</StyledAppBar>
<Flex sx={{ minWidth: 0, flexDirection: 'column', flexGrow: 1, overflow: 'auto' }}>
<Flex flexDirection="column" gap={2} flexGrow={1} overflow="auto">
<Suspense fallback={<Loading center />}>{outlet ? <Outlet /> : children}</Suspense>
</Flex>
</Flex>
</Flex>
</Suspense>
</Flex>
);
}