// Copyright 2017-2026 @pezkuwi/app-settings authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { Option } from '@pezkuwi/apps-config/settings/types';
import type { SettingsStruct } from '@pezkuwi/ui-settings/types';
import React from 'react';
import { ChainImg, Dropdown, IdentityIcon } from '@pezkuwi/react-components';
import { settings } from '@pezkuwi/ui-settings';
export function createOption ({ info, isHeader, text, value }: Option, overrides: string[] = [], override = 'empty', extra?: string): Option | React.ReactNode {
if (isHeader) {
return (
);
}
return {
text: (
),
value
};
}
export function createIdenticon ({ info, text, value }: Option, overrides: string[] = [], override = 'empty'): Option {
const theme = info && overrides.includes(info)
? override as 'empty'
: info as 'bizinikiwi';
return {
text: (
{theme === 'empty'
? (
)
: (
)}
{text}
),
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();
}