Summary: Larger list of fixes. Adding another package to the flipper export is a bit nasty but it unblocks us for now and centralises `remote` access which seems like a win for FAAS. Reviewed By: mweststrate Differential Revision: D30785421 fbshipit-source-id: 931297e8566b5d8a213b69ae87d0cda7648b3ed4
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
/**
|
|
* 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 fs from 'fs';
|
|
import path from 'path';
|
|
import {BaseDevice, AndroidDevice, IOSDevice, getAppPath} from 'flipper';
|
|
import {AppMatchPattern} from '../types';
|
|
|
|
let patternsPath: string | undefined;
|
|
|
|
function getPatternsBasePath() {
|
|
return (patternsPath = patternsPath ?? path.join(getAppPath(), 'facebook'));
|
|
}
|
|
|
|
const extractAppNameFromSelectedApp = (selectedApp: string | null) => {
|
|
if (selectedApp == null) {
|
|
return null;
|
|
} else {
|
|
return selectedApp.split('#')[0];
|
|
}
|
|
};
|
|
|
|
export const getAppMatchPatterns = (
|
|
selectedApp: string | null,
|
|
device: BaseDevice,
|
|
) => {
|
|
return new Promise<Array<AppMatchPattern>>((resolve, reject) => {
|
|
const appName = extractAppNameFromSelectedApp(selectedApp);
|
|
if (appName === 'Facebook') {
|
|
let filename: string;
|
|
if (device instanceof AndroidDevice) {
|
|
filename = 'facebook-match-patterns-android.json';
|
|
} else if (device instanceof IOSDevice) {
|
|
filename = 'facebook-match-patterns-ios.json';
|
|
} else {
|
|
return;
|
|
}
|
|
const patternsFilePath = path.join(getPatternsBasePath(), filename);
|
|
fs.readFile(patternsFilePath, (err, data) => {
|
|
if (err) {
|
|
reject(err);
|
|
} else {
|
|
resolve(JSON.parse(data.toString()));
|
|
}
|
|
});
|
|
} else if (appName != null) {
|
|
console.log('No rule for app ' + appName);
|
|
resolve([]);
|
|
} else {
|
|
reject(new Error('selectedApp was null'));
|
|
}
|
|
});
|
|
};
|