-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhooks.py
More file actions
706 lines (536 loc) · 21.8 KB
/
hooks.py
File metadata and controls
706 lines (536 loc) · 21.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
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
311
312
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
343
344
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
"""Hook primitives for function components.
Provides React-like hooks for managing state, effects, memoization,
context, and navigation within function components decorated with
[`component`][pythonnative.component]. Hooks must be called at the top
level of a component (not inside conditionals or loops) so they map to
the same slot across renders.
Effects are queued during the render phase and flushed *after* the
reconciler commits native-view mutations. This ordering guarantees that
effect callbacks can safely measure layout or interact with the
committed native tree.
Example:
```python
import pythonnative as pn
@pn.component
def Counter(initial=0):
count, set_count = pn.use_state(initial)
return pn.Column(
pn.Text(f"Count: {count}"),
pn.Button("+", on_click=lambda: set_count(count + 1)),
)
```
"""
import inspect
import threading
from contextlib import contextmanager
from typing import Any, Callable, Dict, Generator, List, Optional, Tuple, TypeVar
from .element import Element
T = TypeVar("T")
_SENTINEL = object()
_hook_context: threading.local = threading.local()
_batch_context: threading.local = threading.local()
# ======================================================================
# Hook state container
# ======================================================================
class HookState:
"""Per-instance storage for one component's hooks.
Each `@component` instance owns one `HookState`. Hooks are matched
to slots by call order, so they must always be called in the same
order across renders. Effects scheduled during render are deferred
into `_pending_effects` and flushed after the reconciler commits
native mutations, which guarantees effect callbacks can safely
interact with the committed native tree.
Attributes:
states: One entry per `use_state` / `use_reducer` call.
effects: One `(deps, cleanup)` tuple per `use_effect` call.
memos: One `(deps, value)` tuple per `use_memo` / `use_callback`.
refs: One mutable dict per `use_ref` call.
hook_index: Cursor reset to 0 at the start of every render.
"""
__slots__ = (
"states",
"effects",
"memos",
"refs",
"hook_index",
"_trigger_render",
"_pending_effects",
)
def __init__(self) -> None:
self.states: List[Any] = []
self.effects: List[Tuple[Any, Any]] = []
self.memos: List[Tuple[Any, Any]] = []
self.refs: List[dict] = []
self.hook_index: int = 0
self._trigger_render: Optional[Callable[[], None]] = None
self._pending_effects: List[Tuple[int, Callable, Any]] = []
def reset_index(self) -> None:
"""Reset the hook cursor to the start of the slot list.
Called by the reconciler at the beginning of every render pass.
"""
self.hook_index = 0
def flush_pending_effects(self) -> None:
"""Run effects queued during render, after native commit.
For each pending effect, the previous cleanup is invoked first
(if any), then the new effect callback. The new return value
becomes the next cleanup.
"""
pending = self._pending_effects
self._pending_effects = []
for idx, effect_fn, deps in pending:
_, prev_cleanup = self.effects[idx]
if callable(prev_cleanup):
try:
prev_cleanup()
except Exception:
pass
cleanup = effect_fn()
self.effects[idx] = (list(deps) if deps is not None else None, cleanup)
def cleanup_all_effects(self) -> None:
"""Run every outstanding cleanup function, then clear state.
Called when the component instance is unmounted by the
reconciler.
"""
for i, (deps, cleanup) in enumerate(self.effects):
if callable(cleanup):
try:
cleanup()
except Exception:
pass
self.effects[i] = (_SENTINEL, None)
self._pending_effects = []
# ======================================================================
# Thread-local context helpers
# ======================================================================
def _get_hook_state() -> Optional[HookState]:
"""Return the active `HookState`, or `None` if no render is in flight."""
return getattr(_hook_context, "current", None)
def _set_hook_state(state: Optional[HookState]) -> None:
"""Install `state` as the active `HookState` for the current thread."""
_hook_context.current = state
def _deps_changed(prev: Any, current: Any) -> bool:
"""Return whether the dependency arrays differ enough to re-run an effect."""
if prev is _SENTINEL:
return True
if prev is None or current is None:
return True
if len(prev) != len(current):
return True
return any(p is not c and p != c for p, c in zip(prev, current))
# ======================================================================
# Batching helpers
# ======================================================================
def _schedule_trigger(trigger: Callable[[], None]) -> None:
"""Run ``trigger`` immediately, or defer it inside a `batch_updates` block."""
if getattr(_batch_context, "depth", 0) > 0:
_batch_context.pending_trigger = trigger
else:
trigger()
@contextmanager
def batch_updates() -> Generator[None, None, None]:
"""Coalesce multiple state updates into a single re-render.
State setters called inside the `with` block defer their
re-render trigger until the block exits, so any number of
`set_*` calls produce at most one render pass.
Yields:
None. The block executes normally; deferred renders fire on
exit.
Example:
```python
import pythonnative as pn
with pn.batch_updates():
set_count(1)
set_name("hello")
```
"""
depth = getattr(_batch_context, "depth", 0)
_batch_context.depth = depth + 1
if depth == 0:
_batch_context.pending_trigger = None
try:
yield
finally:
_batch_context.depth -= 1
if _batch_context.depth == 0:
trigger = _batch_context.pending_trigger
_batch_context.pending_trigger = None
if trigger is not None:
trigger()
# ======================================================================
# Public hooks
# ======================================================================
def use_state(initial: Any = None) -> Tuple[Any, Callable]:
"""Return ``(value, setter)`` for component-local state.
State persists across re-renders of the same component instance.
The setter accepts a value or a ``current -> new`` callable; calling
it with an unchanged value is a no-op (no re-render).
Args:
initial: Initial state value. If callable, it is invoked once on
the first render (lazy initialization).
Returns:
A 2-tuple ``(value, setter)`` where ``value`` is the current
state and ``setter`` updates it (and triggers a re-render).
Raises:
RuntimeError: If called outside a `@component` function.
Example:
```python
import pythonnative as pn
@pn.component
def Counter():
count, set_count = pn.use_state(0)
return pn.Button(
f"Count: {count}",
on_click=lambda: set_count(count + 1),
)
```
"""
ctx = _get_hook_state()
if ctx is None:
raise RuntimeError("use_state must be called inside a @component function")
idx = ctx.hook_index
ctx.hook_index += 1
if idx >= len(ctx.states):
val = initial() if callable(initial) else initial
ctx.states.append(val)
current = ctx.states[idx]
def setter(new_value: Any) -> None:
if callable(new_value):
new_value = new_value(ctx.states[idx])
if ctx.states[idx] is not new_value and ctx.states[idx] != new_value:
ctx.states[idx] = new_value
if ctx._trigger_render:
_schedule_trigger(ctx._trigger_render)
return current, setter
def use_reducer(reducer: Callable[[Any, Any], Any], initial_state: Any) -> Tuple[Any, Callable]:
"""Return ``(state, dispatch)`` for reducer-based state management.
A reducer is a pure function that takes the current state and an
action and returns the next state. Use it instead of
[`use_state`][pythonnative.use_state] when state transitions are
complex enough that centralizing them in one function aids
readability and testing.
Args:
reducer: ``reducer(current_state, action) -> new_state``.
The component re-renders only when `reducer` returns a
value different from the current state.
initial_state: Initial state value, or a callable invoked once
on the first render.
Returns:
A 2-tuple ``(state, dispatch)`` where `dispatch` runs the
reducer with the supplied action.
Raises:
RuntimeError: If called outside a `@component` function.
Example:
```python
import pythonnative as pn
def reducer(state, action):
if action == "increment":
return state + 1
if action == "reset":
return 0
return state
@pn.component
def Counter():
count, dispatch = pn.use_reducer(reducer, 0)
return pn.Row(
pn.Button("+", on_click=lambda: dispatch("increment")),
pn.Button("Reset", on_click=lambda: dispatch("reset")),
)
```
"""
ctx = _get_hook_state()
if ctx is None:
raise RuntimeError("use_reducer must be called inside a @component function")
idx = ctx.hook_index
ctx.hook_index += 1
if idx >= len(ctx.states):
val = initial_state() if callable(initial_state) else initial_state
ctx.states.append(val)
current = ctx.states[idx]
def dispatch(action: Any) -> None:
new_state = reducer(ctx.states[idx], action)
if ctx.states[idx] is not new_state and ctx.states[idx] != new_state:
ctx.states[idx] = new_state
if ctx._trigger_render:
_schedule_trigger(ctx._trigger_render)
return current, dispatch
def use_effect(effect: Callable, deps: Optional[list] = None) -> None:
"""Schedule a side effect to run after the native commit.
Effects are queued during the render pass and flushed once the
reconciler has finished applying all native-view mutations, which
means effect callbacks can safely measure layout or interact with
committed native views.
The `deps` argument controls when the effect re-runs:
- `None`: every render.
- `[]`: mount only.
- `[a, b]`: when `a` or `b` change (compared by identity, then `==`).
`effect` may return a cleanup callable; the previous cleanup runs
before the next effect (and on unmount).
Args:
effect: A zero-arg callable invoked after commit. Optionally
returns a cleanup callable.
deps: Dependency list, or `None` to run on every render.
Raises:
RuntimeError: If called outside a `@component` function.
Example:
```python
import pythonnative as pn
@pn.component
def Timer():
seconds, set_seconds = pn.use_state(0)
def tick():
import threading
t = threading.Timer(1.0, lambda: set_seconds(seconds + 1))
t.start()
return t.cancel
pn.use_effect(tick, [seconds])
return pn.Text(f"Elapsed: {seconds}s")
```
"""
ctx = _get_hook_state()
if ctx is None:
raise RuntimeError("use_effect must be called inside a @component function")
idx = ctx.hook_index
ctx.hook_index += 1
if idx >= len(ctx.effects):
ctx.effects.append((_SENTINEL, None))
ctx._pending_effects.append((idx, effect, deps))
return
prev_deps, _prev_cleanup = ctx.effects[idx]
if _deps_changed(prev_deps, deps):
ctx._pending_effects.append((idx, effect, deps))
def use_memo(factory: Callable[[], T], deps: list) -> T:
"""Return a memoized value that is recomputed only when `deps` change.
Use this for expensive computations whose inputs change rarely. For
cheap computations, plain inline code is faster (memoization itself
has overhead).
Args:
factory: Zero-arg callable returning the value.
deps: Dependency list. The value is recomputed when any element
differs from the previous render.
Returns:
The cached or freshly computed value.
Raises:
RuntimeError: If called outside a `@component` function.
"""
ctx = _get_hook_state()
if ctx is None:
raise RuntimeError("use_memo must be called inside a @component function")
idx = ctx.hook_index
ctx.hook_index += 1
if idx >= len(ctx.memos):
value = factory()
ctx.memos.append((list(deps), value))
return value
prev_deps, prev_value = ctx.memos[idx]
if not _deps_changed(prev_deps, deps):
return prev_value
value = factory()
ctx.memos[idx] = (list(deps), value)
return value
def use_callback(callback: Callable, deps: list) -> Callable:
"""Return a stable reference to ``callback``, refreshed when ``deps`` change.
Equivalent to `use_memo(lambda: callback, deps)`. Useful when passing
a function as a prop to a memoized child component, so the child
doesn't see a fresh function identity on every render.
Args:
callback: The callable to memoize.
deps: Dependency list controlling when the reference refreshes.
Returns:
A callable with stable identity across renders (until `deps` change).
"""
return use_memo(lambda: callback, deps)
def use_ref(initial: Any = None) -> dict:
"""Return a mutable ref dict ``{"current": initial}`` that persists across renders.
Refs are useful for storing values that must survive renders without
triggering them: timers, last-seen values, native handles, and so on.
Args:
initial: Value placed at `ref["current"]` on first render.
Returns:
A dict with a single `"current"` key. Mutations to the dict do
*not* trigger re-renders.
Raises:
RuntimeError: If called outside a `@component` function.
"""
ctx = _get_hook_state()
if ctx is None:
raise RuntimeError("use_ref must be called inside a @component function")
idx = ctx.hook_index
ctx.hook_index += 1
if idx >= len(ctx.refs):
ref: dict = {"current": initial}
ctx.refs.append(ref)
return ref
return ctx.refs[idx]
# ======================================================================
# Context
# ======================================================================
class Context:
"""Container for a value shared across a subtree.
Created by [`create_context`][pythonnative.create_context]; consumed
via [`use_context`][pythonnative.use_context]. Use
[`Provider`][pythonnative.Provider] to set the value for a subtree.
Attributes:
default: The value returned when no `Provider` ancestor exists.
"""
def __init__(self, default: Any = None) -> None:
self.default = default
self._stack: List[Any] = []
def _current(self) -> Any:
return self._stack[-1] if self._stack else self.default
def create_context(default: Any = None) -> Context:
"""Create a new context with an optional default value.
Args:
default: Returned by [`use_context`][pythonnative.use_context]
when there is no enclosing
[`Provider`][pythonnative.Provider].
Returns:
A fresh `Context` instance.
Example:
```python
import pythonnative as pn
ThemeContext = pn.create_context({"primary": "#007AFF"})
```
"""
return Context(default)
def use_context(context: Context) -> Any:
"""Read the current value of `context` from the nearest `Provider`.
If no enclosing `Provider` exists, returns the context's default.
Args:
context: The `Context` to read from.
Returns:
The current value for `context`.
Raises:
RuntimeError: If called outside a `@component` function.
"""
ctx = _get_hook_state()
if ctx is None:
raise RuntimeError("use_context must be called inside a @component function")
return context._current()
# ======================================================================
# Provider element helper
# ======================================================================
def Provider(context: Context, value: Any, child: Element) -> Element:
"""Provide `value` for `context` to all descendants of `child`.
Args:
context: The `Context` to set.
value: Value made available to descendants via
[`use_context`][pythonnative.use_context].
child: Subtree under which the provider applies.
Returns:
An [`Element`][pythonnative.Element] that the reconciler treats
as a context boundary.
Example:
```python
import pythonnative as pn
ThemeContext = pn.create_context({"primary": "#007AFF"})
@pn.component
def App():
return pn.Provider(ThemeContext, {"primary": "#FF0000"}, MyView())
```
"""
return Element("__Provider__", {"__context__": context, "__value__": value}, [child])
# ======================================================================
# Navigation
# ======================================================================
_NavigationContext: Context = create_context(None)
class NavigationHandle:
"""Handle returned by [`use_navigation`][pythonnative.use_navigation].
Wraps the host's push/pop primitives so screens can navigate without
knowing the underlying native navigation stack.
Example:
```python
import pythonnative as pn
@pn.component
def HomeScreen():
nav = pn.use_navigation()
return pn.Button(
"Open Detail",
on_click=lambda: nav.navigate(DetailScreen, params={"id": 42}),
)
```
"""
def __init__(self, host: Any) -> None:
self._host = host
def navigate(self, page: Any, params: Optional[Dict[str, Any]] = None) -> None:
"""Push `page` onto the navigation stack.
Args:
page: Either a `@component` function or a dotted Python
path (e.g., `"app.detail.DetailScreen"`).
params: Optional dict of arguments serialized into the
target screen.
"""
self._host._push(page, params)
def go_back(self) -> None:
"""Pop the current screen and return to the previous one."""
self._host._pop()
def get_params(self) -> Dict[str, Any]:
"""Return the params dict passed to this screen.
Returns:
The dict supplied by the caller's
[`navigate`][pythonnative.hooks.NavigationHandle.navigate]
call, or an empty dict if none was supplied.
"""
return self._host._get_nav_args()
def use_navigation() -> NavigationHandle:
"""Return a [`NavigationHandle`][pythonnative.hooks.NavigationHandle] for the screen.
Returns:
The handle bound to the current screen's host.
Raises:
RuntimeError: If called outside a component rendered via
[`create_page`][pythonnative.create_page].
"""
handle = use_context(_NavigationContext)
if handle is None:
raise RuntimeError(
"use_navigation() called outside a PythonNative page. "
"Ensure your component is rendered via create_page()."
)
return handle
# ======================================================================
# @component decorator
# ======================================================================
def component(func: Callable) -> Callable[..., Element]:
"""Mark a function as a PythonNative component.
The decorated function may use hooks (`use_state`, `use_effect`,
etc.) and returns an [`Element`][pythonnative.Element] tree.
Each call site creates an independent component instance with its
own hook state.
Positional arguments are mapped onto the function's positional
parameters. If the function declares `*args`, positional arguments
instead become the special `children` prop.
Args:
func: The function to wrap.
Returns:
A wrapper that, when called, returns an `Element` whose `type`
is `func` itself.
Example:
```python
import pythonnative as pn
@pn.component
def Greeting(name: str = "World"):
return pn.Text(f"Hello, {name}!")
```
"""
sig = inspect.signature(func)
positional_params = [
name
for name, p in sig.parameters.items()
if p.kind in (inspect.Parameter.POSITIONAL_ONLY, inspect.Parameter.POSITIONAL_OR_KEYWORD)
]
has_var_positional = any(p.kind == inspect.Parameter.VAR_POSITIONAL for p in sig.parameters.values())
def wrapper(*args: Any, **kwargs: Any) -> Element:
props: dict = dict(kwargs)
if args:
if has_var_positional:
props["children"] = list(args)
else:
for i, arg in enumerate(args):
if i < len(positional_params):
props[positional_params[i]] = arg
key = props.pop("key", None)
return Element(func, props, [], key=key)
wrapper.__wrapped__ = func # noqa: B010
wrapper.__name__ = func.__name__
wrapper.__qualname__ = func.__qualname__
wrapper._pn_component = True # noqa: B010
return wrapper