Skip to content

Commit 6376ffb

Browse files
committed
Attempt to update to html-manager 1.0.7
1 parent 81ae13e commit 6376ffb

File tree

7 files changed

+201
-613
lines changed

7 files changed

+201
-613
lines changed

js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"test:default": "echo \"No test specified\""
1616
},
1717
"dependencies": {
18-
"@jupyter-widgets/html-manager": "^0.20.1",
18+
"@jupyter-widgets/html-manager": "1.0.7",
1919
"@types/rstudio-shiny": "https://github.com/rstudio/shiny#main",
2020
"base64-arraybuffer": "^1.0.2",
2121
"font-awesome": "^4.7.0"

js/src/_input.ts

-165
This file was deleted.

js/src/output.ts

+3-23
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,6 @@ import { jsonParse } from './utils';
44
import type { ErrorsMessageValue } from 'rstudio-shiny/srcts/types/src/shiny/shinyapp';
55

66

7-
/******************************************************************************
8-
* Define a custom HTMLManager for use with Shiny
9-
******************************************************************************/
10-
11-
class OutputManager extends HTMLManager {
12-
// In a soon-to-be-released version of @jupyter-widgets/html-manager,
13-
// display_view()'s first "dummy" argument will be removed... this shim simply
14-
// makes it so that our manager can work with either version
15-
// https://github.com/jupyter-widgets/ipywidgets/commit/159bbe4#diff-45c126b24c3c43d2cee5313364805c025e911c4721d45ff8a68356a215bfb6c8R42-R43
16-
async display_view(view: any, options: { el: HTMLElement; }): Promise<any> {
17-
const n_args = super.display_view.length
18-
if (n_args === 3) {
19-
return super.display_view({}, view, options)
20-
} else {
21-
// @ts-ignore
22-
return super.display_view(view, options)
23-
}
24-
}
25-
}
26-
277
// Define our own custom module loader for Shiny
288
const shinyRequireLoader = async function(moduleName: string, moduleVersion: string): Promise<any> {
299

@@ -59,7 +39,7 @@ const shinyRequireLoader = async function(moduleName: string, moduleVersion: str
5939
});
6040
}
6141

62-
const manager = new OutputManager({ loader: shinyRequireLoader });
42+
const manager = new HTMLManager({ loader: shinyRequireLoader });
6343

6444

6545
/******************************************************************************
@@ -93,9 +73,9 @@ class IPyWidgetOutput extends Shiny.OutputBinding {
9373
}
9474

9575
model.then((m) => {
96-
const view = manager.create_view(m, {});
76+
const view = manager.create_view(m, { el });
9777
view.then(v => {
98-
manager.display_view(v, {el: el}).then(() => {
78+
manager.display_view(v, el).then(() => {
9979
// TODO: It would be better to .close() the widget here, but
10080
// I'm not sure how to do that yet (at least client-side)
10181
while (el.childNodes.length > 1) {

0 commit comments

Comments
 (0)