mirror of
https://github.com/pezkuwichain/pezkuwi-sdk-ui.git
synced 2026-07-12 21:35:44 +00:00
d949863789
Comprehensive web interface for interacting with Pezkuwi blockchain. Features: - Blockchain explorer - Wallet management - Staking interface - Governance participation - Developer tools Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
42 lines
1015 B
TypeScript
42 lines
1015 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-components authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import React, { useCallback, useState } from 'react';
|
|
|
|
import { AccountSidebarCtx } from '@pezkuwi/react-hooks/ctx/AccountSidebar';
|
|
|
|
import Sidebar from './Sidebar.js';
|
|
|
|
interface Props {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
type State = [string | null, (() => void) | null];
|
|
|
|
const EMPTY_STATE: State = [null, null];
|
|
|
|
function AccountSidebar ({ children }: Props): React.ReactElement<Props> {
|
|
const [[address, onUpdateName], setAddress] = useState<State>(EMPTY_STATE);
|
|
|
|
const onClose = useCallback(
|
|
() => setAddress([null, null]),
|
|
[]
|
|
);
|
|
|
|
return (
|
|
<AccountSidebarCtx.Provider value={setAddress}>
|
|
{children}
|
|
{address && (
|
|
<Sidebar
|
|
address={address}
|
|
dataTestId='account-sidebar'
|
|
onClose={onClose}
|
|
onUpdateName={onUpdateName}
|
|
/>
|
|
)}
|
|
</AccountSidebarCtx.Provider>
|
|
);
|
|
}
|
|
|
|
export default React.memo(AccountSidebar);
|