-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2577 from plotly/master-2.11.0
Master 2.11.0
- Loading branch information
Showing
198 changed files
with
2,851 additions
and
2,156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 12 additions & 12 deletions
24
@plotly/dash-generator-test-component-typescript/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"singleQuote": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { JupyterFrontEndPlugin } from '@jupyterlab/application'; | ||
import '../style/index.css'; | ||
/** | ||
* Initialization data for the jupyterlab-dash extension. | ||
*/ | ||
declare const extension: JupyterFrontEndPlugin<void>; | ||
export default extension; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const application_1 = require("@jupyterlab/application"); | ||
const coreutils_1 = require("@jupyterlab/coreutils"); | ||
const notebook_1 = require("@jupyterlab/notebook"); | ||
const console_1 = require("@jupyterlab/console"); | ||
const widgets_1 = require("@lumino/widgets"); | ||
require("../style/index.css"); | ||
class DashIFrameWidget extends widgets_1.Widget { | ||
/** | ||
* Construct a new DashIFrameWidget. | ||
*/ | ||
constructor(port, url) { | ||
super(); | ||
this.id = port; | ||
this.title.label = `Dash (port: ${port})`; | ||
this.title.closable = true; | ||
this.addClass('jp-dashWidget'); | ||
// Add jp-IFrame class to keep drag events from being lost to the iframe | ||
// See https://github.com/phosphorjs/phosphor/issues/305 | ||
// See https://github.com/jupyterlab/jupyterlab/blob/master/packages/apputils/style/iframe.css#L17-L35 | ||
this.addClass('jp-IFrame'); | ||
const serviceUrl = url; | ||
const iframeElement = document.createElement('iframe'); | ||
iframeElement.setAttribute('baseURI', serviceUrl); | ||
this.iframe = iframeElement; | ||
this.iframe.src = serviceUrl; | ||
this.iframe.id = 'iframe-' + this.id; | ||
this.node.appendChild(this.iframe); | ||
} | ||
/** | ||
* Handle update requests for the widget. | ||
*/ | ||
onUpdateRequest(msg) { | ||
this.iframe.src += ''; | ||
} | ||
} | ||
function activate(app, restorer, notebooks, consoles) { | ||
// Declare a widget variable | ||
let widgets = new Map(); | ||
// Watch notebook creation | ||
notebooks.widgetAdded.connect((sender, nbPanel) => { | ||
// const session = nbPanel.session; | ||
const sessionContext = nbPanel.sessionContext; | ||
sessionContext.ready.then(() => { | ||
const session = sessionContext.session; | ||
let kernel = session.kernel; | ||
registerCommTarget(kernel, widgets, app); | ||
}); | ||
}); | ||
// Watch console creation | ||
consoles.widgetAdded.connect((sender, consolePanel) => { | ||
const sessionContext = consolePanel.sessionContext; | ||
sessionContext.ready.then(() => { | ||
const session = sessionContext.session; | ||
let kernel = session.kernel; | ||
registerCommTarget(kernel, widgets, app); | ||
}); | ||
}); | ||
} | ||
function registerCommTarget(kernel, widgets, app) { | ||
kernel.registerCommTarget('dash', (comm, msg) => { | ||
comm.onMsg = (msg) => { | ||
let msgData = msg.content.data; | ||
if (msgData.type === 'show') { | ||
let widget; | ||
if (!widgets.has(msgData.port)) { | ||
// Create a new widget | ||
widget = new DashIFrameWidget(msgData.port, msgData.url); | ||
widget.update(); | ||
widgets.set(msgData.port, widget); | ||
// Add instance tracker stuff | ||
} | ||
else { | ||
widget = widgets.get(msgData.port); | ||
} | ||
if (!widget.isAttached) { | ||
// Attach the widget to the main work area | ||
// if it's not there | ||
app.shell.add(widget, 'main'); | ||
widget.update(); | ||
} | ||
else { | ||
// Refresh the widget | ||
widget.update(); | ||
} | ||
// Activate the widget | ||
app.shell.activateById(widget.id); | ||
} | ||
else if (msgData.type === 'base_url_request') { | ||
// Build server url and base subpath. | ||
const baseUrl = coreutils_1.PageConfig.getBaseUrl(); | ||
const baseSubpath = coreutils_1.PageConfig.getOption('baseUrl'); | ||
const n = baseUrl.lastIndexOf(baseSubpath); | ||
const serverUrl = baseUrl.slice(0, n); | ||
comm.send({ | ||
type: 'base_url_response', | ||
server_url: serverUrl, | ||
base_subpath: baseSubpath, | ||
frontend: "jupyterlab", | ||
}); | ||
} | ||
}; | ||
}); | ||
} | ||
/** | ||
* Initialization data for the jupyterlab-dash extension. | ||
*/ | ||
const extension = { | ||
id: 'jupyterlab_dash', | ||
autoStart: true, | ||
requires: [application_1.ILayoutRestorer, notebook_1.INotebookTracker, console_1.IConsoleTracker], | ||
activate: activate | ||
}; | ||
exports.default = extension; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"name": "@plotly/dash-jupyterlab", | ||
"version": "0.4.3", | ||
"description": "A JupyterLab extension for rendering Plotly Dash apps", | ||
"keywords": [ | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
], | ||
"homepage": "https://github.com/plotly/dash", | ||
"bugs": { | ||
"url": "https://github.com/plotly/dash/issues" | ||
}, | ||
"license": "MIT", | ||
"author": "Plotly", | ||
"files": [ | ||
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", | ||
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}" | ||
], | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/plotly/dash.git" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"build:pack": "jlpm run prepare && jlpm pack --filename ../../dash/labextension/dist/dash-jupyterlab.tgz && jlpm run build:copy", | ||
"build:copy": "cp package.json ../../dash/labextension/dist/package.json", | ||
"clean": "rimraf lib", | ||
"prepare": "mkdir -p ../../dash/labextension/dist && jlpm run clean && jlpm run build", | ||
"prettier": "prettier --write '{!(package),src/**,!(lib)/**}{.js,.jsx,.ts,.tsx,.css,.json,.md}'", | ||
"watch": "tsc -w" | ||
}, | ||
"dependencies": { | ||
"@jupyterlab/application": "^2.0.0 || ^3.0.0", | ||
"@jupyterlab/notebook": "^2.0.0 || ^3.0.0", | ||
"@jupyterlab/console": "^2.0.0 || ^3.0.0" | ||
}, | ||
"devDependencies": { | ||
"prettier": "2.0.5", | ||
"rimraf": "3.0.2", | ||
"typescript": "3.9.3" | ||
}, | ||
"jupyterlab": { | ||
"extension": true | ||
} | ||
} |
Oops, something went wrong.