UNPKG

tprompter

Version:
53 lines (52 loc) 2.6 kB
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; var __param = (this && this.__param) || function (paramIndex, decorator) { return function (target, key) { decorator(target, key, paramIndex); } }; 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 { Inject, Service } from 'typedi'; import { PathsToken } from '../di/tokens.js'; import { IO } from '../utils/IO.js'; import { join } from 'path'; let PersistentConfigRepository = class PersistentConfigRepository { constructor(io, paths) { this.io = io; this.paths = paths; this.folder = this.paths.config; } get configPath() { return join(this.folder, 'config.json'); } getRawConfig() { return __awaiter(this, void 0, void 0, function* () { return this.io.readFile(this.configPath); }); } saveRawConfig(data) { return __awaiter(this, void 0, void 0, function* () { yield this.io.mkdirRecursive(this.folder); yield this.io.writeFile(this.configPath, data); }); } }; PersistentConfigRepository = __decorate([ Service(), __param(1, Inject(PathsToken)), __metadata("design:paramtypes", [IO, Object]) ], PersistentConfigRepository); export { PersistentConfigRepository };