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 CommandService_1 = require("@joplin/lib/services/CommandService");
const locale_1 = require("@joplin/lib/locale");
const reducer_1 = require("@joplin/lib/reducer");
exports.declaration = {
name: 'toggleExternalEditing',
label: () => (0, locale_1._)('Toggle external editing'),
iconName: 'icon-share',
};
const runtime = () => {
return {
execute: (context, noteId = null) => __awaiter(void 0, void 0, void 0, function* () {
noteId = noteId || reducer_1.stateUtils.selectedNoteId(context.state);
if (!noteId)
return;
if (context.state.watchedNoteFiles.includes(noteId)) {
void CommandService_1.default.instance().execute('stopExternalEditing', noteId);
}
else {
void CommandService_1.default.instance().execute('startExternalEditing', noteId);
}
}),
enabledCondition: 'oneNoteSelected && !noteIsReadOnly && (!modalDialogVisible || gotoAnythingVisible)',
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
mapStateToTitle: (state) => {
const noteId = reducer_1.stateUtils.selectedNoteId(state);
return state.watchedNoteFiles.includes(noteId) ? (0, locale_1._)('Stop') : '';
},
};
};
exports.runtime = runtime;
//# sourceMappingURL=toggleExternalEditing.js.map