29350c9f33
* refactor(frontend): `os.ts`周りのリファクタリング * refactor: apiWithDialogのdataの型付け * refactor: 不要なas anyを除去 * refactor: 返り値の型を明記、`selectDriveFolder`は`File`のほうに合わせるよう返り値を変更 * refactor: 返り値の型を改善 * refactor: フォームの型を改善 * refactor: 良い感じのimportに修正 * refactor: フォームの返り値の型を改善 * refactor: `popup()`の`props`に`ref`な値を入れるのを許可するように * fix: `os.input`系と`os.select`の返り値の型がおかしい問題とそれによるバグを修正 * Update CHANGELOG.md * Update CHANGELOG.md --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
93 lines
1.9 KiB
TypeScript
93 lines
1.9 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
type EnumItem = string | {
|
|
label: string;
|
|
value: string;
|
|
};
|
|
|
|
export type FormItem = {
|
|
label?: string;
|
|
type: 'string';
|
|
default: string | null;
|
|
description?: string;
|
|
required?: boolean;
|
|
hidden?: boolean;
|
|
multiline?: boolean;
|
|
treatAsMfm?: boolean;
|
|
} | {
|
|
label?: string;
|
|
type: 'number';
|
|
default: number | null;
|
|
description?: string;
|
|
required?: boolean;
|
|
hidden?: boolean;
|
|
step?: number;
|
|
} | {
|
|
label?: string;
|
|
type: 'boolean';
|
|
default: boolean | null;
|
|
description?: string;
|
|
hidden?: boolean;
|
|
} | {
|
|
label?: string;
|
|
type: 'enum';
|
|
default: string | null;
|
|
required?: boolean;
|
|
hidden?: boolean;
|
|
enum: EnumItem[];
|
|
} | {
|
|
label?: string;
|
|
type: 'radio';
|
|
default: unknown | null;
|
|
required?: boolean;
|
|
hidden?: boolean;
|
|
options: {
|
|
label: string;
|
|
value: unknown;
|
|
}[];
|
|
} | {
|
|
label?: string;
|
|
type: 'range';
|
|
default: number | null;
|
|
description?: string;
|
|
required?: boolean;
|
|
step?: number;
|
|
min: number;
|
|
max: number;
|
|
textConverter?: (value: number) => string;
|
|
} | {
|
|
label?: string;
|
|
type: 'object';
|
|
default: Record<string, unknown> | null;
|
|
hidden: boolean;
|
|
} | {
|
|
label?: string;
|
|
type: 'array';
|
|
default: unknown[] | null;
|
|
hidden: boolean;
|
|
} | {
|
|
type: 'button';
|
|
content?: string;
|
|
action: (ev: MouseEvent, v: any) => void;
|
|
};
|
|
|
|
export type Form = Record<string, FormItem>;
|
|
|
|
type GetItemType<Item extends FormItem> =
|
|
Item['type'] extends 'string' ? string :
|
|
Item['type'] extends 'number' ? number :
|
|
Item['type'] extends 'boolean' ? boolean :
|
|
Item['type'] extends 'radio' ? unknown :
|
|
Item['type'] extends 'range' ? number :
|
|
Item['type'] extends 'enum' ? string :
|
|
Item['type'] extends 'array' ? unknown[] :
|
|
Item['type'] extends 'object' ? Record<string, unknown>
|
|
: never;
|
|
|
|
export type GetFormResultType<F extends Form> = {
|
|
[P in keyof F]: GetItemType<F[P]>;
|
|
};
|