Summary: Use BasDevice definition from flipper-frontend-core in flipper-ui-core and remove the redundant definition from flipper-ui-core Reviewed By: lblasa Differential Revision: D37234785 fbshipit-source-id: 6e768090a197c1d2c49cb1cd573acea12fb65d24
33 lines
827 B
TypeScript
33 lines
827 B
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and 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 {State} from '../reducers/index';
|
|
import {DeviceExport} from 'flipper-frontend-core';
|
|
|
|
export const stateSanitizer = (state: State) => {
|
|
if (state.connections && state.connections.devices) {
|
|
const {devices} = state.connections;
|
|
const {selectedDevice} = state.connections;
|
|
return {
|
|
...state,
|
|
connections: {
|
|
...state.connections,
|
|
devices: devices.map<DeviceExport>((device) => {
|
|
return device.toJSON() as any;
|
|
}),
|
|
selectedDevice: selectedDevice
|
|
? (selectedDevice.toJSON() as any)
|
|
: null,
|
|
},
|
|
};
|
|
}
|
|
|
|
return state;
|
|
};
|