mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-06-25 23:01:03 +00:00
971df8edba
- Remove all 3rd party parachain configurations from endpoints: - productionRelayPolkadot.ts: Keep only system parachains - productionRelayDicle.ts: Keep only system parachains - testingRelayZagros.ts: Keep only system parachains - testingRelayTeyrChain.ts: Keep only system parachains - Update domain references: - polkadot.js.org → pezkuwichain.app - wiki.polkadot.network → wiki.pezkuwichain.io - dotapps.io → pezkuwichain.app - statement.polkadot.network → docs.pezkuwichain.io/statement - support.polkadot.network → docs.pezkuwichain.io - Update repository references: - github.com/pezkuwi-js/apps → github.com/pezkuwichain/pwap - Rename system parachains to Pezkuwi ecosystem: - PolkadotAssetHub → PezkuwiAssetHub - polkadotBridgeHub → pezkuwiBridgeHub - polkadotCollectives → pezkuwiCollectives - polkadotCoretime → pezkuwiCoretime - polkadotPeople → pezkuwiPeople - Update network name in claims utility: - Polkadot → Pezkuwi
59 lines
1.2 KiB
TypeScript
59 lines
1.2 KiB
TypeScript
// Copyright 2017-2026 @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);
|