regit-cli
Version:
git helper cli
65 lines (64 loc) • 3.09 kB
JavaScript
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
import { branchFeature, branchPreview } from '../../const.js';
import { assertCurrentBranchIsClean, branchExists, mergeBranch, pushBranch, startOrCheckoutBranch, warmupGitRepo, } from '../../services/gitHelpers.js';
import { logger } from '../../services/logger.js';
import { promptSelectMultipleFeatures } from '../../services/featureHelpers.js';
const addSingleFeature = (name, id) => __awaiter(void 0, void 0, void 0, function* () {
const previewBranchName = `${branchPreview}${name}`;
const previewExist = yield branchExists(previewBranchName);
if (!previewExist) {
throw new Error(`Preview ${name} does not exist`);
}
yield startOrCheckoutBranch(previewBranchName);
const featureBranchName = `${branchFeature}${id}`;
const featureExists = yield branchExists(featureBranchName);
if (!featureExists) {
throw new Error(`Feature ${id} does not exist`);
}
yield mergeBranch(featureBranchName);
yield pushBranch(previewBranchName);
logger.success(`Feature ${id} merged into ${previewBranchName}`);
});
const addMultipleFeatures = (name) => __awaiter(void 0, void 0, void 0, function* () {
const previewBranchName = `${branchPreview}${name}`;
const previewExist = yield branchExists(previewBranchName);
if (!previewExist) {
throw new Error(`Preview ${name} does not exist`);
}
yield startOrCheckoutBranch(previewBranchName);
const selectedFeatures = yield promptSelectMultipleFeatures(`Select features to add to preview ${previewBranchName}`);
for (const featureBranchName of selectedFeatures) {
const featureExists = yield branchExists(featureBranchName);
if (!featureExists) {
throw new Error(`Feature ${featureBranchName} does not exist`);
}
yield mergeBranch(featureBranchName);
yield pushBranch(previewBranchName);
logger.success(`Feature ${featureBranchName} merged into ${previewBranchName}`);
}
});
const action = (name, id) => __awaiter(void 0, void 0, void 0, function* () {
yield warmupGitRepo();
yield assertCurrentBranchIsClean();
if (id) {
addSingleFeature(name, id);
}
else {
addMultipleFeatures(name);
}
});
export default (program) => {
program
.command('add')
.argument('<name>', 'Preview Name')
.argument('[feature_id]', 'Feature ID')
.action(action);
};