123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- from __future__ import annotations
- import re
- from abc import ABC
- from copy import deepcopy
- from typing import TYPE_CHECKING, Any, Callable, Dict, List, Optional, Union
- from typing_extensions import Self
- from nicegui import json
- from . import binding, events, globals, outbox
- from .elements.mixins.visibility import Visibility
- from .event_listener import EventListener
- from .slot import Slot
- if TYPE_CHECKING:
- from .client import Client
- PROPS_PATTERN = re.compile(r'([\w\-]+)(?:=(?:("[^"\\]*(?:\\.[^"\\]*)*")|([\w\-.%:\/]+)))?(?:$|\s)')
- class Element(ABC, Visibility):
- def __init__(self, tag: str, *, _client: Optional[Client] = None) -> None:
- """Generic Element
- This class is also the base class for all other elements.
- :param tag: HTML tag of the element
- :param _client: client for this element (for internal use only)
- """
- super().__init__()
- self.client = _client or globals.get_client()
- self.id = self.client.next_element_id
- self.client.next_element_id += 1
- self.tag = tag
- self._classes: List[str] = []
- self._style: Dict[str, str] = {}
- self._props: Dict[str, Any] = {}
- self._event_listeners: List[EventListener] = []
- self._text: str = ''
- self.slots: Dict[str, Slot] = {}
- self.default_slot = self.add_slot('default')
- self.client.elements[self.id] = self
- self.parent_slot: Optional[Slot] = None
- slot_stack = globals.get_slot_stack()
- if slot_stack:
- self.parent_slot = slot_stack[-1]
- self.parent_slot.children.append(self)
- outbox.enqueue_update(self)
- if self.parent_slot:
- outbox.enqueue_update(self.parent_slot.parent)
- def add_slot(self, name: str, template: Optional[str] = None) -> Slot:
- """Add a slot to the element.
- :param name: name of the slot
- :param template: Vue template of the slot
- :return: the slot
- """
- self.slots[name] = Slot(self, name, template)
- return self.slots[name]
- def __enter__(self) -> Self:
- self.default_slot.__enter__()
- return self
- def __exit__(self, *_):
- self.default_slot.__exit__(*_)
- def _collect_event_dict(self) -> Dict[str, Dict]:
- events: Dict[str, Dict] = {}
- for listener in self._event_listeners:
- words = listener.type.split('.')
- type = words.pop(0)
- specials = [w for w in words if w in {'capture', 'once', 'passive'}]
- modifiers = [w for w in words if w in {'stop', 'prevent', 'self', 'ctrl', 'shift', 'alt', 'meta'}]
- keys = [w for w in words if w not in specials + modifiers]
- events[listener.type] = {
- 'listener_type': listener.type,
- 'type': type,
- 'specials': specials,
- 'modifiers': modifiers,
- 'keys': keys,
- 'args': list(set(events.get(listener.type, {}).get('args', []) + listener.args)),
- 'throttle': min(events.get(listener.type, {}).get('throttle', float('inf')), listener.throttle),
- }
- return events
- def _collect_slot_dict(self) -> Dict[str, List[int]]:
- return {
- name: {'template': slot.template, 'ids': [child.id for child in slot.children]}
- for name, slot in self.slots.items()
- }
- def _to_dict(self, *keys: str) -> Dict:
- if not keys:
- return {
- 'id': self.id,
- 'tag': self.tag,
- 'class': self._classes,
- 'style': self._style,
- 'props': self._props,
- 'text': self._text,
- 'slots': self._collect_slot_dict(),
- 'events': self._collect_event_dict(),
- }
- dict_: Dict[str, Any] = {}
- for key in keys:
- if key == 'id':
- dict_['id'] = self.id
- elif key == 'tag':
- dict_['tag'] = self.tag
- elif key == 'class':
- dict_['class'] = self._classes
- elif key == 'style':
- dict_['style'] = self._style
- elif key == 'props':
- dict_['props'] = self._props
- elif key == 'text':
- dict_['text'] = self._text
- elif key == 'slots':
- dict_['slots'] = self._collect_slot_dict()
- elif key == 'events':
- dict_['events'] = self._collect_event_dict()
- else:
- raise ValueError(f'Unknown key {key}')
- return dict_
- def classes(self, add: Optional[str] = None, *, remove: Optional[str] = None, replace: Optional[str] = None) \
- -> Self:
- """Apply, remove, or replace HTML classes.
- This allows modifying the look of the element or its layout using `Tailwind <https://tailwindcss.com/>`_ or `Quasar <https://quasar.dev/>`_ classes.
- Removing or replacing classes can be helpful if predefined classes are not desired.
- :param add: whitespace-delimited string of classes
- :param remove: whitespace-delimited string of classes to remove from the element
- :param replace: whitespace-delimited string of classes to use instead of existing ones
- """
- class_list = self._classes if replace is None else []
- class_list = [c for c in class_list if c not in (remove or '').split()]
- class_list += (add or '').split()
- class_list += (replace or '').split()
- new_classes = list(dict.fromkeys(class_list)) # NOTE: remove duplicates while preserving order
- if self._classes != new_classes:
- self._classes = new_classes
- self.update()
- return self
- @staticmethod
- def _parse_style(text: Optional[str]) -> Dict[str, str]:
- result = {}
- for word in (text or '').split(';'):
- word = word.strip()
- if word:
- key, value = word.split(':', 1)
- result[key.strip()] = value.strip()
- return result
- def style(self, add: Optional[str] = None, *, remove: Optional[str] = None, replace: Optional[str] = None) -> Self:
- """Apply, remove, or replace CSS definitions.
- Removing or replacing styles can be helpful if the predefined style is not desired.
- .. codeblock:: python
- ui.button('Click me').style('color: #6E93D6; font-size: 200%', remove='font-weight; background-color')
- :param add: semicolon-separated list of styles to add to the element
- :param remove: semicolon-separated list of styles to remove from the element
- :param replace: semicolon-separated list of styles to use instead of existing ones
- """
- style_dict = deepcopy(self._style) if replace is None else {}
- for key in self._parse_style(remove):
- if key in style_dict:
- del style_dict[key]
- style_dict.update(self._parse_style(add))
- style_dict.update(self._parse_style(replace))
- if self._style != style_dict:
- self._style = style_dict
- self.update()
- return self
- @staticmethod
- def _parse_props(text: Optional[str]) -> Dict[str, Any]:
- dictionary = {}
- for match in PROPS_PATTERN.finditer(text or ''):
- key = match.group(1)
- value = match.group(2) or match.group(3)
- if value and value.startswith('"') and value.endswith('"'):
- value = json.loads(value)
- dictionary[key] = value or True
- return dictionary
- def props(self, add: Optional[str] = None, *, remove: Optional[str] = None) -> Self:
- """Add or remove props.
- This allows modifying the look of the element or its layout using `Quasar <https://quasar.dev/>`_ props.
- Since props are simply applied as HTML attributes, they can be used with any HTML element.
- .. codeblock:: python
- ui.button('Open menu').props('outline icon=menu')
- Boolean properties are assumed ``True`` if no value is specified.
- :param add: whitespace-delimited list of either boolean values or key=value pair to add
- :param remove: whitespace-delimited list of property keys to remove
- """
- needs_update = False
- for key in self._parse_props(remove):
- if key in self._props:
- needs_update = True
- del self._props[key]
- for key, value in self._parse_props(add).items():
- if self._props.get(key) != value:
- needs_update = True
- self._props[key] = value
- if needs_update:
- self.update()
- return self
- def tooltip(self, text: str) -> Self:
- """Add a tooltip to the element.
- :param text: text of the tooltip
- """
- with self:
- tooltip = Element('q-tooltip')
- tooltip._text = text
- return self
- def on(self, type: str, handler: Optional[Callable], args: Optional[List[str]] = None, *, throttle: float = 0.0) \
- -> Self:
- """Subscribe to an event.
- :param type: name of the event (e.g. "click", "mousedown", or "update:model-value")
- :param handler: callback that is called upon occurrence of the event
- :param args: arguments included in the event message sent to the event handler (default: `None` meaning all)
- :param throttle: minimum time (in seconds) between event occurrences (default: 0.0)
- """
- if handler:
- args = args if args is not None else ['*']
- listener = EventListener(element_id=self.id, type=type, args=args, handler=handler, throttle=throttle)
- self._event_listeners.append(listener)
- return self
- def _handle_event(self, msg: Dict) -> None:
- for listener in self._event_listeners:
- if listener.type == msg['type']:
- events.handle_event(listener.handler, msg, sender=self)
- def update(self) -> None:
- """Update the element on the client side."""
- outbox.enqueue_update(self)
- def run_method(self, name: str, *args: Any) -> None:
- """Run a method on the client side.
- :param name: name of the method
- :param args: arguments to pass to the method
- """
- if not globals.loop:
- return
- data = {'id': self.id, 'name': name, 'args': args}
- outbox.enqueue_message('run_method', data, globals._socket_id or self.client.id)
- def _collect_descendant_ids(self) -> List[int]:
- ids: List[int] = [self.id]
- for slot in self.slots.values():
- for child in slot.children:
- ids.extend(child._collect_descendant_ids())
- return ids
- def clear(self) -> None:
- """Remove all child elements."""
- descendants = [self.client.elements[id] for id in self._collect_descendant_ids()[1:]]
- binding.remove(descendants, Element)
- for element in descendants:
- del self.client.elements[element.id]
- for slot in self.slots.values():
- slot.children.clear()
- self.update()
- def remove(self, element: Union[Element, int]) -> None:
- """Remove a child element.
- :param element: either the element instance or its ID
- """
- if isinstance(element, int):
- children = [child for slot in self.slots.values() for child in slot.children]
- element = children[element]
- binding.remove([element], Element)
- del self.client.elements[element.id]
- for slot in self.slots.values():
- slot.children[:] = [e for e in slot.children if e.id != element.id]
- self.update()
- def delete(self) -> None:
- """Called when the corresponding client is deleted.
- Can be overridden to perform cleanup.
- """
|