aboutsummaryrefslogtreecommitdiffstats
path: root/src/@types/mobx-form.types.ts
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-07-29 21:12:16 -0600
committerLibravatar GitHub <noreply@github.com>2023-07-30 08:42:16 +0530
commit32f76b74a69ad4d60a014bf075c39517888436bc (patch)
tree753378cc30f52d1e0e51be64b5a83d39f08f39c8 /src/@types/mobx-form.types.ts
parent6.4.1-nightly.15 [skip ci] (diff)
downloadferdium-app-32f76b74a69ad4d60a014bf075c39517888436bc.tar.gz
ferdium-app-32f76b74a69ad4d60a014bf075c39517888436bc.tar.zst
ferdium-app-32f76b74a69ad4d60a014bf075c39517888436bc.zip
refactor: various improvements (#1296)
* refactor: various improvements - enable no-use-before-define eslint rule - shuffle code to conform to no-use-before-define eslint rule - remove btoa dependency which is deprecated and replace with Buffer.from(string).toString('base64') - convert some any types into useful ones - add type annotations where possible - remove unused @types/expect.js - install @types/semver and ts-node which were missing - repair and rewrite add-crowdin-contributors script - remove export keyword from variables which are never consumed in another file - remove unity indicator hack where linked issue was closed - remove module declaration for kebab-case which is unused - add missing state interface for certain components - remove default exports for files which already have a named export - export IRecipePreview so it can be used throughout codebase - remove unused removeCacheForCallWith method from CachedRequest.ts - cleanup unused colors and styles inside legacy theme * - improve ColorPickerInput - fix invalid DOM nesting with div inside p in EditSettingsForm - fix progressbarAccentColor color picker not updating input when using slider - install missing @types/react-color dependency
Diffstat (limited to 'src/@types/mobx-form.types.ts')
-rw-r--r--src/@types/mobx-form.types.ts32
1 files changed, 12 insertions, 20 deletions
diff --git a/src/@types/mobx-form.types.ts b/src/@types/mobx-form.types.ts
index 07234a47a..aa274b9db 100644
--- a/src/@types/mobx-form.types.ts
+++ b/src/@types/mobx-form.types.ts
@@ -1,17 +1,17 @@
1import { File } from 'electron-dl';
2import { ChangeEventHandler, FocusEventHandler } from 'react'; 1import { ChangeEventHandler, FocusEventHandler } from 'react';
3import { GlobalError } from './ferdium-components.types'; 2import { GlobalError } from './ferdium-components.types';
4 3
5export interface FormFieldOptions { 4interface SelectOptions {
6 value?: string;
7 label?: string;
8 disabled?: boolean; 5 disabled?: boolean;
6 label?: string;
7 value?: string;
9} 8}
10 9
11export interface FormFields { 10interface Listeners {
12 fields: { 11 onChange?: ChangeEventHandler<HTMLInputElement | HTMLSelectElement>;
13 [key: string]: Field; 12 onBlur?: FocusEventHandler<HTMLElement>;
14 }; 13 onFocus?: FocusEventHandler<HTMLElement>;
14 onDrop?: (file: File) => void;
15} 15}
16 16
17export interface Field extends Listeners { 17export interface Field extends Listeners {
@@ -29,16 +29,8 @@ export interface Field extends Listeners {
29 set?: (value: any) => void; 29 set?: (value: any) => void;
30 [key: string]: any; 30 [key: string]: any;
31} 31}
32 32export interface FormFields {
33export interface SelectOptions { 33 fields: {
34 disabled?: boolean; 34 [key: string]: Field;
35 label?: string; 35 };
36 value?: string;
37}
38
39export interface Listeners {
40 onChange?: ChangeEventHandler<HTMLInputElement | HTMLSelectElement>;
41 onBlur?: FocusEventHandler<HTMLElement>;
42 onFocus?: FocusEventHandler<HTMLElement>;
43 onDrop?: (file: File) => void;
44} 36}