Do not show Doctor warning on startup for already seen problems

Summary: Doctor sometimes can show false-positives and in such case there is no way to suppress showing warning message on each startup. To reduce annoyance I've added an option to save the problems already seen by user and show the Doctor warning only for new problems.

Reviewed By: mweststrate

Differential Revision: D19187095

fbshipit-source-id: 14c1fcc9674f47fbe0b5b0f2d5d1bceb47f7b45d
This commit is contained in:
Anton Nikolaev
2020-01-02 08:53:45 -08:00
committed by Facebook Github Bot
parent 74daa3fb1a
commit 2bee021966
11 changed files with 635 additions and 405 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "flipper-doctor",
"version": "0.2.4",
"version": "0.4.1",
"description": "Utility for checking for issues with a flipper installation",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -17,8 +17,9 @@ import {getEnvInfo} from './environmentInfo';
const results = await Promise.all(
Object.entries(healthchecks).map(async ([key, category]) => [
key,
category
? {
category.isSkipped
? category
: {
label: category.label,
results: await Promise.all(
category.healthchecks.map(async ({label, run}) => ({
@@ -26,8 +27,7 @@ import {getEnvInfo} from './environmentInfo';
result: await run(environmentInfo),
})),
),
}
: {},
},
]),
);

View File

@@ -12,19 +12,26 @@ import {promisify} from 'util';
import {EnvironmentInfo, getEnvInfo} from './environmentInfo';
export {getEnvInfo} from './environmentInfo';
type HealthcheckCategory = {
export type HealthcheckCategory = {
label: string;
isSkipped: false;
isRequired: boolean;
healthchecks: Healthcheck[];
};
type Healthchecks = {
common: HealthcheckCategory;
android: HealthcheckCategory;
ios?: HealthcheckCategory;
export type SkippedHealthcheckCategory = {
label: string;
isSkipped: true;
skipReason: string;
};
type Healthcheck = {
export type Healthchecks = {
common: HealthcheckCategory | SkippedHealthcheckCategory;
android: HealthcheckCategory | SkippedHealthcheckCategory;
ios: HealthcheckCategory | SkippedHealthcheckCategory;
};
export type Healthcheck = {
label: string;
isRequired?: boolean;
run: (
@@ -35,7 +42,7 @@ type Healthcheck = {
}>;
};
type CategoryResult = [
export type CategoryResult = [
string,
{
label: string;
@@ -52,6 +59,7 @@ export function getHealthchecks(): Healthchecks {
common: {
label: 'Common',
isRequired: true,
isSkipped: false,
healthchecks: [
{
label: 'OpenSSL Installed',
@@ -67,6 +75,7 @@ export function getHealthchecks(): Healthchecks {
android: {
label: 'Android',
isRequired: false,
isSkipped: false,
healthchecks: [
{
label: 'SDK Installed',
@@ -77,11 +86,12 @@ export function getHealthchecks(): Healthchecks {
},
],
},
...(process.platform === 'darwin'
? {
ios: {
label: 'iOS',
ios: {
label: 'iOS',
...(process.platform === 'darwin'
? {
isRequired: false,
isSkipped: false,
healthchecks: [
{
label: 'SDK Installed',
@@ -118,44 +128,49 @@ export function getHealthchecks(): Healthchecks {
},
},
],
},
}
: {}),
}
: {
isSkipped: true,
skipReason: `Healthcheck is skipped, because iOS development is not supported on the current platform "${process.platform}"`,
}),
},
};
}
export async function runHealthchecks(): Promise<Array<CategoryResult>> {
export async function runHealthchecks(): Promise<
Array<CategoryResult | SkippedHealthcheckCategory>
> {
const environmentInfo = await getEnvInfo();
const healthchecks: Healthchecks = getHealthchecks();
const results: Array<CategoryResult> = (
await Promise.all(
Object.entries(healthchecks).map(async ([key, category]) => {
if (!category) {
return null;
}
const categoryResult: CategoryResult = [
key,
{
label: category.label,
results: await Promise.all(
category.healthchecks.map(async ({label, run, isRequired}) => ({
label,
isRequired: isRequired ?? true,
result: await run(environmentInfo).catch(e => {
console.error(e);
// TODO Improve result type to be: OK | Problem(message, fix...)
return {
hasProblem: true,
};
}),
})),
),
},
];
return categoryResult;
}),
)
).filter(notNull);
const results: Array<
CategoryResult | SkippedHealthcheckCategory
> = await Promise.all(
Object.entries(healthchecks).map(async ([key, category]) => {
if (category.isSkipped) {
return category;
}
const categoryResult: CategoryResult = [
key,
{
label: category.label,
results: await Promise.all(
category.healthchecks.map(async ({label, run, isRequired}) => ({
label,
isRequired: isRequired ?? true,
result: await run(environmentInfo).catch(e => {
console.error(e);
// TODO Improve result type to be: OK | Problem(message, fix...)
return {
hasProblem: true,
};
}),
})),
),
},
];
return categoryResult;
}),
);
return results;
}
@@ -164,7 +179,3 @@ async function commandSucceeds(command: string): Promise<boolean> {
.then(() => true)
.catch(() => false);
}
export function notNull<T>(x: T | null | undefined): x is T {
return x !== null && x !== undefined;
}