Files
pwap/pezkuwi-sdk-ui/packages/page-settings/src/util.tsx
T
Claude 60a800b33e Add Pezkuwi SDK UI - Polkadot.js Apps clone
- 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
2025-11-14 00:55:17 +00:00

87 lines
2.2 KiB
TypeScript

// Copyright 2017-2025 @polkadot/app-settings authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { Option } from '@polkadot/apps-config/settings/types';
import type { SettingsStruct } from '@polkadot/ui-settings/types';
import React from 'react';
import { ChainImg, Dropdown, IdentityIcon } from '@polkadot/react-components';
import { settings } from '@polkadot/ui-settings';
export function createOption ({ info, isHeader, text, value }: Option, overrides: string[] = [], override = 'empty', extra?: string): Option | React.ReactNode {
if (isHeader) {
return (
<Dropdown.Header
content={text}
key={text as string}
/>
);
}
return {
text: (
<div
className='ui--Dropdown-item'
key={value}
>
<ChainImg
className='ui--Dropdown-icon'
logo={
info && overrides.includes(info)
? override
: info
}
/>
<div className='ui--Dropdown-name'>{text}{extra}</div>
</div>
),
value
};
}
export function createIdenticon ({ info, text, value }: Option, overrides: string[] = [], override = 'empty'): Option {
const theme = info && overrides.includes(info)
? override as 'empty'
: info as 'substrate';
return {
text: (
<div
className='ui--Dropdown-item'
key={value}
>
{theme === 'empty'
? (
<ChainImg
className='ui--Dropdown-icon'
logo='empty'
/>
)
: (
<IdentityIcon
className='ui--Dropdown-icon'
size={32}
theme={theme}
value='5F9999K9UgTUgSsbXZQcEmRMvQqwJoBUHMv9e1k2MdgghuRA'
/>
)}
<div className='ui--Dropdown-name'>{text}</div>
</div>
),
value
};
}
export function save (state: SettingsStruct): void {
settings.set(state);
}
export function saveAndReload (state: SettingsStruct): void {
save(state);
// HACK This is terrible, but since the API needs to re-connect and
// the API does not yet handle re-connections properly, it is what it is
window.location.reload();
}