mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-08-01 08:25:41 +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
72 lines
1.4 KiB
TypeScript
72 lines
1.4 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/react-components authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import React, { useCallback } from 'react';
|
|
|
|
import Icon from './Icon.js';
|
|
import { styled } from './styled.js';
|
|
|
|
interface Props {
|
|
className?: string;
|
|
isDisabled?: boolean;
|
|
label?: React.ReactNode;
|
|
onChange?: (isChecked: boolean) => void;
|
|
value?: boolean;
|
|
}
|
|
|
|
function Checkbox ({ className = '', isDisabled, label, onChange, value }: Props): React.ReactElement<Props> {
|
|
const _onClick = useCallback(
|
|
(): void => {
|
|
!isDisabled && onChange && onChange(!value);
|
|
},
|
|
[isDisabled, onChange, value]
|
|
);
|
|
|
|
return (
|
|
<StyledDiv
|
|
className={`${className} ui--Checkbox ${isDisabled ? 'isDisabled' : ''}`}
|
|
onClick={_onClick}
|
|
>
|
|
<Icon
|
|
color={value ? 'normal' : 'transparent'}
|
|
icon='check'
|
|
/>
|
|
{label && <label>{label}</label>}
|
|
</StyledDiv>
|
|
);
|
|
}
|
|
|
|
const StyledDiv = styled.div`
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
|
|
&.isDisabled {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
&:not(.isDisabled) {
|
|
cursor: pointer;
|
|
}
|
|
|
|
> label {
|
|
color: var(--color-text);
|
|
display: inline-block;
|
|
margin: 0 0.5rem;
|
|
opacity: 1;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
> label,
|
|
> .ui--Icon {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.ui--Icon {
|
|
border: 1px solid var(--color-checkbox);
|
|
border-radius: 0.125rem;
|
|
}
|
|
`;
|
|
|
|
export default React.memo(Checkbox);
|