mirror of
https://github.com/ROCm/jax.git
synced 2025-04-14 10:56:06 +00:00

See https://opensource.google/documentation/reference/releasing/contributions#copyright for more details. PiperOrigin-RevId: 476167538
168 lines
4.2 KiB
Python
168 lines
4.2 KiB
Python
# Copyright 2022 The JAX Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
"""Module for building interfaces in Colab."""
|
|
from __future__ import annotations
|
|
|
|
import abc
|
|
import dataclasses
|
|
import functools
|
|
import sys
|
|
import uuid
|
|
|
|
from typing import Any, Dict, List, Union
|
|
|
|
IS_COLAB_ENABLED = "google.colab" in sys.modules
|
|
if IS_COLAB_ENABLED:
|
|
# pylint: disable=g-import-not-at-top
|
|
# pytype: disable=import-error
|
|
from google.colab import output
|
|
from IPython import display
|
|
# pytype: enable=import-error
|
|
# pylint: enable=g-import-not-at-top
|
|
|
|
|
|
class DOMElement(metaclass=abc.ABCMeta):
|
|
|
|
@abc.abstractmethod
|
|
def render(self):
|
|
pass
|
|
|
|
|
|
Element = Union[DOMElement, str]
|
|
|
|
|
|
class DynamicDOMElement(DOMElement):
|
|
"""A DOM element that can be mutated."""
|
|
|
|
@abc.abstractmethod
|
|
def render(self):
|
|
pass
|
|
|
|
@abc.abstractmethod
|
|
def append(self, child: DOMElement):
|
|
pass
|
|
|
|
@abc.abstractmethod
|
|
def update(self, elem: DOMElement):
|
|
pass
|
|
|
|
@abc.abstractmethod
|
|
def clear(self):
|
|
pass
|
|
|
|
@dataclasses.dataclass
|
|
class DynamicDiv(DynamicDOMElement):
|
|
"""A `div` that can be edited."""
|
|
_uuid: str = dataclasses.field(init=False)
|
|
_root_elem: DOMElement = dataclasses.field(init=False)
|
|
elem: Union[DOMElement, str]
|
|
|
|
def __post_init__(self):
|
|
self._uuid = str(uuid.uuid4())
|
|
self._rendered = False
|
|
self._root_elem = div(id=self.tag)
|
|
|
|
@property
|
|
def tag(self):
|
|
return f"tag-{self._uuid}"
|
|
|
|
def render(self):
|
|
if self._rendered:
|
|
raise ValueError("Can't call `render` twice.")
|
|
self._root_elem.render()
|
|
self._rendered = True
|
|
self.append(self.elem)
|
|
|
|
def append(self, child: DOMElement):
|
|
if not self._rendered:
|
|
self.render()
|
|
with output.use_tags([self.tag]):
|
|
with output.redirect_to_element(f"#{self.tag}"):
|
|
child.render()
|
|
|
|
def update(self, elem: DOMElement):
|
|
self.clear()
|
|
self.elem = elem
|
|
self.render()
|
|
|
|
def clear(self):
|
|
output.clear(output_tags=[self.tag])
|
|
self._rendered = False
|
|
|
|
|
|
@dataclasses.dataclass
|
|
class StaticDOMElement(DOMElement):
|
|
"""An immutable DOM element."""
|
|
_uuid: str = dataclasses.field(init=False)
|
|
name: str
|
|
children: List[Union[str, DOMElement]]
|
|
attrs: Dict[str, str]
|
|
|
|
def html(self):
|
|
attr_str = ""
|
|
if self.attrs:
|
|
attr_str = " " + (" ".join(
|
|
[f"{key}=\"{value}\"" for key, value in self.attrs.items()]))
|
|
children = []
|
|
children = "\n".join([str(c) for c in self.children])
|
|
return f"<{self.name}{attr_str}>{children}</{self.name}>"
|
|
|
|
def render(self):
|
|
display.display(display.HTML(self.html()))
|
|
|
|
def attr(self, key: str) -> str:
|
|
return self.attrs[key]
|
|
|
|
def __str__(self):
|
|
return self.html()
|
|
|
|
def __repr__(self):
|
|
return self.html()
|
|
|
|
def append(self, child: DOMElement) -> DOMElement:
|
|
return dataclasses.replace(self, children=[*self.children, child])
|
|
|
|
def replace(self, **kwargs) -> DOMElement:
|
|
return dataclasses.replace(self, **kwargs)
|
|
|
|
|
|
def _style_dict_to_str(style_dict: Dict[str, Any]) -> str:
|
|
return " ".join([f"{k}: {v};" for k, v in style_dict.items()])
|
|
|
|
|
|
def dynamic(elem: StaticDOMElement) -> DynamicDiv:
|
|
return DynamicDiv(elem)
|
|
|
|
|
|
def _make_elem(tag: str, *children: Element, **attrs) -> StaticDOMElement:
|
|
"""Helper function for making DOM elements."""
|
|
return StaticDOMElement(tag, list(children), attrs)
|
|
|
|
|
|
code = functools.partial(_make_elem, "code")
|
|
div = functools.partial(_make_elem, "div")
|
|
li = functools.partial(_make_elem, "li")
|
|
ol = functools.partial(_make_elem, "ol")
|
|
pre = functools.partial(_make_elem, "pre")
|
|
progress = functools.partial(_make_elem, "progress")
|
|
span = functools.partial(_make_elem, "span")
|
|
|
|
|
|
def css(text: str) -> StaticDOMElement:
|
|
return StaticDOMElement("style", [text], {})
|
|
|
|
|
|
def style(*args, **kwargs):
|
|
return _style_dict_to_str(dict(*args, **kwargs))
|