95 lines
4.6 KiB
Python
95 lines
4.6 KiB
Python
"""MIT License
|
|
|
|
Copyright (c) 2023 Vocard Development
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
"""
|
|
|
|
import discord
|
|
import function as func
|
|
|
|
class Select_message(discord.ui.Select):
|
|
def __init__(self, inbox):
|
|
options = [discord.SelectOption(label=f"{index}. {mail['title'][:50]}", description=mail['type'], emoji='✉️' if mail['type'] == 'invite' else '📢') for index, mail in enumerate(inbox, start=1) ]
|
|
|
|
super().__init__(
|
|
placeholder="Select a message to view ..",
|
|
options=options, custom_id='select'
|
|
)
|
|
|
|
async def callback(self, interaction: discord.Interaction):
|
|
self.view.current = self.view.inbox[int(self.values[0].split(". ")[0]) - 1]
|
|
await self.view.button_change(interaction)
|
|
|
|
class InboxView(discord.ui.View):
|
|
def __init__(self, author, inbox):
|
|
super().__init__(timeout=60)
|
|
self.author = author
|
|
self.inbox = inbox
|
|
self.response = None
|
|
self.newplaylist = []
|
|
|
|
self.current = None
|
|
self.add_item(Select_message(inbox))
|
|
|
|
def build_embed(self):
|
|
embed=discord.Embed(title=f"📭 All {self.author}'s Inbox",
|
|
description=f'Max Messages: {len(self.inbox)}/10' + '```%0s %2s %20s\n' % (" ", "ID:", "Title:") + '\n'.join('%0s %2s. %35s'% ('✉️' if mail['type'] == 'invite' else '📢', index, mail['title'][:35] + "...") for index, mail in enumerate(self.inbox, start=1)) + '```',
|
|
color=func.embed_color)
|
|
if self.current:
|
|
embed.add_field(name="Message Info:", value=f"```{self.current['description']}\nSender ID: {self.current['sender']}\nPlaylist ID: {self.current['referId']}\nInvite Time: {self.current['time'].strftime('%d-%m %H:%M:%S')}```")
|
|
return embed
|
|
|
|
async def button_change(self, interaction: discord.Interaction):
|
|
for child in self.children:
|
|
if child.custom_id in ['accept', 'dismiss']:
|
|
child.disabled = True if self.current is None else False
|
|
elif child.custom_id == "select":
|
|
child.options = [discord.SelectOption(label=f"{index}. {mail['title'][:50]}", description=mail['type'], emoji='✉️' if mail['type'] == 'invite' else '📢') for index, mail in enumerate(self.inbox, start=1) ]
|
|
|
|
if not self.inbox:
|
|
await interaction.response.edit_message(embed=self.build_embed(), view=None)
|
|
return self.stop()
|
|
await interaction.response.edit_message(embed=self.build_embed(), view=self)
|
|
|
|
async def on_timeout(self):
|
|
for child in self.children:
|
|
child.disabled = True
|
|
try:
|
|
await self.response.edit(view=self)
|
|
except:
|
|
pass
|
|
|
|
@discord.ui.button(label='Accept', style=discord.ButtonStyle.green, custom_id="accept", disabled=True)
|
|
async def accept_button(self, interaction: discord.Interaction, button: discord.ui.Button):
|
|
self.newplaylist.append(self.current)
|
|
self.inbox.remove(self.current)
|
|
self.current = None
|
|
await self.button_change(interaction)
|
|
|
|
@discord.ui.button(label='Dismiss', style=discord.ButtonStyle.red, custom_id="dismiss", disabled=True)
|
|
async def dismiss_button(self, interaction: discord.Interaction, button: discord.ui.Button):
|
|
self.inbox.remove(self.current)
|
|
self.current = None
|
|
await self.button_change(interaction)
|
|
|
|
@discord.ui.button(label='Click Me To Save The Changes', style=discord.ButtonStyle.blurple)
|
|
async def save_button(self, interaction: discord.Interaction, button: discord.ui.Button):
|
|
await self.response.edit(view=None)
|
|
self.stop() |