Repository URL to install this package:
|
Version:
3.1.7 ▾
|
"use strict";
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.runtime = exports.declaration = void 0;
const Setting_1 = require("@joplin/lib/models/Setting");
const profileConfig_1 = require("@joplin/lib/services/profileConfig");
const restart_1 = require("../services/restart");
exports.declaration = {
name: 'switchProfile',
};
const runtime = () => {
return {
execute: (context, profileId) => __awaiter(void 0, void 0, void 0, function* () {
const currentConfig = context.state.profileConfig;
if (currentConfig.currentProfileId === profileId)
return;
const newConfig = Object.assign(Object.assign({}, currentConfig), { currentProfileId: profileId });
yield (0, profileConfig_1.saveProfileConfig)(`${Setting_1.default.value('rootProfileDir')}/profiles.json`, newConfig);
yield (0, restart_1.default)();
}),
};
};
exports.runtime = runtime;
//# sourceMappingURL=switchProfile.js.map