@@ -4,26 +4,6 @@ import { jsonParse } from './utils';
4
4
import type { ErrorsMessageValue } from 'rstudio-shiny/srcts/types/src/shiny/shinyapp' ;
5
5
6
6
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
-
27
7
// Define our own custom module loader for Shiny
28
8
const shinyRequireLoader = async function ( moduleName : string , moduleVersion : string ) : Promise < any > {
29
9
@@ -59,7 +39,7 @@ const shinyRequireLoader = async function(moduleName: string, moduleVersion: str
59
39
} ) ;
60
40
}
61
41
62
- const manager = new OutputManager ( { loader : shinyRequireLoader } ) ;
42
+ const manager = new HTMLManager ( { loader : shinyRequireLoader } ) ;
63
43
64
44
65
45
/******************************************************************************
@@ -93,9 +73,9 @@ class IPyWidgetOutput extends Shiny.OutputBinding {
93
73
}
94
74
95
75
model . then ( ( m ) => {
96
- const view = manager . create_view ( m , { } ) ;
76
+ const view = manager . create_view ( m , { el } ) ;
97
77
view . then ( v => {
98
- manager . display_view ( v , { el : el } ) . then ( ( ) => {
78
+ manager . display_view ( v , el ) . then ( ( ) => {
99
79
// TODO: It would be better to .close() the widget here, but
100
80
// I'm not sure how to do that yet (at least client-side)
101
81
while ( el . childNodes . length > 1 ) {
0 commit comments