mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-09 22:02:19 +02:00
Refactor settings store and components
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import { SettingsOptions } from '/@/renderer/features/settings/components/settings-option';
|
||||
|
||||
export type SettingOption = {
|
||||
control: JSX.Element;
|
||||
description: string | JSX.Element;
|
||||
isHidden?: boolean;
|
||||
note?: string;
|
||||
title: string;
|
||||
};
|
||||
|
||||
interface SettingsSectionProps {
|
||||
options: SettingOption[];
|
||||
}
|
||||
|
||||
export const SettingsSection = ({ options }: SettingsSectionProps) => {
|
||||
return (
|
||||
<>
|
||||
{options
|
||||
.filter((o) => !o.isHidden)
|
||||
.map((option) => (
|
||||
<SettingsOptions
|
||||
key={`general-${option.title}`}
|
||||
{...option}
|
||||
/>
|
||||
))}
|
||||
</>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user