Summary: Adding telemetry for import and export feature Reviewed By: jknoxville Differential Revision: D14267533 fbshipit-source-id: 1a5e041d0dc8c59c325e7d80dc83f6135f479161
108 lines
2.9 KiB
JavaScript
108 lines
2.9 KiB
JavaScript
/**
|
|
* Copyright 2018-present Facebook.
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
* @format
|
|
*/
|
|
|
|
import {remote, ipcRenderer} from 'electron';
|
|
import type {Store} from '../reducers/index.js';
|
|
import type {Logger} from '../fb-interfaces/Logger.js';
|
|
import {toggleAction} from '../reducers/application';
|
|
import {parseFlipperPorts} from '../utils/environmentVariables';
|
|
import {
|
|
importDataToStore,
|
|
importFileToStore,
|
|
IMPORT_FLIPPER_TRACE_EVENT,
|
|
} from '../utils/exportData';
|
|
import {tryCatchReportPlatformFailures} from '../utils/metrics';
|
|
|
|
import {selectPlugin} from '../reducers/connections';
|
|
import qs from 'query-string';
|
|
|
|
export const uriComponents = (url: string) => {
|
|
if (!url) {
|
|
return [];
|
|
}
|
|
const match: ?Array<string> = url.match(
|
|
/^flipper:\/\/([^\/]*)\/([^\/]*)\/?(.*)$/,
|
|
);
|
|
if (match) {
|
|
return (match
|
|
.map(decodeURIComponent)
|
|
.slice(1)
|
|
.filter(Boolean): Array<string>);
|
|
}
|
|
return [];
|
|
};
|
|
|
|
export default (store: Store, logger: Logger) => {
|
|
const currentWindow = remote.getCurrentWindow();
|
|
currentWindow.on('focus', () => {
|
|
store.dispatch({
|
|
type: 'windowIsFocused',
|
|
payload: true,
|
|
});
|
|
});
|
|
currentWindow.on('blur', () => {
|
|
store.dispatch({
|
|
type: 'windowIsFocused',
|
|
payload: false,
|
|
});
|
|
});
|
|
|
|
ipcRenderer.on('flipper-protocol-handler', (event, url) => {
|
|
if (url.startsWith('flipper://import')) {
|
|
const {search} = new URL(url);
|
|
const download = qs.parse(search)?.url;
|
|
store.dispatch(toggleAction('downloadingImportData', true));
|
|
return (
|
|
download &&
|
|
fetch(String(download))
|
|
.then(res => res.text())
|
|
.then(data => importDataToStore(data, store))
|
|
.then(() => {
|
|
store.dispatch(toggleAction('downloadingImportData', false));
|
|
})
|
|
.catch((e: Error) => {
|
|
console.error(e);
|
|
store.dispatch(toggleAction('downloadingImportData', false));
|
|
})
|
|
);
|
|
}
|
|
const match = uriComponents(url);
|
|
if (match.length > 1) {
|
|
// flipper://<client>/<pluginId>/<payload>
|
|
return store.dispatch(
|
|
selectPlugin({
|
|
selectedApp: match[0],
|
|
selectedPlugin: match[1],
|
|
deepLinkPayload: match[2],
|
|
}),
|
|
);
|
|
}
|
|
});
|
|
|
|
ipcRenderer.on('open-flipper-file', (event, url) => {
|
|
tryCatchReportPlatformFailures(() => {
|
|
return importFileToStore(url, store);
|
|
}, `${IMPORT_FLIPPER_TRACE_EVENT}:Deeplink`);
|
|
});
|
|
|
|
if (process.env.FLIPPER_PORTS) {
|
|
const portOverrides = parseFlipperPorts(process.env.FLIPPER_PORTS);
|
|
if (portOverrides) {
|
|
store.dispatch({
|
|
type: 'SET_SERVER_PORTS',
|
|
payload: portOverrides,
|
|
});
|
|
} else {
|
|
console.error(
|
|
`Ignoring malformed FLIPPER_PORTS env variable:
|
|
"${process.env.FLIPPER_PORTS || ''}".
|
|
Example expected format: "1111,2222".`,
|
|
);
|
|
}
|
|
}
|
|
};
|