aboutsummaryrefslogtreecommitdiffstats
path: root/src/@types/stores.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/stores.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/stores.types.ts')
-rw-r--r--src/@types/stores.types.ts9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/@types/stores.types.ts b/src/@types/stores.types.ts
index ff8f127ed..dc5da563f 100644
--- a/src/@types/stores.types.ts
+++ b/src/@types/stores.types.ts
@@ -1,3 +1,4 @@
1/* eslint-disable no-use-before-define */
1import Workspace from '../features/workspaces/models/Workspace'; 2import Workspace from '../features/workspaces/models/Workspace';
2import Recipe from '../models/Recipe'; 3import Recipe from '../models/Recipe';
3import Service from '../models/Service'; 4import Service from '../models/Service';
@@ -201,7 +202,7 @@ interface RouterStore {
201 replace: () => void; 202 replace: () => void;
202} 203}
203 204
204export interface ServicesStore extends TypedStore { 205interface ServicesStore extends TypedStore {
205 clearCacheRequest: () => void; 206 clearCacheRequest: () => void;
206 createServiceRequest: CachedRequest; 207 createServiceRequest: CachedRequest;
207 deleteServiceRequest: () => void; 208 deleteServiceRequest: () => void;
@@ -227,7 +228,7 @@ interface ISettings {
227 [key: string]: any; 228 [key: string]: any;
228} 229}
229 230
230export interface SettingsStore extends TypedStore { 231interface SettingsStore extends TypedStore {
231 update: (value: any) => void; 232 update: (value: any) => void;
232 remove: (value: any) => void; 233 remove: (value: any) => void;
233 fileSystemSettingsTypes: any[]; 234 fileSystemSettingsTypes: any[];
@@ -288,7 +289,7 @@ interface UIStore extends TypedStore {
288 theme: () => void; 289 theme: () => void;
289} 290}
290 291
291export interface UserStore extends TypedStore { 292interface UserStore extends TypedStore {
292 BASE_ROUTE: '/auth'; 293 BASE_ROUTE: '/auth';
293 CHANGE_SERVER_ROUTE: '/auth/server'; 294 CHANGE_SERVER_ROUTE: '/auth/server';
294 IMPORT_ROUTE: '/auth/signup/import'; 295 IMPORT_ROUTE: '/auth/signup/import';
@@ -338,7 +339,7 @@ export interface UserStore extends TypedStore {
338 team: () => void; 339 team: () => void;
339} 340}
340 341
341export interface WorkspacesStore extends TypedStore { 342interface WorkspacesStore extends TypedStore {
342 activeWorkspace: () => void; 343 activeWorkspace: () => void;
343 delete: ({ workspace }) => void; 344 delete: ({ workspace }) => void;
344 update: ({ workspace }) => void; 345 update: ({ workspace }) => void;