Added page browsing

This commit is contained in:
Robert 2020-08-11 13:25:36 +02:00
parent 6290a314df
commit c2ef462ed7

View file

@ -22,6 +22,7 @@ class Search(commands.Cog):
def __init__(self, bot: commands.Bot): def __init__(self, bot: commands.Bot):
self.bot = bot self.bot = bot
self.activeObject = None self.activeObject = None
self.latestMessage = 0
async def createEmbed(self): async def createEmbed(self):
response = self.activeObject.response response = self.activeObject.response
@ -56,12 +57,24 @@ class Search(commands.Cog):
@commands.Cog.listener() @commands.Cog.listener()
async def on_reaction_add(self, reaction, user): async def on_reaction_add(self, reaction, user):
message = reaction.message
if message.id != self.latestMessage:
return
if user == self.bot.user: if user == self.bot.user:
return return
if reaction.me: if reaction.me:
if reaction.emoji == "⬅️": if reaction.emoji == "⬅️":
pass self.activeObject.prev()
if reaction.emoji == "➡️":
self.activeObject.next()
embed = await self.createEmbed()
await message.edit(embed=embed)
await reaction.remove(user)
@commands.command(name="search", description="Searches Jisho", usage="<query>", aliases=["s"]) @commands.command(name="search", description="Searches Jisho", usage="<query>", aliases=["s"])
@ -73,6 +86,7 @@ class Search(commands.Cog):
self.activeObject = JishoObject(query) self.activeObject = JishoObject(query)
embed = await self.createEmbed() embed = await self.createEmbed()
message = await ctx.send(embed=embed) message = await ctx.send(embed=embed)
self.latestMessage = message.id
await message.add_reaction("⬅️") await message.add_reaction("⬅️")
await message.add_reaction("➡️") await message.add_reaction("➡️")