common
Common generic widgets.
These basically integrate many default widgets provided by panel/bokeh into Metador.
FileWidget ¶
Bases: Widget
Simple widget based on (a subschema of) 'core.file'.
Allows to state supported MIME types with less boilerplate.
Source code in src/metador_core/widget/common.py
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 |
|
DispatcherWidget ¶
Bases: Widget
Meta-widget to dispatch a node+metadata object to a more specific widget.
Make sure that the dispatcher widget is probed before the widgets it can dispatch to.
This works if and only if for each widget in listed in WIDGETS
:
* the plugin name of the dispatcher is a prefix of the widget name, or
* the widget has primary = False
and thus is not considered by the dashboard.
Source code in src/metador_core/widget/common.py
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 |
|
WIDGETS
instance-attribute
¶
WIDGETS: List[Type[Widget]]
Widgets in the order they should be tested.
dispatch ¶
dispatch(w_cls: Type[Widget]) -> Widget
Dispatch to another widget (used by meta-widgets).
Source code in src/metador_core/widget/common.py
124 125 126 127 128 129 130 131 132 133 |
|