-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
121 lines (95 loc) · 3.63 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
import marimo
__generated_with = "0.11.6"
app = marimo.App(width="full")
@app.cell
def _():
import marimo as mo
from reactome_anywidget import ReactomeWidget
import anywidget
import traitlets
return ReactomeWidget, anywidget, mo, traitlets
@app.cell
def _(ReactomeWidget, mo):
mo.ui.anywidget(ReactomeWidget()).center()
return
@app.cell
def _():
js = """
async function loadReactomeScript() {
if (!window.Reactome) {
return new Promise((resolve, reject) => {
const script = document.createElement('script');
script.src = "https://reactome.org/DiagramJs/diagram/diagram.nocache.js";
script.onload = () => resolve();
script.onerror = () => reject(new Error("Failed to load Reactome DiagramJS library"));
document.head.appendChild(script);
});
}
}
async function render({ model, el }) {
await loadReactomeScript();
// Save the original document.getElementById
const originalGetElementById = document.getElementById.bind(document);
// Override document.getElementById to also search within our widget's element
document.getElementById = function(id) {
return originalGetElementById(id) || el.querySelector('#' + id);
};
// Generate a unique container id
const uniqueId = model.model_id || Math.random().toString(36).substring(2);
const containerId = "reactomeDiagramHolder-" + uniqueId;
// Create and append the container to our widget element (shadow DOM)
let container = document.createElement("div");
container.id = containerId;
// Optionally add some styling:
container.style.border = "1px solid #ddd";
container.style.padding = "10px";
container.style.backgroundColor = "#f9f9f9";
el.appendChild(container);
// Retrieve parameters from the model
const diagramId = model.get("diagramId") || "R-HSA-109582";
const width = model.get("width") || 950;
const height = model.get("height") || 500;
// Create the Reactome Diagram widget
let diagram = Reactome.Diagram.create({
"placeHolder": containerId,
"width": width,
"height": height
});
diagram.onDiagramLoaded(function(loadedId) {
console.info("Diagram loaded:", loadedId);
if (loadedId === diagramId) {
diagram.selectItem(diagramId);
}
});
diagram.loadDiagram(diagramId);
model.reactomeDiagram = diagram;
// (Optional) Restore document.getElementById if you don't need the override later.
// If DiagramJS calls getElementById later during interactions, you might want to leave it overridden.
// document.getElementById = originalGetElementById;
}
export default { render };
"""
return (js,)
@app.cell
def _(anywidget, js, traitlets):
class ReactomeWidget2(anywidget.AnyWidget):
__use_shadow_dom__ = False
_esm = js
_css = """
.reactome-widget {
background-color: ;
}
"""
diagramId = traitlets.Unicode("R-HSA-109582").tag(sync=True)
width = traitlets.Int(950).tag(sync=True)
height = traitlets.Int(500).tag(sync=True)
return (ReactomeWidget2,)
@app.cell
def _(ReactomeWidget2, mo):
mo.ui.anywidget(ReactomeWidget2(diagramId="R-HSA-5693568")).center()
return
@app.cell
def _():
return
if __name__ == "__main__":
app.run()