mirror of
https://github.com/pezkuwichain/pezkuwi-sdk-ui.git
synced 2026-08-09 14:45: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>
73 lines
1.7 KiB
TypeScript
73 lines
1.7 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/app-explorer authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import React, { useCallback, useState } from 'react';
|
|
|
|
import { Button, FilterOverlay, Input, styled } from '@pezkuwi/react-components';
|
|
import { isHex } from '@pezkuwi/util';
|
|
|
|
import { useTranslation } from './translate.js';
|
|
|
|
interface Props {
|
|
className?: string;
|
|
value?: string;
|
|
}
|
|
|
|
interface State {
|
|
value: string;
|
|
isValid: boolean;
|
|
}
|
|
|
|
function stateFromValue (value: string): State {
|
|
return {
|
|
isValid: isHex(value, 256) || /^\d+$/.test(value),
|
|
value
|
|
};
|
|
}
|
|
|
|
function Query ({ className = '', value: propsValue }: Props): React.ReactElement<Props> {
|
|
const { t } = useTranslation();
|
|
const [{ isValid, value }, setState] = useState(() => stateFromValue(propsValue || ''));
|
|
|
|
const _setHash = useCallback(
|
|
(value: string): void => setState(stateFromValue(value)),
|
|
[]
|
|
);
|
|
|
|
const _onQuery = useCallback(
|
|
(): void => {
|
|
if (isValid && value.length !== 0) {
|
|
window.location.hash = `/explorer/query/${value}`;
|
|
}
|
|
},
|
|
[isValid, value]
|
|
);
|
|
|
|
return (
|
|
<StyledFilterOverlay className={`${className} ui--FilterOverlay hasOwnMaxWidth`}>
|
|
<Input
|
|
className='explorer--query'
|
|
defaultValue={propsValue}
|
|
isError={!isValid && value.length !== 0}
|
|
onChange={_setHash}
|
|
onEnter={_onQuery}
|
|
placeholder={t('block hash or number to query')}
|
|
withLabel={false}
|
|
>
|
|
<Button
|
|
icon='play'
|
|
onClick={_onQuery}
|
|
/>
|
|
</Input>
|
|
</StyledFilterOverlay>
|
|
);
|
|
}
|
|
|
|
const StyledFilterOverlay = styled(FilterOverlay)`
|
|
.explorer--query {
|
|
width: 20em;
|
|
}
|
|
`;
|
|
|
|
export default React.memo(Query);
|