Attempting more r e-formatting

This commit is contained in:
unknown 2023-03-12 23:05:14 +01:00
parent 4f80d038c7
commit d0bc03daeb

View File

@ -16,8 +16,8 @@ class Recruitment(commands.Cog):
def __init__(self, bot: Red): def __init__(self, bot: Red):
self.bot = bot self.bot = bot
@commands.group(name="application", usage="[text]", invoke_without_command=True) @commands.group(name="application", description="Starts the flow to create an application for joining Kanium")
async def application(self, ctx: commands.Context, *, _application: str = ""): async def application(self, ctx: commands.Context):
"""Send an application. """Send an application.
Use without arguments for an interactive application creation flow, or do Use without arguments for an interactive application creation flow, or do
@ -30,10 +30,8 @@ class Recruitment(commands.Cog):
await ctx.send("This command can only be used in a direct message to the bot.") await ctx.send("This command can only be used in a direct message to the bot.")
return return
if not _application:
await self.interactive_application(author) await self.interactive_application(author)
else:
await self.noninteractive_application(_application, author)
async def interactive_application(self, author: discord.Member): async def interactive_application(self, author: discord.Member):
"""Ask the user several questions to create an application.""" """Ask the user several questions to create an application."""
@ -53,16 +51,10 @@ class Recruitment(commands.Cog):
# Send a confirmation message to the author # Send a confirmation message to the author
await author.send("Thank you for submitting your application!") await author.send("Thank you for submitting your application!")
async def noninteractive_application(self, application_text: str, author: discord.Member):
"""Send a non-interactive application."""
application_channel = self.bot.get_channel(application_channel_id)
await application_channel.send(application_text)
await author.send("Thank you for submitting your application!")
async def format_application(self, answers: List[str], author: discord.Member) -> discord.Embed: async def format_application(self, answers: List[str], author: discord.Member) -> discord.Embed:
"""Format the application answers into an embed.""" """Format the application answers into an embed."""
embed = discord.Embed(title=f"Application from {author.display_name}", color=discord.Color.green()) embed = discord.Embed(title=f"Application from {author.display_name}", color=discord.Color.green())
embed.add_field(name="Name", value=author.name) embed.add_field(name="Name", value=answers[0])
embed.add_field(name="Discord ID", value=author.id) embed.add_field(name="Discord ID", value=author.id)
embed.add_field(name="Age", value=answers[1]) embed.add_field(name="Age", value=answers[1])
embed.add_field(name="Reason wishing to become a member:", value=answers[2]) embed.add_field(name="Reason wishing to become a member:", value=answers[2])