-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathMonolithicJs.kt
325 lines (298 loc) · 11 KB
/
MonolithicJs.kt
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
/*
* Copyright (c) 2019. JetBrains s.r.o.
* Use of this source code is governed by the MIT license that can be found in the LICENSE file.
*/
/* root package */
import kotlinx.browser.document
import messages.OverlayMessageHandler
import messages.SimpleMessageHandler
import org.jetbrains.letsPlot.commons.geometry.DoubleVector
import org.jetbrains.letsPlot.commons.logging.PortableLogging
import org.jetbrains.letsPlot.core.FeatureSwitch.PLOT_VIEW_TOOLBOX_HTML
import org.jetbrains.letsPlot.core.spec.FailureHandler
import org.jetbrains.letsPlot.core.spec.Option
import org.jetbrains.letsPlot.core.spec.config.PlotConfig
import org.jetbrains.letsPlot.core.util.MonolithicCommon
import org.jetbrains.letsPlot.core.util.MonolithicCommon.PlotsBuildResult.Error
import org.jetbrains.letsPlot.core.util.MonolithicCommon.PlotsBuildResult.Success
import org.jetbrains.letsPlot.core.util.sizing.SizingMode.*
import org.jetbrains.letsPlot.core.util.sizing.SizingPolicy
import org.jetbrains.letsPlot.platf.w3c.jsObject.dynamicObjectToMap
import org.w3c.dom.HTMLDivElement
import org.w3c.dom.HTMLElement
import tools.DefaultToolbarJs
import tools.DefaultToolbarJs.Companion.EXPECTED_TOOLBAR_HEIGHT
private val LOG = PortableLogging.logger("MonolithicJs")
// Key for the data attibute <body data-lets-plot-preferred-width='700'>
// Used in Datalore reports to control size of the plot.
// See generated HTML (PlotHtmlHelper.kt)
private const val DATALORE_PREFERRED_WIDTH = "letsPlotPreferredWidth"
/**
* Main entry point for creating plots from the JavaScript environment.
*
* Takes "raw" plot specifications (not processed by plot backend)
* and constructs the plot with the specified sizing configuration.
*
* The `sizingJs` parameter is a JavaScript object with the structure:
* {
* width_mode: String // "fixed", "min", "fit", or "scaled" (case-insensitive)
* height_mode: String // "fixed", "min", "fit", or "scaled" (case-insensitive)
* width: Number // optional
* height: Number // optional
* }
*
* Sizing modes:
*
* 1. FIXED mode:
* - Uses the explicitly provided width/height values
* - Falls back to the default figure size if no values provided
* - Not responsive to container size
*
* 2. MIN mode:
* Applies the smallest dimension among:
* - The default figure size
* - The specified width/height (if provided)
* - The container size (if available)
*
* 3. FIT mode:
* Uses either:
* - The specified width/height if provided
* - Otherwise uses container size if available
* - Falls back to default figure size if neither is available
*
* 4. SCALED mode:
* - Always preserves the figure's aspect ratio
* - Typical usage: one dimension (usually width) uses FIXED/MIN/FIT mode
* and SCALED height adjusts to maintain aspect ratio
* - Special case: when both width and height are SCALED:
* * Requires container size to be available
* * Fits figure within container while preserving aspect ratio
*
*/
@OptIn(ExperimentalJsExport::class)
@Suppress("unused")
@JsName("buildPlotFromRawSpecs")
@JsExport
fun buildPlotFromRawSpecs(
plotSpecJs: dynamic,
parentElement: HTMLElement,
sizingJs: dynamic,
optionsJs: dynamic = null
): FigureModelJs? {
return try {
val plotSpec = dynamicObjectToMap(plotSpecJs)
PlotConfig.assertFigSpecOrErrorMessage(plotSpec)
val processedSpec = MonolithicCommon.processRawSpecs(plotSpec)
@Suppress("DuplicatedCode")
val sizingOptions: Map<String, Any> = dynamicObjectToMap(sizingJs)
val options: Map<String, Any> = if (optionsJs != null) {
dynamicObjectToMap(optionsJs)
} else {
emptyMap()
}
buildPlotFromProcessedSpecsPrivate(
processedSpec,
parentElement,
sizingOptions,
options
)
} catch (e: RuntimeException) {
handleException(e, SimpleMessageHandler(parentElement))
null
}
}
/**
* Main entry point for creating plots from the JavaScript environment.
*
* Takes "processed" plot specifications (processed by plot backend)
* and constructs the plot with the specified sizing configuration.
*
* The `sizingJs` parameter is a JavaScript object with the structure:
* {
* width_mode: String // "fixed", "min", "fit", or "scaled" (case-insensitive)
* height_mode: String // "fixed", "min", "fit", or "scaled" (case-insensitive)
* width: Number // optional
* height: Number // optional
* }
*
* Sizing modes:
*
* 1. FIXED mode:
* - Uses the explicitly provided width/height values
* - Falls back to the default figure size if no values provided
* - Not responsive to container size
*
* 2. MIN mode:
* Applies the smallest dimension among:
* - The default figure size
* - The specified width/height (if provided)
* - The container size (if available)
*
* 3. FIT mode:
* Uses either:
* - The specified width/height if provided
* - Otherwise uses container size if available
* - Falls back to default figure size if neither is available
*
* 4. SCALED mode:
* - Always preserves the figure's aspect ratio
* - Typical usage: one dimension (usually width) uses FIXED/MIN/FIT mode
* and SCALED height adjusts to maintain aspect ratio
* - Special case: when both width and height are SCALED:
* * Requires container size to be available
* * Fits figure within container while preserving aspect ratio
*
*/
@OptIn(ExperimentalJsExport::class)
@Suppress("unused")
@JsName("buildPlotFromProcessedSpecs")
@JsExport
fun buildPlotFromProcessedSpecs(
plotSpecJs: dynamic,
parentElement: HTMLElement,
sizingJs: dynamic,
optionsJs: dynamic = null
): FigureModelJs? {
return try {
val plotSpec = dynamicObjectToMap(plotSpecJs)
// Though the "plotSpec" might contain already "processed" specs,
// we apply "frontend" transforms anyway, just to be sure that
// we are going to use a truly processed specs.
val processedSpec = MonolithicCommon.processRawSpecs(plotSpec, frontendOnly = true)
val sizingOptions: Map<String, Any> = dynamicObjectToMap(sizingJs)
val options: Map<String, Any> = if (optionsJs != null) {
dynamicObjectToMap(optionsJs)
} else {
emptyMap()
}
buildPlotFromProcessedSpecsPrivate(
processedSpec,
parentElement,
sizingOptions,
options
)
} catch (e: RuntimeException) {
handleException(e, SimpleMessageHandler(parentElement))
null
}
}
private fun buildPlotFromProcessedSpecsPrivate(
processedSpec: Map<String, Any>,
containerDiv: HTMLElement,
sizingOptions: Map<String, Any>,
options: Map<String, Any>
): FigureModelJs? {
val showToolbar = PLOT_VIEW_TOOLBOX_HTML || processedSpec.containsKey(Option.Meta.Kind.GG_TOOLBAR)
var (plotContainer: HTMLElement, toolbar: DefaultToolbarJs?) = if (showToolbar) {
// Wrapper for toolbar and chart
var outputDiv = document.createElement("div") as HTMLDivElement
outputDiv.style.display = "inline-block"
containerDiv.appendChild(outputDiv);
// Toolbar
var toolbar = DefaultToolbarJs();
outputDiv.appendChild(toolbar.getElement());
// Plot
var plotContainer = document.createElement("div") as HTMLElement;
plotContainer.style.position = "relative"
outputDiv.appendChild(plotContainer);
Pair(plotContainer, toolbar)
} else {
// We may want to use absolute child positioning later (see OverlayMessageHandler).
containerDiv.style.position = "relative"
Pair(containerDiv, null)
}
// Plot wrapper:
// - will get `width` and `height` style attributes according to the plot dimensions
// (computed later, see: FigureToHtml.eval())
// - will serve as an 'event target' for interactive tools
// - will persist through the figure rebuilds via `FigureModel.updateView()`
val wrapperDiv = document.createElement("div") as HTMLDivElement
plotContainer.appendChild(wrapperDiv)
// Sizing policy
val sizingPolicy = SizingPolicy.create(sizingOptions)
val useContainerHeight = sizingPolicy.run {
heightMode in listOf(FIT, MIN) ||
widthMode == SCALED && heightMode == SCALED
}
if (useContainerHeight && containerDiv.clientHeight <= 0) {
containerDiv.style.height = "100%"
}
// Computation messages handling
val isHeightLimited = useContainerHeight || sizingPolicy.heightMode == FIXED
val messageHandler = createMessageHandler(
plotContainer,
isOverlay = isHeightLimited
)
val containerSize: () -> DoubleVector = {
val height = if (showToolbar) {
maxOf(0.0, (containerDiv.clientHeight - EXPECTED_TOOLBAR_HEIGHT).toDouble())
} else {
containerDiv.clientHeight.toDouble()
}
DoubleVector(
containerDiv.clientWidth.toDouble(),
height
)
}
val figureModelJs = buildPlotFromProcessedSpecsIntern(
processedSpec,
wrapperDiv,
containerSize,
sizingPolicy,
messageHandler
)
if (toolbar != null && figureModelJs != null) {
toolbar.bind(figureModelJs);
}
return figureModelJs
}
/**
* Also used in FigureModelJs.updateView()
*/
internal fun buildPlotFromProcessedSpecsIntern(
plotSpec: Map<String, Any>,
wrapperElement: HTMLElement,
containerSize: () -> DoubleVector,
sizingPolicy: SizingPolicy,
messageHandler: MessageHandler
): FigureModelJs? {
val buildResult = MonolithicCommon.buildPlotsFromProcessedSpecs(
plotSpec,
containerSize.invoke(),
sizingPolicy
)
if (buildResult.isError) {
val errorMessage = (buildResult as Error).error
messageHandler.showError(errorMessage)
return null
}
val success = buildResult as Success
val computationMessages = success.buildInfo.computationMessages
messageHandler.showComputationMessages(computationMessages)
val result = FigureToHtml(success.buildInfo, wrapperElement).eval(isRoot = true)
return FigureModelJs(
plotSpec,
wrapperElement,
containerSize,
sizingPolicy,
messageHandler.toMute(),
result.toolEventDispatcher,
result.figureRegistration
)
}
private fun handleException(e: RuntimeException, messageHandler: MessageHandler) {
val failureInfo = FailureHandler.failureInfo(e)
messageHandler.showError(failureInfo.message)
if (failureInfo.isInternalError) {
LOG.error(e) { "Unexpected situation in 'MonolithicJs'" }
}
}
private fun createMessageHandler(plotContainer: HTMLElement, isOverlay: Boolean): MessageHandler {
return if (isOverlay) {
OverlayMessageHandler(plotContainer)
} else {
val messagesDiv = document.createElement("div") as HTMLDivElement
plotContainer.appendChild(messagesDiv)
SimpleMessageHandler(messagesDiv)
}
}