// Copyright 2017-2026 @pezkuwi/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; import React, { useCallback, useEffect, useState } from 'react'; import { Input } from '@pezkuwi/react-components'; import { compactAddLength, hexToU8a, u8aConcat } from '@pezkuwi/util'; import Bare from './Bare.js'; interface StateParam { isValid: boolean; u8a: Uint8Array; } // eslint-disable-next-line @typescript-eslint/ban-types export function createParam (hex: string | String, ignoreLength = false): StateParam { let u8a; let isValid = false; try { u8a = hexToU8a(hex.toString()); isValid = ignoreLength || u8a.length !== 0; } catch { u8a = new Uint8Array([]); } return { isValid, u8a: compactAddLength(u8a) }; } function KeyValue ({ className = '', isDisabled, label, onChange, onEnter, withLabel }: Props): React.ReactElement { const [, setIsValid] = useState(false); const [key, setKey] = useState(() => ({ isValid: false, u8a: new Uint8Array([]) })); const [value, setValue] = useState(() => ({ isValid: false, u8a: new Uint8Array([]) })); useEffect((): void => { const isValid = key.isValid && value.isValid; onChange && onChange({ isValid, value: u8aConcat( key.u8a, value.u8a ) }); setIsValid(isValid); }, [key, onChange, value]); const _onChangeKey = useCallback( (key: string): void => setKey(createParam(key)), [] ); const _onChangeValue = useCallback( (value: string): void => setValue(createParam(value, true)), [] ); return ( ); } export default React.memo(KeyValue);