fix: make SettingType.select inferring options as type

This commit is contained in:
yassinedorbozgithub 2025-02-14 07:12:56 +01:00
parent 457d49ca27
commit 60a6455b61

View File

@ -1,11 +1,13 @@
/*
* Copyright © 2024 Hexastack. All rights reserved.
* Copyright © 2025 Hexastack. All rights reserved.
*
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
*/
import { SettingType } from '@/setting/schemas/types';
import { SettingByType } from './schemas/types';
import { DEFAULT_SETTINGS } from './seeds/setting.seed-model';
@ -22,10 +24,14 @@ declare global {
? { [K in keyof T]: TNativeType<T[K]> }
: T;
type SettingValue<K> = K['type'] extends SettingType.select
? K['options'][number]
: TNativeType<K['value']>;
type SettingObject<
T extends Omit<Setting, 'id' | 'createdAt' | 'updatedAt'>[],
> = {
[K in T[number] as K['label']]: TNativeType<K['value']>;
[K in T[number] as K['label']]: SettingValue<K>;
};
type SettingMapByType<
@ -38,7 +44,7 @@ declare global {
T extends Omit<Setting, 'id' | 'createdAt' | 'updatedAt'>[],
> = {
[G in T[number] as G['group']]: {
[K in T[number] as K['label']]: TNativeType<K['value']>;
[K in T[number] as K['label']]: SettingValue<K>;
};
};