forked from reactive-python/reactpy-django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.py
100 lines (71 loc) · 2.54 KB
/
types.py
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
from __future__ import annotations
from dataclasses import dataclass, field
from typing import (
Any,
Awaitable,
Callable,
Generic,
Optional,
Protocol,
Sequence,
TypeVar,
Union,
)
from django.db.models.base import Model
from django.db.models.query import QuerySet
from django.views.generic import View
from typing_extensions import ParamSpec
from django_idom.defaults import _DEFAULT_QUERY_POSTPROCESSOR
__all__ = ["_Result", "_Params", "_Data", "IdomWebsocket", "Query", "Mutation"]
_Result = TypeVar("_Result", bound=Union[Model, QuerySet[Any]])
_Params = ParamSpec("_Params")
_Data = TypeVar("_Data")
@dataclass
class IdomWebsocket:
"""Websocket returned by the `use_websocket` hook."""
scope: dict
close: Callable[[Optional[int]], Awaitable[None]]
disconnect: Callable[[int], Awaitable[None]]
dotted_path: str
@dataclass
class Query(Generic[_Data]):
"""Queries generated by the `use_query` hook."""
data: _Data
loading: bool
error: Exception | None
refetch: Callable[[], None]
@dataclass
class Mutation(Generic[_Params]):
"""Mutations generated by the `use_mutation` hook."""
execute: Callable[_Params, None]
loading: bool
error: Exception | None
reset: Callable[[], None]
@dataclass
class ViewComponentIframe:
view: View | Callable
args: Sequence
kwargs: dict
class Postprocessor(Protocol):
def __call__(self, data: Any) -> Any:
...
@dataclass
class QueryOptions:
"""Configuration options that can be provided to `use_query`."""
postprocessor: Postprocessor | None = _DEFAULT_QUERY_POSTPROCESSOR
"""A callable that can modify the query `data` after the query has been executed.
The first argument of postprocessor must be the query `data`. All proceeding arguments
are optional `postprocessor_kwargs` (see below). This postprocessor function must return
the modified `data`.
If `None`, the default postprocessor is used.
This default Django query postprocessor prevents Django's lazy query execution, and
additionally can be configured via `postprocessor_kwargs` to recursively fetch
`many_to_many` and `many_to_one` fields."""
postprocessor_kwargs: dict[str, Any] = field(default_factory=lambda: {})
"""Keyworded arguments directly passed into the `postprocessor` for configuration."""
@dataclass
class ComponentParamData:
"""Container used for serializing component parameters.
This dataclass is pickled & stored in the database, then unpickled when needed."""
args: tuple
kwargs: dict