Browse Source

Allow sending View with Interaction.response.send_message

This also allows for ephemeral views and listening to said views
pull/6997/head
Rapptz 4 years ago
parent
commit
c6f3ed1af4
  1. 15
      discord/interactions.py

15
discord/interactions.py

@ -244,6 +244,7 @@ class InteractionResponse:
*,
embed: Embed = MISSING,
embeds: List[Embed] = MISSING,
view: View = MISSING,
tts: bool = False,
ephemeral: bool = False,
) -> None:
@ -263,8 +264,12 @@ class InteractionResponse:
``embeds`` parameter.
tts: :class:`bool`
Indicates if the message should be sent using text-to-speech.
view: :class:`discord.ui.View`
The view to send with the message.
ephemeral: :class:`bool`
Indicates if the message should only be visible to the user who started the interaction.
If a view is sent with an ephemeral message and it has no timeout set then the timeout
is set to 15 minutes.
Raises
-------
@ -299,6 +304,9 @@ class InteractionResponse:
if ephemeral:
payload['flags'] = 64
if view is not MISSING:
payload['components'] = view.to_components()
parent = self._parent
adapter = async_context.get()
await adapter.create_interaction_response(
@ -308,6 +316,13 @@ class InteractionResponse:
type=InteractionResponseType.channel_message.value,
data=payload,
)
if view is not MISSING:
if ephemeral and view.timeout is None:
view.timeout = 15 * 60.0
self._parent._state.store_view(view)
self._responded = True
async def edit_message(

Loading…
Cancel
Save