mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-07-16 05:55:41 +00:00
1295c36241
- Fixed TypeScript type assertion issues - Updated imports from api-augment/substrate to api-augment/bizinikiwi - Fixed imgConvert.mjs header and imports - Added @ts-expect-error for runtime-converted types - Fixed all @polkadot copyright headers to @pezkuwi
59 lines
1.2 KiB
TypeScript
59 lines
1.2 KiB
TypeScript
// Copyright 2017-2025 @pezkuwi/apps authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Unused atm, experiment as a replacement for NodeInfo on the SideBar
|
|
|
|
import React from 'react';
|
|
|
|
import { styled } from '@pezkuwi/react-components';
|
|
import { BestNumber, Chain, NodeName, NodeVersion } from '@pezkuwi/react-query';
|
|
|
|
interface Props {
|
|
className?: string;
|
|
}
|
|
|
|
function TopBar ({ className }: Props): React.ReactElement<Props> {
|
|
return (
|
|
<StyledDiv className={className}>
|
|
<div>
|
|
<NodeName />
|
|
<NodeVersion label='v' />
|
|
</div>
|
|
<div>
|
|
<Chain />
|
|
<BestNumber label='#' />
|
|
</div>
|
|
</StyledDiv>
|
|
);
|
|
}
|
|
|
|
const StyledDiv = styled.div`
|
|
background: #f2f2f2;
|
|
font-size: var(--font-size-small);
|
|
line-height: 1rem;
|
|
overflow: hidden;
|
|
padding: 0.5rem 1rem;
|
|
position: fixed;
|
|
right: 0;
|
|
text-align: right;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
top: 0;
|
|
|
|
div {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
> div {
|
|
border-left: 1px solid #ccc;
|
|
padding: 0 0.5rem;
|
|
|
|
&:first-child {
|
|
border-width: 0;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default React.memo(TopBar);
|