ai-commit-report-generator-cli
Version:
An AI-powered CLI tool that generates weekly reports from your Git activity
45 lines (44 loc) • 1.87 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());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.JsonStoreFactory = void 0;
const json_local_cache_1 = require("./json-local-cache");
class JsonStoreFactory {
constructor() {
this.instances = {};
}
static getInstance() {
if (!this.instance) {
this.instance = new JsonStoreFactory();
}
return this.instance;
}
createOrGetStore(uniqueName) {
return __awaiter(this, void 0, void 0, function* () {
if (this.instances[uniqueName]) {
console.error(`Store already exists for this path ${uniqueName}`);
return this.instances[uniqueName];
}
const cacheStore = new json_local_cache_1.JsonStore({
path: `./${uniqueName}-cache.json`
});
yield cacheStore.initCache();
this.instances[uniqueName] = cacheStore;
return this.instances[uniqueName];
});
}
getStore(repoPath) {
return __awaiter(this, void 0, void 0, function* () {
return this.instances[repoPath];
});
}
}
exports.JsonStoreFactory = JsonStoreFactory;