dashboard
Generic container dashboard.
To configure a container dashboard: attach DashboardConf
metadata to MetadorContainer
nodes.
To show a container dashboard: create a Dashboard
instance.
NodeWidgetPair
module-attribute
¶
NodeWidgetPair = Tuple[MetadorNode, WidgetConf]
A container node paired up with a widget configuration.
NodeWidgetRow
module-attribute
¶
NodeWidgetRow = List[NodeWidgetPair]
Sorted list of NodeWidgetPairs.
Ordered first by descending priority, then by ascending node path.
DashboardPriority ¶
Bases: int
, Inclusive
Dashboard priority of a widget.
Source code in src/metador_core/widget/dashboard.py
27 28 |
|
DashboardGroup ¶
Bases: int
, Inclusive
Dashboard group of a widget.
Source code in src/metador_core/widget/dashboard.py
31 32 |
|
WidgetConf ¶
Bases: MetadataSchema
Configuration of a widget in the dashboard.
Source code in src/metador_core/widget/dashboard.py
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 |
|
priority
class-attribute
instance-attribute
¶
priority: Optional[DashboardPriority] = DashboardPriority(1)
Priority of the widget (1-10), higher priority nodes are shown first.
group
instance-attribute
¶
group: Optional[DashboardGroup]
Dashboard group of the widget.
Groups are presented in ascending order. Widgets are ordered by priority within a group. All widgets in a group are shown in a single row.
Widgets without an assigned group come last.
schema_name
instance-attribute
¶
schema_name: Optional[NonEmptyStr]
Name of schema of an metadata object at the current node that is to be visualized.
If not given, any suitable will be selected if possible.
schema_version
instance-attribute
¶
schema_version: Optional[SemVerTuple]
Version of schema to be used.
If not given, any suitable will be selected if possible.
widget_name
instance-attribute
¶
widget_name: Optional[str]
Name of widget to be used.
If not given, any suitable will be selected if possible.
widget_version
instance-attribute
¶
widget_version: Optional[SemVerTuple]
Version of widget to be used.
If not given, any suitable will be selected if possible.
DashboardConf ¶
Bases: MetadataSchema
Schema describing dashboard configuration for a node in a container.
Instantiating without passing a list of widget configurations will
return an instance that will show an arbitrary suitable widget, i.e.
is equivalent to DashboardConf.show()
Source code in src/metador_core/widget/dashboard.py
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 |
|
widgets
class-attribute
instance-attribute
¶
widgets: List[WidgetConf] = [WidgetConf()]
Widgets to present for this node in the dashboard.
If left empty, will try present any widget usable for this node.
widget
staticmethod
¶
widget(**kwargs) -> WidgetConf
Construct a dashboard widget configuration (see WidgetConf
).
Source code in src/metador_core/widget/dashboard.py
96 97 98 99 100 |
|
show
classmethod
¶
show(
_arg: List[WidgetConf] = None,
**kwargs: List[WidgetConf]
)
Construct a dashboard configuration for the widget(s) of one container node.
For one widget, pass the widget config (if any) as keyword arguments,
e.g. DashboardConf.show(group=1)
.
For multiple widgets, create widget configurations with widget(...)
,
and pass them to show
, e.g.:
DashboardConf.show([DashboardConf.widget(), DashboardConf.widget(group=2)])
.
Source code in src/metador_core/widget/dashboard.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
|
Dashboard ¶
The dashboard presents a view of all marked nodes in a container.
To be included in the dashboard, a node must be marked by a DashboardConf
object configuring at least one widget for that node.
Note that the Dashboard
needs
* either a widget server to be passed (embedding in a website),
* or the container is wrapped by metador_core.widget.jupyter.Previewable
(notebook mode)
Source code in src/metador_core/widget/dashboard.py
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 |
|
__init__ ¶
__init__(
container: MetadorContainer,
*,
server: WidgetServer = None,
container_id: Optional[str] = None
)
Return instance of a dashboard.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
container |
MetadorContainer
|
Actual Metador container that is open and readable |
required |
server |
WidgetServer
|
|
None
|
container_id |
Optional[str]
|
Container id usable with the server to get this container (default: container UUID) |
None
|
Source code in src/metador_core/widget/dashboard.py
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 |
|
show ¶
show() -> Viewable
Instantiate widgets for container and return resulting dashboard.
Source code in src/metador_core/widget/dashboard.py
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 |
|
sorted_widgets ¶
sorted_widgets(
widgets: Iterable[NodeWidgetPair],
) -> Tuple[Dict[int, NodeWidgetRow], NodeWidgetRow]
Return widgets in groups, ordered by priority and node path.
Returns tuple with dict of groups and a remainder of ungrouped widgets.
Source code in src/metador_core/widget/dashboard.py
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 |
|
get_grp_label ¶
get_grp_label(idx)
Create and return a styled group label.
Source code in src/metador_core/widget/dashboard.py
263 264 265 266 267 268 269 270 271 272 |
|
add_widgets ¶
add_widgets(
w_grp,
ui_grp,
*,
server=None,
container_id: Optional[str] = None
)
Instantiate and add widget to the flexibly wrapping row that handles the entire group.
Source code in src/metador_core/widget/dashboard.py
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 |
|
get_grp_row ¶
get_grp_row(
*,
idx=None,
widget_group=None,
divider=False,
server=None,
container_id: Optional[str] = None
)
Create a flexible and wrapping row for all widgets within a single group.
Source code in src/metador_core/widget/dashboard.py
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 |
|