1
0
Fork 0
mirror of https://code.lenaisten.de/Lenaisten/lenaverse-bot.git synced 2024-11-22 06:53:00 +00:00

minor fixes

This commit is contained in:
Jörn-Michael Miehe 2023-11-19 23:37:51 +01:00
parent ec01447440
commit f7c24ebca5
2 changed files with 15 additions and 17 deletions

View file

@ -3,19 +3,17 @@ import logging
import discord
from .commands import lsstuff
from .post import post
from .post import ev_post
_logger = logging.getLogger(__name__)
class LenaverseBot(discord.Client):
def __init__(self) -> None:
intents = discord.Intents.default()
super().__init__(intents=intents)
super().__init__(intents=discord.Intents.default())
self.tree = discord.app_commands.CommandTree(self)
self.tree.add_command(post)
self.tree.add_command(ev_post)
self.tree.add_command(lsstuff)
async def setup_hook(self):
@ -23,7 +21,5 @@ class LenaverseBot(discord.Client):
_logger.info("Commands synced")
async def on_ready(self) -> None:
if self.user is None:
return
assert self.user is not None
_logger.info(f"{self.user.name} has connected to Discord!")

View file

@ -60,17 +60,23 @@ class PostModal(ui.Modal, title="Post verfassen"):
post_content = f"{self.content.value}\n> Gepostet von <@{interaction.user.id}>"
# Vorschau mit Buttons
view = PostConfirm()
await interaction.response.send_message(
content=f"## Post-Vorschau\n\n{post_content}",
view=(view := PostConfirm()),
view=view,
# nur für ausführenden User
ephemeral=True,
)
# warten auf User-Entscheidung
await view.wait()
if await view.wait() is True:
# Entscheidungszeit abgelaufen
await interaction.user.send("Zeit abgelaufen, Post verworfen ")
_logger.info(
f"User {interaction.user.name}({interaction.user.id}) timeout during /post"
)
if view.action is Action.PUBLISH:
elif view.action is Action.PUBLISH:
# Post veröffentlichen
_logger.info(
f"User {interaction.user.name}({interaction.user.id}) published a /post"
@ -79,18 +85,14 @@ class PostModal(ui.Modal, title="Post verfassen"):
await target.send(post_content)
elif view.action is Action.ABORT:
# Post abbrechen
_logger.info(
f"User {interaction.user.name}({interaction.user.id}) aborted a /post"
)
elif view.action is Action.TIMEOUT:
_logger.info(
f"User {interaction.user.name}({interaction.user.id}) timeout during /post"
)
@discord.app_commands.command()
async def post(interaction: discord.Interaction):
async def ev_post(interaction: discord.Interaction) -> None:
"""
Einen Post im Lenaisten-Bereich verfassen (nur für ausgewählte Mitglieder verfügbar)
"""