mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-07-26 13:15:41 +00:00
c71ddb6e0d
- Clone Polkadot.js Apps repository - Update package.json with Pezkuwi branding - Add Pezkuwi endpoint to production chains (wss://pezkuwichain.app:9944) - Create comprehensive README for SDK UI - Set up project structure with all packages Next steps: - Apply Kurdistan colors (Kesk, Sor, Zer, Spi + Black) to UI theme - Replace logos with Pezkuwi branding - Test build and deployment
167 lines
4.7 KiB
TypeScript
167 lines
4.7 KiB
TypeScript
// Copyright 2017-2025 @polkadot/react-params authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { I18nProps } from '@polkadot/react-components/types';
|
|
import type { Registry } from '@polkadot/types/types';
|
|
import type { ComponentMap, ParamDef, RawParam, RawParamOnChangeValue, RawParams } from './types.js';
|
|
|
|
import React from 'react';
|
|
|
|
import { statics } from '@polkadot/react-api/statics';
|
|
import { ErrorBoundary } from '@polkadot/react-components';
|
|
import { stringify } from '@polkadot/util';
|
|
|
|
import Holder from './Holder.js';
|
|
import ParamComp from './ParamComp.js';
|
|
import translate from './translate.js';
|
|
import { createValue } from './values.js';
|
|
|
|
export * from './Named/index.js';
|
|
|
|
interface Props extends I18nProps {
|
|
children?: React.ReactNode;
|
|
isDisabled?: boolean;
|
|
isError?: boolean;
|
|
onChange?: (value: RawParams) => void;
|
|
onEnter?: () => void;
|
|
onError?: () => void;
|
|
onEscape?: () => void;
|
|
overrides?: ComponentMap;
|
|
params?: ParamDef[];
|
|
registry?: Registry;
|
|
values?: RawParams | null;
|
|
withBorder?: boolean;
|
|
withExpander?: boolean;
|
|
withLength?: boolean;
|
|
}
|
|
|
|
interface State {
|
|
params?: ParamDef[] | null;
|
|
values?: RawParams;
|
|
}
|
|
|
|
export { createValue, Holder, ParamComp };
|
|
|
|
class Params extends React.PureComponent<Props, State> {
|
|
public override state: State = {
|
|
params: null
|
|
};
|
|
|
|
public static getDerivedStateFromProps ({ isDisabled, params = [], registry = statics.api.registry, values }: Props, prevState: State): Pick<State, never> | null {
|
|
if (isDisabled || stringify(prevState.params) === stringify(params)) {
|
|
return null;
|
|
}
|
|
|
|
return {
|
|
params,
|
|
values: params.reduce(
|
|
(result: RawParams, param, index): RawParams => {
|
|
result.push(
|
|
values?.[index]
|
|
? values[index]
|
|
: createValue(registry, param)
|
|
);
|
|
|
|
return result;
|
|
}, []
|
|
)
|
|
};
|
|
}
|
|
|
|
// Fire the initial onChange (we did update) when the component is loaded
|
|
public override componentDidMount (): void {
|
|
this.componentDidUpdate(null, {});
|
|
}
|
|
|
|
// This is needed in the case where the item changes, i.e. the values get
|
|
// initialized and we need to alert the parent that we have new values
|
|
public override componentDidUpdate (_: Props | null, prevState: State): void {
|
|
const { isDisabled } = this.props;
|
|
const { values } = this.state;
|
|
|
|
if (!isDisabled && stringify(prevState.values) !== stringify(values)) {
|
|
this.triggerUpdate();
|
|
}
|
|
}
|
|
|
|
public override render (): React.ReactNode {
|
|
const { children, className = '', isDisabled, isError, onEnter, onEscape, overrides, params, registry = statics.api.registry, withBorder = true, withExpander, withLength = true } = this.props;
|
|
const { values = this.props.values } = this.state;
|
|
|
|
if (!values?.length) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Holder
|
|
className={className}
|
|
withBorder={withBorder}
|
|
withExpander={withExpander}
|
|
>
|
|
<ErrorBoundary onError={this.onRenderError}>
|
|
<div className='ui--Params-Content'>
|
|
{values && params?.map(({ name, type }: ParamDef, index: number): React.ReactNode => (
|
|
<ParamComp
|
|
defaultValue={values[index]}
|
|
index={index}
|
|
isDisabled={isDisabled}
|
|
isError={isError}
|
|
key={`${name || ''}:${type.type.toString()}:${index}:${isDisabled ? stringify(values[index]) : ''}`}
|
|
name={name}
|
|
onChange={this.onChangeParam}
|
|
onEnter={onEnter}
|
|
onEscape={onEscape}
|
|
overrides={overrides}
|
|
registry={registry}
|
|
type={type}
|
|
withLength={withLength}
|
|
/>
|
|
))}
|
|
{children}
|
|
</div>
|
|
</ErrorBoundary>
|
|
</Holder>
|
|
);
|
|
}
|
|
|
|
private onChangeParam = (index: number, newValue: RawParamOnChangeValue): void => {
|
|
const { isDisabled } = this.props;
|
|
|
|
if (isDisabled) {
|
|
return;
|
|
}
|
|
|
|
const { isValid = false, value } = newValue;
|
|
|
|
this.setState(
|
|
(prevState: State): Pick<State, never> => ({
|
|
values: (prevState.values || []).map((prev, prevIndex): RawParam =>
|
|
prevIndex !== index
|
|
? prev
|
|
: { isValid, value }
|
|
)
|
|
}),
|
|
this.triggerUpdate
|
|
);
|
|
};
|
|
|
|
private triggerUpdate = (): void => {
|
|
const { isDisabled, onChange } = this.props;
|
|
const { values } = this.state;
|
|
|
|
if (isDisabled || !values) {
|
|
return;
|
|
}
|
|
|
|
onChange && onChange(values);
|
|
};
|
|
|
|
private onRenderError = (): void => {
|
|
const { onError } = this.props;
|
|
|
|
onError && onError();
|
|
};
|
|
}
|
|
|
|
export default translate<Props>(Params);
|