|
@ -23,7 +23,7 @@ DEALINGS IN THE SOFTWARE. |
|
|
""" |
|
|
""" |
|
|
|
|
|
|
|
|
from __future__ import annotations |
|
|
from __future__ import annotations |
|
|
from typing import List, Literal, Optional, TYPE_CHECKING, Tuple, TypeVar, Callable, Union |
|
|
from typing import List, Literal, Optional, TYPE_CHECKING, Tuple, TypeVar, Callable, Union, Dict |
|
|
from contextvars import ContextVar |
|
|
from contextvars import ContextVar |
|
|
import inspect |
|
|
import inspect |
|
|
import os |
|
|
import os |
|
@ -54,7 +54,7 @@ if TYPE_CHECKING: |
|
|
|
|
|
|
|
|
V = TypeVar('V', bound='View', covariant=True) |
|
|
V = TypeVar('V', bound='View', covariant=True) |
|
|
|
|
|
|
|
|
selected_values: ContextVar[Optional[List[str]]] = ContextVar('selected_values', default=None) |
|
|
selected_values: ContextVar[Dict[str, List[str]]] = ContextVar('selected_values') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Select(Item[V]): |
|
|
class Select(Item[V]): |
|
@ -126,6 +126,7 @@ class Select(Item[V]): |
|
|
disabled=disabled, |
|
|
disabled=disabled, |
|
|
) |
|
|
) |
|
|
self.row = row |
|
|
self.row = row |
|
|
|
|
|
self._values: List[str] = [] |
|
|
|
|
|
|
|
|
@property |
|
|
@property |
|
|
def custom_id(self) -> str: |
|
|
def custom_id(self) -> str: |
|
@ -262,8 +263,8 @@ class Select(Item[V]): |
|
|
@property |
|
|
@property |
|
|
def values(self) -> List[str]: |
|
|
def values(self) -> List[str]: |
|
|
"""List[:class:`str`]: A list of values that have been selected by the user.""" |
|
|
"""List[:class:`str`]: A list of values that have been selected by the user.""" |
|
|
values = selected_values.get() |
|
|
values = selected_values.get(None) |
|
|
return values if values is not None else [] |
|
|
return self._values if values is None else values.get(self.custom_id, []) |
|
|
|
|
|
|
|
|
@property |
|
|
@property |
|
|
def width(self) -> int: |
|
|
def width(self) -> int: |
|
@ -276,7 +277,9 @@ class Select(Item[V]): |
|
|
self._underlying = component |
|
|
self._underlying = component |
|
|
|
|
|
|
|
|
def _refresh_state(self, data: MessageComponentInteractionData) -> None: |
|
|
def _refresh_state(self, data: MessageComponentInteractionData) -> None: |
|
|
selected_values.set(data.get('values', [])) |
|
|
values = selected_values.get({}) |
|
|
|
|
|
self._values = values[self.custom_id] = data.get('values', []) |
|
|
|
|
|
selected_values.set(values) |
|
|
|
|
|
|
|
|
@classmethod |
|
|
@classmethod |
|
|
def from_component(cls, component: SelectMenu) -> Self: |
|
|
def from_component(cls, component: SelectMenu) -> Self: |
|
|