microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fix-ts-error1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/extension/commands/elementInspector.ts

91lines · modepreview

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.

import * as child_process from "child_process";
import * as nls from "vscode-nls";
import { ErrorHelper } from "../../common/error/errorHelper";
import { InternalErrorCode } from "../../common/error/internalErrorCode";
import { TipNotificationService } from "../services/tipsNotificationsService/tipsNotificationService";
import { HostPlatform } from "../../common/hostPlatform";
import { OutputChannelLogger } from "../log/OutputChannelLogger";
import { Command } from "./util/command";

nls.config({
    messageFormat: nls.MessageFormat.bundle,
    bundleFormat: nls.BundleFormat.standalone,
})();
const localize = nls.loadMessageBundle();

// #todo!> commands should not maintain state
let elementInspector: child_process.ChildProcess | undefined;

export class RunElementInspector extends Command {
    codeName = "runInspector";
    label = "Run Element Inspector";
    requiresTrust = false;
    requiresProject = false;

    error = ErrorHelper.getInternalError(
        InternalErrorCode.CommandFailed,
        "ReactNativeRunElementInspector",
        "React Native: Run Element Inspector",
    );

    async baseFn(): Promise<void> {
        const logger = OutputChannelLogger.getMainChannel();

        void TipNotificationService.getInstance().setKnownDateForFeatureById("elementInspector");

        if (elementInspector) {
            logger.info(
                localize(
                    "AnotherElementInspectorAlreadyRun",
                    "Another element inspector already run",
                ),
            );

            return;
        }
        // Remove the following env variables to prevent running electron app in node mode.
        // https://github.com/microsoft/vscode/issues/3011#issuecomment-184577502
        // eslint-disable-next-line @typescript-eslint/no-unused-vars
        const { ATOM_SHELL_INTERNAL_RUN_AS_NODE, ELECTRON_RUN_AS_NODE, ...env } = process.env;
        const command = HostPlatform.getNpmCliCommand("react-devtools");

        elementInspector = child_process.spawn(command, [], {
            env,
            shell: true,
        });

        if (!elementInspector.pid) {
            elementInspector = undefined;
            throw ErrorHelper.getInternalError(InternalErrorCode.ReactDevtoolsIsNotInstalled);
        }

        elementInspector.stdout.on("data", (data: string) => {
            logger.info(data);
        });
        elementInspector.stderr.on("data", (data: string) => {
            logger.error(data);
        });
        elementInspector.once("exit", () => {
            elementInspector = undefined;
        });
    }
}

export class StopElementInspector extends Command {
    codeName = "stopInspector";
    label = "Stop Element Inspector";
    requiresTrust = false;
    requiresProject = false;

    error = ErrorHelper.getInternalError(
        InternalErrorCode.CommandFailed,
        "React Native: Stop Element Inspector",
    );

    async baseFn(): Promise<void> {
        elementInspector?.kill();
    }
}