widget
Interface of Metador widget plugins.
Widget ¶
Bases: ABC
Base class for metador widgets.
Source code in src/metador_core/widget/__init__.py
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 |
|
__init__ ¶
__init__(
node: MetadorNode,
schema_name: str = "",
schema_version: Optional[SemVerTuple] = None,
*,
server: Optional[WidgetServer] = None,
container_id: Optional[str] = None,
metadata: Optional[MetadataSchema] = None,
max_width: Optional[int] = None,
max_height: Optional[int] = None,
keep_ratio: bool = False
)
Instantiate a widget for a node.
If no schema name is provided, the widget will try to pick the first metadata object from the node that is an instance of a supported schema, in the listed order.
If no server is provided, a stand-alone server is started (e.g. for use in a notebook).
If a metadata object is passed explicitly, it will be used instead of trying to retrieve one from the node.
Source code in src/metador_core/widget/__init__.py
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 |
|
file_data ¶
file_data(node: Optional[MetadorDataset] = None) -> bytes
Return data at passed dataset node as bytes.
If no node passed, will use the widget root node (if it is a dataset).
Source code in src/metador_core/widget/__init__.py
126 127 128 129 130 131 132 133 134 135 136 |
|
file_url ¶
file_url(node: Optional[MetadorNode] = None) -> str
Return URL resolving to the data at given node.
If no node passed, will use the widget root node (if it is a dataset).
Source code in src/metador_core/widget/__init__.py
138 139 140 141 142 143 144 145 146 147 148 |
|
supports
classmethod
¶
supports(*schemas: PluginRef) -> bool
Return whether any (exact) schema is supported (version-compatible) by widget.
Source code in src/metador_core/widget/__init__.py
150 151 152 153 154 155 156 |
|
supports_meta
classmethod
¶
supports_meta(obj: MetadataSchema) -> bool
Return whether widget supports the specific metadata object.
The passed object is assumed to be of one of the supported schema types.
Default implementation will just check that the object is of a supported schema.
Override to constrain further (e.g. check field values).
This method affects the dashboard widget selection process and is used
to check a metadata object if directly passed to __init__
.
Source code in src/metador_core/widget/__init__.py
158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
|
setup ¶
setup()
Check that passed node is valid and do preparations.
If multiple supported schemas are listed, case splitting based on the schema type should be done here to minimize logic in the rendering.
Everything that instances can reuse, especially if it is computationally expensive, should also be done here.
In case the widget is not able to work with the given node and metadata,
it will raise a ValueError
.
Source code in src/metador_core/widget/__init__.py
173 174 175 176 177 178 179 180 181 182 183 184 |
|
show
abstractmethod
¶
show() -> Viewable
Return a fresh Panel widget representing the node data and/or metadata.
If width and height were provided during initialization, the widget is supposed to fit within these dimensions, not exceed them and if possible, usefully fill up the space.
This method assumes that the widget is fully initialized and setup is completed.
Source code in src/metador_core/widget/__init__.py
186 187 188 189 190 191 192 193 194 195 196 |
|
WidgetPlugin ¶
Bases: pg.PluginBase
Source code in src/metador_core/widget/__init__.py
207 208 209 210 211 212 213 214 215 |
|
supports
instance-attribute
¶
supports: Annotated[
List[SchemaPluginRef], Field(min_items=1)
]
Return list of schemas supported by this widget.
primary
class-attribute
instance-attribute
¶
primary: bool = True
Return whether the widget is a primary choice.
If False, will not be used automatically by dashboard.
PGWidget ¶
Bases: pg.PluginGroup[Widget]
Widget plugin group interface.
Source code in src/metador_core/widget/__init__.py
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 |
|
widgets_for ¶
widgets_for(schema: PluginRef) -> Iterator[PluginRef]
Return widgets that support (a parent of) the given schema.
Source code in src/metador_core/widget/__init__.py
237 238 239 240 241 242 243 244 245 246 |
|