UNPKG

@jupyterlab/services

Version:

Client APIs for the Jupyter services REST APIs

46 lines 1.69 kB
"use strict"; // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. Object.defineProperty(exports, "__esModule", { value: true }); exports.NbConvertManager = void 0; const coreutils_1 = require("@jupyterlab/coreutils"); const serverconnection_1 = require("../serverconnection"); /** * The url for the lab nbconvert service. */ const NBCONVERT_SETTINGS_URL = 'api/nbconvert'; /** * The nbconvert API service manager. */ class NbConvertManager { /** * Create a new nbconvert manager. */ constructor(options = {}) { var _a; this.serverSettings = (_a = options.serverSettings) !== null && _a !== void 0 ? _a : serverconnection_1.ServerConnection.makeSettings(); } /** * Get whether the application should be built. */ async getExportFormats() { const base = this.serverSettings.baseUrl; const url = coreutils_1.URLExt.join(base, NBCONVERT_SETTINGS_URL); const { serverSettings } = this; const response = await serverconnection_1.ServerConnection.makeRequest(url, {}, serverSettings); if (response.status !== 200) { const err = await serverconnection_1.ServerConnection.ResponseError.create(response); throw err; } const data = await response.json(); const exportList = {}; const keys = Object.keys(data); keys.forEach(function (key) { const mimeType = data[key].output_mimetype; exportList[key] = { output_mimetype: mimeType }; }); return exportList; } } exports.NbConvertManager = NbConvertManager; //# sourceMappingURL=index.js.map