@foal/cli
Version:
CLI tool for FoalTS
48 lines (47 loc) • 1.82 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConnectReactCommandService = void 0;
const path_1 = require("path");
const safe_1 = require("colors/safe");
/**
* Service for connecting a React frontend to a FoalTS application.
*/
class ConnectReactCommandService {
generator;
constructor(generator) {
this.generator = generator;
}
/**
* Configure a React project to interact with a FoalTS application.
*
* @param {string} path - The path to the React project directory
* @returns {void}
*/
run(path) {
if (!this.generator.exists(path)) {
if (process.env.P1Z7kEbSUUPMxF8GqPwD8Gx_FOAL_CLI_TEST !== 'true') {
console.log((0, safe_1.red)(` The directory ${path} does not exist.`));
}
return;
}
if (!this.generator.exists((0, path_1.join)(path, 'package.json'))) {
if (process.env.P1Z7kEbSUUPMxF8GqPwD8Gx_FOAL_CLI_TEST !== 'true') {
console.log((0, safe_1.red)(` The directory ${path} is not a React project (missing package.json).`));
}
return;
}
const outputPath = (0, path_1.join)((0, path_1.relative)(path, process.cwd()), 'public')
// Make projects generated on Windows build on Unix.
.replace(/\\/g, '/');
this.generator
.cd(path)
.modify('package.json', content => {
const pkg = JSON.parse(content);
pkg.proxy = 'http://localhost:3001';
return JSON.stringify(pkg, null, 2);
})
.copyTemplate('react/env.development', '.env.development')
.render('react/env', '.env', { path: outputPath });
}
}
exports.ConnectReactCommandService = ConnectReactCommandService;