Yarn workspaces
Summary: 1) moved "sonar/desktop/src" to "sonar/desktop/app/src", so "app" is now a separate package containing the core Flipper app code 2) Configured yarn workspaces with the root in "sonar/desktop": app, static, pkg, doctor, headless-tests. Plugins are not included for now, I plan to do this later. Reviewed By: jknoxville Differential Revision: D20535782 fbshipit-source-id: 600b2301960f37c7d72166e0d04eba462bec9fc1
This commit is contained in:
committed by
Facebook GitHub Bot
parent
676d7bbd24
commit
863f89351e
177
desktop/app/src/reducers/index.tsx
Normal file
177
desktop/app/src/reducers/index.tsx
Normal file
@@ -0,0 +1,177 @@
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
* @format
|
||||
*/
|
||||
|
||||
import {combineReducers, Dispatch} from 'redux';
|
||||
import application, {
|
||||
State as ApplicationState,
|
||||
Action as ApplicationAction,
|
||||
} from './application';
|
||||
import connections, {
|
||||
State as DevicesState,
|
||||
Action as DevicesAction,
|
||||
} from './connections';
|
||||
import pluginStates, {
|
||||
State as PluginStatesState,
|
||||
Action as PluginStatesAction,
|
||||
} from './pluginStates';
|
||||
import pluginMessageQueue, {
|
||||
State as PluginMessageQueueState,
|
||||
Action as PluginMessageQueueAction,
|
||||
} from './pluginMessageQueue';
|
||||
import notifications, {
|
||||
State as NotificationsState,
|
||||
Action as NotificationsAction,
|
||||
} from './notifications';
|
||||
import plugins, {
|
||||
State as PluginsState,
|
||||
Action as PluginsAction,
|
||||
} from './plugins';
|
||||
import supportForm, {
|
||||
State as SupportFormState,
|
||||
Action as SupportFormAction,
|
||||
} from './supportForm';
|
||||
import settings, {
|
||||
Settings as SettingsState,
|
||||
Action as SettingsAction,
|
||||
} from './settings';
|
||||
import launcherSettings, {
|
||||
LauncherSettings as LauncherSettingsState,
|
||||
Action as LauncherSettingsAction,
|
||||
} from './launcherSettings';
|
||||
import pluginManager, {
|
||||
State as PluginManagerState,
|
||||
Action as PluginManagerAction,
|
||||
} from './pluginManager';
|
||||
import healthchecks, {
|
||||
Action as HealthcheckAction,
|
||||
State as HealthcheckState,
|
||||
} from './healthchecks';
|
||||
import usageTracking, {
|
||||
Action as TrackingAction,
|
||||
State as TrackingState,
|
||||
} from './usageTracking';
|
||||
import user, {State as UserState, Action as UserAction} from './user';
|
||||
import JsonFileStorage from '../utils/jsonFileReduxPersistStorage';
|
||||
import LauncherSettingsStorage from '../utils/launcherSettingsStorage';
|
||||
import {launcherConfigDir} from '../utils/launcher';
|
||||
import os from 'os';
|
||||
import {resolve} from 'path';
|
||||
import xdg from 'xdg-basedir';
|
||||
import {persistReducer} from 'redux-persist';
|
||||
import {PersistPartial} from 'redux-persist/es/persistReducer';
|
||||
|
||||
import {Store as ReduxStore, MiddlewareAPI as ReduxMiddlewareAPI} from 'redux';
|
||||
import storage from 'redux-persist/lib/storage';
|
||||
|
||||
export type Actions =
|
||||
| ApplicationAction
|
||||
| DevicesAction
|
||||
| PluginStatesAction
|
||||
| PluginMessageQueueAction
|
||||
| NotificationsAction
|
||||
| PluginsAction
|
||||
| UserAction
|
||||
| SettingsAction
|
||||
| LauncherSettingsAction
|
||||
| SupportFormAction
|
||||
| PluginManagerAction
|
||||
| HealthcheckAction
|
||||
| TrackingAction
|
||||
| {type: 'INIT'};
|
||||
|
||||
export type State = {
|
||||
application: ApplicationState;
|
||||
connections: DevicesState & PersistPartial;
|
||||
pluginStates: PluginStatesState;
|
||||
pluginMessageQueue: PluginMessageQueueState;
|
||||
notifications: NotificationsState & PersistPartial;
|
||||
plugins: PluginsState;
|
||||
user: UserState & PersistPartial;
|
||||
settingsState: SettingsState & PersistPartial;
|
||||
launcherSettingsState: LauncherSettingsState & PersistPartial;
|
||||
supportForm: SupportFormState;
|
||||
pluginManager: PluginManagerState;
|
||||
healthchecks: HealthcheckState & PersistPartial;
|
||||
usageTracking: TrackingState;
|
||||
};
|
||||
|
||||
export type Store = ReduxStore<State, Actions>;
|
||||
export type MiddlewareAPI = ReduxMiddlewareAPI<Dispatch<Actions>, State>;
|
||||
|
||||
const settingsStorage = new JsonFileStorage(
|
||||
resolve(
|
||||
...(xdg.config ? [xdg.config] : [os.homedir(), '.config']),
|
||||
'flipper',
|
||||
'settings.json',
|
||||
),
|
||||
);
|
||||
|
||||
const launcherSettingsStorage = new LauncherSettingsStorage(
|
||||
resolve(launcherConfigDir(), 'flipper-launcher.toml'),
|
||||
);
|
||||
|
||||
export default combineReducers<State, Actions>({
|
||||
application,
|
||||
connections: persistReducer<DevicesState, Actions>(
|
||||
{
|
||||
key: 'connections',
|
||||
storage,
|
||||
whitelist: [
|
||||
'userPreferredDevice',
|
||||
'userPreferredPlugin',
|
||||
'userPreferredApp',
|
||||
'userStarredPlugins',
|
||||
],
|
||||
},
|
||||
connections,
|
||||
),
|
||||
pluginStates,
|
||||
pluginMessageQueue: pluginMessageQueue as any,
|
||||
notifications: persistReducer(
|
||||
{
|
||||
key: 'notifications',
|
||||
storage,
|
||||
whitelist: ['blacklistedPlugins', 'blacklistedCategories'],
|
||||
},
|
||||
notifications,
|
||||
),
|
||||
plugins,
|
||||
supportForm,
|
||||
pluginManager,
|
||||
user: persistReducer(
|
||||
{
|
||||
key: 'user',
|
||||
storage,
|
||||
},
|
||||
user,
|
||||
),
|
||||
settingsState: persistReducer(
|
||||
{key: 'settings', storage: settingsStorage},
|
||||
settings,
|
||||
),
|
||||
launcherSettingsState: persistReducer(
|
||||
{
|
||||
key: 'launcherSettings',
|
||||
storage: launcherSettingsStorage,
|
||||
serialize: false,
|
||||
// @ts-ignore: property is erroneously missing in redux-persist type definitions
|
||||
deserialize: false,
|
||||
},
|
||||
launcherSettings,
|
||||
),
|
||||
healthchecks: persistReducer<HealthcheckState, Actions>(
|
||||
{
|
||||
key: 'healthchecks',
|
||||
storage,
|
||||
whitelist: ['acknowledgedProblems'],
|
||||
},
|
||||
healthchecks,
|
||||
),
|
||||
usageTracking,
|
||||
});
|
||||
Reference in New Issue
Block a user