Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
joplin / usr / lib / joplin / resources / app / commands / focusElement.js
Size: Mime:
"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");
exports.declaration = {
    name: 'focusElement',
};
const runtime = () => {
    return {
        // eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
        execute: (_context, target, options) => __awaiter(void 0, void 0, void 0, function* () {
            if (target === 'noteBody')
                return CommandService_1.default.instance().execute('focusElementNoteBody', options);
            if (target === 'noteList')
                return CommandService_1.default.instance().execute('focusElementNoteList');
            if (target === 'sideBar')
                return CommandService_1.default.instance().execute('focusElementSideBar');
            if (target === 'noteTitle')
                return CommandService_1.default.instance().execute('focusElementNoteTitle', options);
            throw new Error(`Invalid focus target: ${target}`);
        }),
    };
};
exports.runtime = runtime;
//# sourceMappingURL=focusElement.js.map