Browse Source

Change ui.Select.values to a ContextVar to avoid race conditions

pull/8318/head
Mikey 3 years ago
committed by GitHub
parent
commit
d826f4f3a8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      discord/ui/select.py

9
discord/ui/select.py

@ -24,6 +24,7 @@ DEALINGS IN THE SOFTWARE.
from __future__ import annotations
from typing import List, Literal, Optional, TYPE_CHECKING, Tuple, TypeVar, Callable, Union
from contextvars import ContextVar
import inspect
import os
@ -53,6 +54,8 @@ if TYPE_CHECKING:
V = TypeVar('V', bound='View', covariant=True)
selected_values: ContextVar[Optional[List[str]]] = ContextVar('selected_values', default=None)
class Select(Item[V]):
"""Represents a UI select menu.
@ -108,7 +111,6 @@ class Select(Item[V]):
row: Optional[int] = None,
) -> None:
super().__init__()
self._selected_values: List[str] = []
self._provided_custom_id = custom_id is not MISSING
custom_id = os.urandom(16).hex() if custom_id is MISSING else custom_id
if not isinstance(custom_id, str):
@ -260,7 +262,8 @@ class Select(Item[V]):
@property
def values(self) -> List[str]:
"""List[:class:`str`]: A list of values that have been selected by the user."""
return self._selected_values
values = selected_values.get()
return values if values is not None else []
@property
def width(self) -> int:
@ -273,7 +276,7 @@ class Select(Item[V]):
self._underlying = component
def _refresh_state(self, data: MessageComponentInteractionData) -> None:
self._selected_values = data.get('values', [])
selected_values.set(data.get('values', []))
@classmethod
def from_component(cls, component: SelectMenu) -> Self:

Loading…
Cancel
Save