aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/@types/ferdium-components.types.ts4
-rw-r--r--src/containers/auth/AuthLayoutContainer.tsx2
-rw-r--r--src/containers/auth/ChangeServerScreen.tsx2
-rw-r--r--src/containers/auth/ImportScreen.tsx2
-rw-r--r--src/containers/auth/InviteScreen.tsx2
-rw-r--r--src/containers/auth/LockedScreen.tsx2
-rw-r--r--src/containers/auth/LoginScreen.tsx2
-rw-r--r--src/containers/auth/PasswordScreen.tsx2
-rw-r--r--src/containers/auth/SetupAssistantScreen.tsx2
-rw-r--r--src/containers/auth/SignupScreen.tsx2
-rw-r--r--src/containers/auth/WelcomeScreen.tsx2
-rw-r--r--src/containers/layout/AppLayoutContainer.tsx2
-rw-r--r--src/containers/settings/AccountScreen.tsx2
-rw-r--r--src/containers/settings/EditServiceScreen.tsx8
-rw-r--r--src/containers/settings/EditSettingsScreen.tsx4
-rw-r--r--src/containers/settings/EditUserScreen.tsx4
-rw-r--r--src/containers/settings/InviteScreen.tsx2
-rw-r--r--src/containers/settings/RecipesScreen.tsx4
-rw-r--r--src/containers/settings/ServicesScreen.tsx2
-rw-r--r--src/containers/settings/SettingsWindow.tsx3
-rw-r--r--src/containers/settings/TeamScreen.tsx2
-rw-r--r--src/features/workspaces/store.js2
-rw-r--r--src/stores/AppStore.ts6
-rw-r--r--src/stores/GlobalErrorStore.ts6
-rw-r--r--src/stores/RecipePreviewsStore.ts10
-rw-r--r--src/stores/RecipesStore.ts8
-rw-r--r--src/stores/RequestStore.ts6
-rw-r--r--src/stores/ServicesStore.ts6
-rw-r--r--src/stores/SettingsStore.ts6
-rw-r--r--src/stores/UIStore.ts6
-rw-r--r--src/stores/UserStore.ts6
-rw-r--r--src/stores/index.ts4
-rw-r--r--src/stores/lib/TypedStore.ts6
33 files changed, 64 insertions, 65 deletions
diff --git a/src/@types/ferdium-components.types.ts b/src/@types/ferdium-components.types.ts
index c4d1f0696..03cfdc3b7 100644
--- a/src/@types/ferdium-components.types.ts
+++ b/src/@types/ferdium-components.types.ts
@@ -1,5 +1,5 @@
1import { Actions } from 'src/actions/lib/actions'; 1import { Actions } from '../actions/lib/actions';
2import { RealStores } from 'src/stores'; 2import { RealStores } from '../stores';
3 3
4export interface StoresProps { 4export interface StoresProps {
5 actions: Actions; 5 actions: Actions;
diff --git a/src/containers/auth/AuthLayoutContainer.tsx b/src/containers/auth/AuthLayoutContainer.tsx
index abe3905e0..1f2753a66 100644
--- a/src/containers/auth/AuthLayoutContainer.tsx
+++ b/src/containers/auth/AuthLayoutContainer.tsx
@@ -2,8 +2,8 @@ import { Component, ReactElement, ReactNode } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { ThemeProvider } from 'react-jss'; 3import { ThemeProvider } from 'react-jss';
4 4
5import { StoresProps } from 'src/@types/ferdium-components.types';
6import { Location } from 'mobx-react-router'; 5import { Location } from 'mobx-react-router';
6import { StoresProps } from '../../@types/ferdium-components.types';
7import AuthLayout from '../../components/auth/AuthLayout'; 7import AuthLayout from '../../components/auth/AuthLayout';
8import AppLoader from '../../components/ui/AppLoader'; 8import AppLoader from '../../components/ui/AppLoader';
9 9
diff --git a/src/containers/auth/ChangeServerScreen.tsx b/src/containers/auth/ChangeServerScreen.tsx
index 6d0feaecb..29320a001 100644
--- a/src/containers/auth/ChangeServerScreen.tsx
+++ b/src/containers/auth/ChangeServerScreen.tsx
@@ -1,6 +1,6 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { StoresProps } from 'src/@types/ferdium-components.types'; 3import { StoresProps } from '../../@types/ferdium-components.types';
4import ChangeServer from '../../components/auth/ChangeServer'; 4import ChangeServer from '../../components/auth/ChangeServer';
5 5
6class ChangeServerScreen extends Component<StoresProps> { 6class ChangeServerScreen extends Component<StoresProps> {
diff --git a/src/containers/auth/ImportScreen.tsx b/src/containers/auth/ImportScreen.tsx
index 3522ce0ce..91e985ad5 100644
--- a/src/containers/auth/ImportScreen.tsx
+++ b/src/containers/auth/ImportScreen.tsx
@@ -1,6 +1,6 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { StoresProps } from 'src/@types/ferdium-components.types'; 3import { StoresProps } from '../../@types/ferdium-components.types';
4import Import from '../../components/auth/Import'; 4import Import from '../../components/auth/Import';
5 5
6class ImportScreen extends Component<StoresProps> { 6class ImportScreen extends Component<StoresProps> {
diff --git a/src/containers/auth/InviteScreen.tsx b/src/containers/auth/InviteScreen.tsx
index 40ebdba8d..2dfc3c88c 100644
--- a/src/containers/auth/InviteScreen.tsx
+++ b/src/containers/auth/InviteScreen.tsx
@@ -1,6 +1,6 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { StoresProps } from 'src/@types/ferdium-components.types'; 3import { StoresProps } from '../../@types/ferdium-components.types';
4import Invite from '../../components/auth/Invite'; 4import Invite from '../../components/auth/Invite';
5 5
6class InviteScreen extends Component<StoresProps> { 6class InviteScreen extends Component<StoresProps> {
diff --git a/src/containers/auth/LockedScreen.tsx b/src/containers/auth/LockedScreen.tsx
index 88f743d02..1b703207f 100644
--- a/src/containers/auth/LockedScreen.tsx
+++ b/src/containers/auth/LockedScreen.tsx
@@ -1,6 +1,6 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { StoresProps } from 'src/@types/ferdium-components.types'; 3import { StoresProps } from '../../@types/ferdium-components.types';
4import Locked from '../../components/auth/Locked'; 4import Locked from '../../components/auth/Locked';
5 5
6import { hash } from '../../helpers/password-helpers'; 6import { hash } from '../../helpers/password-helpers';
diff --git a/src/containers/auth/LoginScreen.tsx b/src/containers/auth/LoginScreen.tsx
index c2efd27eb..5c30e6569 100644
--- a/src/containers/auth/LoginScreen.tsx
+++ b/src/containers/auth/LoginScreen.tsx
@@ -1,6 +1,6 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { StoresProps, GlobalError } from 'src/@types/ferdium-components.types'; 3import { StoresProps, GlobalError } from '../../@types/ferdium-components.types';
4import Login from '../../components/auth/Login'; 4import Login from '../../components/auth/Login';
5 5
6interface LoginScreenProps extends StoresProps { 6interface LoginScreenProps extends StoresProps {
diff --git a/src/containers/auth/PasswordScreen.tsx b/src/containers/auth/PasswordScreen.tsx
index 313554802..c7539f21e 100644
--- a/src/containers/auth/PasswordScreen.tsx
+++ b/src/containers/auth/PasswordScreen.tsx
@@ -1,6 +1,6 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { StoresProps } from 'src/@types/ferdium-components.types'; 3import { StoresProps } from '../../@types/ferdium-components.types';
4import Password from '../../components/auth/Password'; 4import Password from '../../components/auth/Password';
5 5
6class PasswordScreen extends Component<StoresProps> { 6class PasswordScreen extends Component<StoresProps> {
diff --git a/src/containers/auth/SetupAssistantScreen.tsx b/src/containers/auth/SetupAssistantScreen.tsx
index b286d7cac..661d688aa 100644
--- a/src/containers/auth/SetupAssistantScreen.tsx
+++ b/src/containers/auth/SetupAssistantScreen.tsx
@@ -2,7 +2,7 @@
2import { Component, ReactElement } from 'react'; 2import { Component, ReactElement } from 'react';
3import { inject, observer } from 'mobx-react'; 3import { inject, observer } from 'mobx-react';
4 4
5import { StoresProps } from 'src/@types/ferdium-components.types'; 5import { StoresProps } from '../../@types/ferdium-components.types';
6import sleep from '../../helpers/async-helpers'; 6import sleep from '../../helpers/async-helpers';
7import SetupAssistant from '../../components/auth/SetupAssistant'; 7import SetupAssistant from '../../components/auth/SetupAssistant';
8 8
diff --git a/src/containers/auth/SignupScreen.tsx b/src/containers/auth/SignupScreen.tsx
index 04b39df67..f3675c286 100644
--- a/src/containers/auth/SignupScreen.tsx
+++ b/src/containers/auth/SignupScreen.tsx
@@ -1,7 +1,7 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3 3
4import { StoresProps, GlobalError } from 'src/@types/ferdium-components.types'; 4import { StoresProps, GlobalError } from '../../@types/ferdium-components.types';
5import Signup from '../../components/auth/Signup'; 5import Signup from '../../components/auth/Signup';
6 6
7interface SignUpScreenComponents extends StoresProps { 7interface SignUpScreenComponents extends StoresProps {
diff --git a/src/containers/auth/WelcomeScreen.tsx b/src/containers/auth/WelcomeScreen.tsx
index bbd5b4825..c03319179 100644
--- a/src/containers/auth/WelcomeScreen.tsx
+++ b/src/containers/auth/WelcomeScreen.tsx
@@ -1,7 +1,7 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3 3
4import { StoresProps } from 'src/@types/ferdium-components.types'; 4import { StoresProps } from '../../@types/ferdium-components.types';
5import Welcome from '../../components/auth/Welcome'; 5import Welcome from '../../components/auth/Welcome';
6 6
7class WelcomeScreen extends Component<StoresProps> { 7class WelcomeScreen extends Component<StoresProps> {
diff --git a/src/containers/layout/AppLayoutContainer.tsx b/src/containers/layout/AppLayoutContainer.tsx
index c6a9dfb0d..984ea8b68 100644
--- a/src/containers/layout/AppLayoutContainer.tsx
+++ b/src/containers/layout/AppLayoutContainer.tsx
@@ -2,7 +2,7 @@ import { Children, Component, ReactElement, ReactNode } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { ThemeProvider } from 'react-jss'; 3import { ThemeProvider } from 'react-jss';
4 4
5import { StoresProps } from 'src/@types/ferdium-components.types'; 5import { StoresProps } from '../../@types/ferdium-components.types';
6import AppLayout from '../../components/layout/AppLayout'; 6import AppLayout from '../../components/layout/AppLayout';
7import Sidebar from '../../components/layout/Sidebar'; 7import Sidebar from '../../components/layout/Sidebar';
8import Services from '../../components/services/content/Services'; 8import Services from '../../components/services/content/Services';
diff --git a/src/containers/settings/AccountScreen.tsx b/src/containers/settings/AccountScreen.tsx
index 480b61f6c..e072b28af 100644
--- a/src/containers/settings/AccountScreen.tsx
+++ b/src/containers/settings/AccountScreen.tsx
@@ -1,7 +1,7 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3 3
4import { StoresProps } from 'src/@types/ferdium-components.types'; 4import { StoresProps } from '../../@types/ferdium-components.types';
5 5
6import AccountDashboard from '../../components/settings/account/AccountDashboard'; 6import AccountDashboard from '../../components/settings/account/AccountDashboard';
7import ErrorBoundary from '../../components/util/ErrorBoundary'; 7import ErrorBoundary from '../../components/util/ErrorBoundary';
diff --git a/src/containers/settings/EditServiceScreen.tsx b/src/containers/settings/EditServiceScreen.tsx
index 93fb4418d..f8532a7b4 100644
--- a/src/containers/settings/EditServiceScreen.tsx
+++ b/src/containers/settings/EditServiceScreen.tsx
@@ -3,10 +3,10 @@ import { inject, observer } from 'mobx-react';
3import { defineMessages, injectIntl } from 'react-intl'; 3import { defineMessages, injectIntl } from 'react-intl';
4 4
5import { RouterStore } from 'mobx-react-router'; 5import { RouterStore } from 'mobx-react-router';
6import { StoresProps } from 'src/@types/ferdium-components.types'; 6import { StoresProps } from '../../@types/ferdium-components.types';
7import { IRecipe } from 'src/models/Recipe'; 7import { IRecipe } from '../../models/Recipe';
8import Service from 'src/models/Service'; 8import Service from '../../models/Service';
9import { FormFields } from 'src/@types/mobx-form.types'; 9import { FormFields } from '../../@types/mobx-form.types';
10import Form from '../../lib/Form'; 10import Form from '../../lib/Form';
11 11
12import ServiceError from '../../components/settings/services/ServiceError'; 12import ServiceError from '../../components/settings/services/ServiceError';
diff --git a/src/containers/settings/EditSettingsScreen.tsx b/src/containers/settings/EditSettingsScreen.tsx
index 205c71107..b2604ae0e 100644
--- a/src/containers/settings/EditSettingsScreen.tsx
+++ b/src/containers/settings/EditSettingsScreen.tsx
@@ -3,8 +3,8 @@ import { Component, ReactElement } from 'react';
3import { inject, observer } from 'mobx-react'; 3import { inject, observer } from 'mobx-react';
4import { defineMessages, injectIntl } from 'react-intl'; 4import { defineMessages, injectIntl } from 'react-intl';
5 5
6import { FormFields } from 'src/@types/mobx-form.types'; 6import { FormFields } from '../../@types/mobx-form.types';
7import { StoresProps } from 'src/@types/ferdium-components.types'; 7import { StoresProps } from '../../@types/ferdium-components.types';
8import Form from '../../lib/Form'; 8import Form from '../../lib/Form';
9import { APP_LOCALES, SPELLCHECKER_LOCALES } from '../../i18n/languages'; 9import { APP_LOCALES, SPELLCHECKER_LOCALES } from '../../i18n/languages';
10import { 10import {
diff --git a/src/containers/settings/EditUserScreen.tsx b/src/containers/settings/EditUserScreen.tsx
index 6ab288d6f..0d6c47da5 100644
--- a/src/containers/settings/EditUserScreen.tsx
+++ b/src/containers/settings/EditUserScreen.tsx
@@ -2,8 +2,8 @@ import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { defineMessages, injectIntl } from 'react-intl'; 3import { defineMessages, injectIntl } from 'react-intl';
4 4
5import { StoresProps } from 'src/@types/ferdium-components.types'; 5import { StoresProps } from '../../@types/ferdium-components.types';
6import { FormFields } from 'src/@types/mobx-form.types'; 6import { FormFields } from '../../@types/mobx-form.types';
7import Form from '../../lib/Form'; 7import Form from '../../lib/Form';
8import EditUserForm from '../../components/settings/user/EditUserForm'; 8import EditUserForm from '../../components/settings/user/EditUserForm';
9import ErrorBoundary from '../../components/util/ErrorBoundary'; 9import ErrorBoundary from '../../components/util/ErrorBoundary';
diff --git a/src/containers/settings/InviteScreen.tsx b/src/containers/settings/InviteScreen.tsx
index ff192783c..c67b892bd 100644
--- a/src/containers/settings/InviteScreen.tsx
+++ b/src/containers/settings/InviteScreen.tsx
@@ -1,7 +1,7 @@
1import { Component, ReactNode } from 'react'; 1import { Component, ReactNode } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3 3
4import { StoresProps } from 'src/@types/ferdium-components.types'; 4import { StoresProps } from '../../@types/ferdium-components.types';
5import Invite from '../../components/auth/Invite'; 5import Invite from '../../components/auth/Invite';
6import ErrorBoundary from '../../components/util/ErrorBoundary'; 6import ErrorBoundary from '../../components/util/ErrorBoundary';
7 7
diff --git a/src/containers/settings/RecipesScreen.tsx b/src/containers/settings/RecipesScreen.tsx
index c50ff246e..bc7fa9ba0 100644
--- a/src/containers/settings/RecipesScreen.tsx
+++ b/src/containers/settings/RecipesScreen.tsx
@@ -3,8 +3,8 @@ import { Component, ReactElement } from 'react';
3import { autorun, IReactionDisposer } from 'mobx'; 3import { autorun, IReactionDisposer } from 'mobx';
4import { inject, observer } from 'mobx-react'; 4import { inject, observer } from 'mobx-react';
5 5
6import { StoresProps } from 'src/@types/ferdium-components.types'; 6import Recipe from '../../models/Recipe';
7import Recipe from 'src/models/Recipe'; 7import { StoresProps } from '../../@types/ferdium-components.types';
8import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard'; 8import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard';
9import ErrorBoundary from '../../components/util/ErrorBoundary'; 9import ErrorBoundary from '../../components/util/ErrorBoundary';
10import { CUSTOM_WEBSITE_RECIPE_ID, FRANZ_DEV_DOCS } from '../../config'; 10import { CUSTOM_WEBSITE_RECIPE_ID, FRANZ_DEV_DOCS } from '../../config';
diff --git a/src/containers/settings/ServicesScreen.tsx b/src/containers/settings/ServicesScreen.tsx
index 615747382..affe965e9 100644
--- a/src/containers/settings/ServicesScreen.tsx
+++ b/src/containers/settings/ServicesScreen.tsx
@@ -1,7 +1,7 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3 3
4import { StoresProps } from 'src/@types/ferdium-components.types'; 4import { StoresProps } from '../../@types/ferdium-components.types';
5import ServicesDashboard from '../../components/settings/services/ServicesDashboard'; 5import ServicesDashboard from '../../components/settings/services/ServicesDashboard';
6import ErrorBoundary from '../../components/util/ErrorBoundary'; 6import ErrorBoundary from '../../components/util/ErrorBoundary';
7 7
diff --git a/src/containers/settings/SettingsWindow.tsx b/src/containers/settings/SettingsWindow.tsx
index fb1e2fd2d..2192a6f69 100644
--- a/src/containers/settings/SettingsWindow.tsx
+++ b/src/containers/settings/SettingsWindow.tsx
@@ -2,8 +2,7 @@ import { Component, ReactNode, ReactPortal } from 'react';
2import ReactDOM from 'react-dom'; 2import ReactDOM from 'react-dom';
3import { observer, inject } from 'mobx-react'; 3import { observer, inject } from 'mobx-react';
4 4
5import { StoresProps } from 'src/@types/ferdium-components.types'; 5import { StoresProps } from '../../@types/ferdium-components.types';
6
7import Layout from '../../components/settings/SettingsLayout'; 6import Layout from '../../components/settings/SettingsLayout';
8import Navigation from '../../components/settings/navigation/SettingsNavigation'; 7import Navigation from '../../components/settings/navigation/SettingsNavigation';
9import ErrorBoundary from '../../components/util/ErrorBoundary'; 8import ErrorBoundary from '../../components/util/ErrorBoundary';
diff --git a/src/containers/settings/TeamScreen.tsx b/src/containers/settings/TeamScreen.tsx
index 5e5223f67..9d155f01c 100644
--- a/src/containers/settings/TeamScreen.tsx
+++ b/src/containers/settings/TeamScreen.tsx
@@ -1,7 +1,7 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3 3
4import { StoresProps } from 'src/@types/ferdium-components.types'; 4import { StoresProps } from '../../@types/ferdium-components.types';
5 5
6import TeamDashboard from '../../components/settings/team/TeamDashboard'; 6import TeamDashboard from '../../components/settings/team/TeamDashboard';
7import ErrorBoundary from '../../components/util/ErrorBoundary'; 7import ErrorBoundary from '../../components/util/ErrorBoundary';
diff --git a/src/features/workspaces/store.js b/src/features/workspaces/store.js
index 4fdb3dd15..9b4c4e928 100644
--- a/src/features/workspaces/store.js
+++ b/src/features/workspaces/store.js
@@ -1,6 +1,6 @@
1import { computed, observable, action } from 'mobx'; 1import { computed, observable, action } from 'mobx';
2import localStorage from 'mobx-localstorage'; 2import localStorage from 'mobx-localstorage';
3import { matchRoute } from '../../helpers/routing-helpers'; 3import matchRoute from '../../helpers/routing-helpers';
4import workspaceActions from './actions'; 4import workspaceActions from './actions';
5import FeatureStore from '../utils/FeatureStore'; 5import FeatureStore from '../utils/FeatureStore';
6import { 6import {
diff --git a/src/stores/AppStore.ts b/src/stores/AppStore.ts
index b2adb0f02..0ecfdb7c0 100644
--- a/src/stores/AppStore.ts
+++ b/src/stores/AppStore.ts
@@ -14,9 +14,9 @@ import ms from 'ms';
14import { URL } from 'url'; 14import { URL } from 'url';
15import { readJsonSync } from 'fs-extra'; 15import { readJsonSync } from 'fs-extra';
16 16
17import { Stores } from 'src/@types/stores.types'; 17import { Stores } from '../@types/stores.types';
18import { ApiInterface } from 'src/api'; 18import { ApiInterface } from '../api';
19import { Actions } from 'src/actions/lib/actions'; 19import { Actions } from '../actions/lib/actions';
20import TypedStore from './lib/TypedStore'; 20import TypedStore from './lib/TypedStore';
21import Request from './lib/Request'; 21import Request from './lib/Request';
22import { CHECK_INTERVAL, DEFAULT_APP_SETTINGS } from '../config'; 22import { CHECK_INTERVAL, DEFAULT_APP_SETTINGS } from '../config';
diff --git a/src/stores/GlobalErrorStore.ts b/src/stores/GlobalErrorStore.ts
index fcc1276c8..8c6317c91 100644
--- a/src/stores/GlobalErrorStore.ts
+++ b/src/stores/GlobalErrorStore.ts
@@ -1,7 +1,7 @@
1import { observable, action } from 'mobx'; 1import { observable, action } from 'mobx';
2import { Actions } from 'src/actions/lib/actions'; 2import { Actions } from '../actions/lib/actions';
3import { ApiInterface } from 'src/api'; 3import { ApiInterface } from '../api';
4import { Stores } from 'src/@types/stores.types'; 4import { Stores } from '../@types/stores.types';
5import Request from './lib/Request'; 5import Request from './lib/Request';
6import TypedStore from './lib/TypedStore'; 6import TypedStore from './lib/TypedStore';
7 7
diff --git a/src/stores/RecipePreviewsStore.ts b/src/stores/RecipePreviewsStore.ts
index ad9fda4a7..b1d50c8b8 100644
--- a/src/stores/RecipePreviewsStore.ts
+++ b/src/stores/RecipePreviewsStore.ts
@@ -1,13 +1,13 @@
1import { action, computed, observable } from 'mobx'; 1import { action, computed, observable } from 'mobx';
2import { Actions } from 'src/actions/lib/actions'; 2import { Actions } from '../actions/lib/actions';
3import { ApiInterface } from 'src/api'; 3import { ApiInterface } from '../api';
4import Recipe from 'src/models/Recipe'; 4import Recipe from '../models/Recipe';
5import { Stores } from 'src/@types/stores.types'; 5import { Stores } from '../@types/stores.types';
6 6
7import RecipePreview from 'src/models/RecipePreview';
8import CachedRequest from './lib/CachedRequest'; 7import CachedRequest from './lib/CachedRequest';
9import Request from './lib/Request'; 8import Request from './lib/Request';
10import TypedStore from './lib/TypedStore'; 9import TypedStore from './lib/TypedStore';
10import RecipePreview from '../models/RecipePreview';
11 11
12export default class RecipePreviewsStore extends TypedStore { 12export default class RecipePreviewsStore extends TypedStore {
13 @observable allRecipePreviewsRequest = new CachedRequest( 13 @observable allRecipePreviewsRequest = new CachedRequest(
diff --git a/src/stores/RecipesStore.ts b/src/stores/RecipesStore.ts
index 6bd4ab382..364d56dd2 100644
--- a/src/stores/RecipesStore.ts
+++ b/src/stores/RecipesStore.ts
@@ -2,10 +2,10 @@ import { action, computed, observable } from 'mobx';
2import { readJSONSync } from 'fs-extra'; 2import { readJSONSync } from 'fs-extra';
3import semver from 'semver'; 3import semver from 'semver';
4 4
5import { Stores } from 'src/@types/stores.types'; 5import Recipe from '../models/Recipe';
6import { ApiInterface } from 'src/api'; 6import { Stores } from '../@types/stores.types';
7import { Actions } from 'src/actions/lib/actions'; 7import { ApiInterface } from '../api';
8import Recipe from 'src/models/Recipe'; 8import { Actions } from '../actions/lib/actions';
9import CachedRequest from './lib/CachedRequest'; 9import CachedRequest from './lib/CachedRequest';
10import Request from './lib/Request'; 10import Request from './lib/Request';
11import matchRoute from '../helpers/routing-helpers'; 11import matchRoute from '../helpers/routing-helpers';
diff --git a/src/stores/RequestStore.ts b/src/stores/RequestStore.ts
index af686388a..e5df1292d 100644
--- a/src/stores/RequestStore.ts
+++ b/src/stores/RequestStore.ts
@@ -2,9 +2,9 @@ import { ipcRenderer } from 'electron';
2import { action, computed, observable } from 'mobx'; 2import { action, computed, observable } from 'mobx';
3import ms from 'ms'; 3import ms from 'ms';
4 4
5import { Actions } from 'src/actions/lib/actions'; 5import { Actions } from '../actions/lib/actions';
6import { ApiInterface } from 'src/api'; 6import { ApiInterface } from '../api';
7import { Stores } from 'src/@types/stores.types'; 7import { Stores } from '../@types/stores.types';
8import CachedRequest from './lib/CachedRequest'; 8import CachedRequest from './lib/CachedRequest';
9import { LOCAL_PORT } from '../config'; 9import { LOCAL_PORT } from '../config';
10 10
diff --git a/src/stores/ServicesStore.ts b/src/stores/ServicesStore.ts
index e690b3791..4c1b4116c 100644
--- a/src/stores/ServicesStore.ts
+++ b/src/stores/ServicesStore.ts
@@ -5,9 +5,9 @@ import ms from 'ms';
5import { ensureFileSync, pathExistsSync, writeFileSync } from 'fs-extra'; 5import { ensureFileSync, pathExistsSync, writeFileSync } from 'fs-extra';
6import { join } from 'path'; 6import { join } from 'path';
7 7
8import { Stores } from 'src/@types/stores.types'; 8import { Stores } from '../@types/stores.types';
9import { ApiInterface } from 'src/api'; 9import { ApiInterface } from '../api';
10import { Actions } from 'src/actions/lib/actions'; 10import { Actions } from '../actions/lib/actions';
11import Request from './lib/Request'; 11import Request from './lib/Request';
12import CachedRequest from './lib/CachedRequest'; 12import CachedRequest from './lib/CachedRequest';
13import matchRoute from '../helpers/routing-helpers'; 13import matchRoute from '../helpers/routing-helpers';
diff --git a/src/stores/SettingsStore.ts b/src/stores/SettingsStore.ts
index dabd7b099..0296ba0e7 100644
--- a/src/stores/SettingsStore.ts
+++ b/src/stores/SettingsStore.ts
@@ -2,9 +2,9 @@ import { ipcRenderer } from 'electron';
2import { getCurrentWindow } from '@electron/remote'; 2import { getCurrentWindow } from '@electron/remote';
3import { action, computed, observable, reaction } from 'mobx'; 3import { action, computed, observable, reaction } from 'mobx';
4import localStorage from 'mobx-localstorage'; 4import localStorage from 'mobx-localstorage';
5import { Stores } from 'src/@types/stores.types'; 5import { Stores } from '../@types/stores.types';
6import { ApiInterface } from 'src/api'; 6import { ApiInterface } from '../api';
7import { Actions } from 'src/actions/lib/actions'; 7import { Actions } from '../actions/lib/actions';
8import { 8import {
9 DEFAULT_APP_SETTINGS, 9 DEFAULT_APP_SETTINGS,
10 FILE_SYSTEM_SETTINGS_TYPES, 10 FILE_SYSTEM_SETTINGS_TYPES,
diff --git a/src/stores/UIStore.ts b/src/stores/UIStore.ts
index e9e099ebc..c43c6d8c7 100644
--- a/src/stores/UIStore.ts
+++ b/src/stores/UIStore.ts
@@ -1,9 +1,9 @@
1import { action, observable, computed, reaction } from 'mobx'; 1import { action, observable, computed, reaction } from 'mobx';
2import { nativeTheme } from '@electron/remote'; 2import { nativeTheme } from '@electron/remote';
3 3
4import { Stores } from 'src/@types/stores.types'; 4import { Stores } from '../@types/stores.types';
5import { ApiInterface } from 'src/api'; 5import { ApiInterface } from '../api';
6import { Actions } from 'src/actions/lib/actions'; 6import { Actions } from '../actions/lib/actions';
7import { Theme, theme, ThemeType } from '../themes'; 7import { Theme, theme, ThemeType } from '../themes';
8import TypedStore from './lib/TypedStore'; 8import TypedStore from './lib/TypedStore';
9 9
diff --git a/src/stores/UserStore.ts b/src/stores/UserStore.ts
index 0827f8196..b9c3c7576 100644
--- a/src/stores/UserStore.ts
+++ b/src/stores/UserStore.ts
@@ -4,9 +4,9 @@ import jwt from 'jsonwebtoken';
4import localStorage from 'mobx-localstorage'; 4import localStorage from 'mobx-localstorage';
5import { ipcRenderer } from 'electron'; 5import { ipcRenderer } from 'electron';
6 6
7import { ApiInterface } from 'src/api'; 7import { ApiInterface } from '../api';
8import { Actions } from 'src/actions/lib/actions'; 8import { Actions } from '../actions/lib/actions';
9import { Stores } from 'src/@types/stores.types'; 9import { Stores } from '../@types/stores.types';
10import { TODOS_PARTITION_ID } from '../config'; 10import { TODOS_PARTITION_ID } from '../config';
11import { isDevMode } from '../environment-remote'; 11import { isDevMode } from '../environment-remote';
12import Request from './lib/Request'; 12import Request from './lib/Request';
diff --git a/src/stores/index.ts b/src/stores/index.ts
index aac501cda..d31f2c933 100644
--- a/src/stores/index.ts
+++ b/src/stores/index.ts
@@ -1,6 +1,6 @@
1import { RouterStore } from 'mobx-react-router'; 1import { RouterStore } from 'mobx-react-router';
2import { ApiInterface } from 'src/api'; 2import { ApiInterface } from '../api';
3import { Actions } from 'src/actions/lib/actions'; 3import { Actions } from '../actions/lib/actions';
4import AppStore from './AppStore'; 4import AppStore from './AppStore';
5import UserStore from './UserStore'; 5import UserStore from './UserStore';
6import FeaturesStore from './FeaturesStore'; 6import FeaturesStore from './FeaturesStore';
diff --git a/src/stores/lib/TypedStore.ts b/src/stores/lib/TypedStore.ts
index c78f83850..c97ae1aa5 100644
--- a/src/stores/lib/TypedStore.ts
+++ b/src/stores/lib/TypedStore.ts
@@ -1,7 +1,7 @@
1import { computed, IReactionPublic, observable } from 'mobx'; 1import { computed, IReactionPublic, observable } from 'mobx';
2import { Actions } from 'src/actions/lib/actions'; 2import { Actions } from '../../actions/lib/actions';
3import { ApiInterface } from 'src/api'; 3import { ApiInterface } from '../../api';
4import { Stores } from 'src/@types/stores.types'; 4import { Stores } from '../../@types/stores.types';
5import Reaction from './Reaction'; 5import Reaction from './Reaction';
6 6
7export default abstract class TypedStore { 7export default abstract class TypedStore {