Skip to content

Commit 9ff281e

Browse files
committed
Cache fix and Better pages
1 parent 2b0a5aa commit 9ff281e

File tree

3 files changed

+49
-7
lines changed

3 files changed

+49
-7
lines changed

lib/bot/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
from discord.ext.commands import AutoShardedBot
1717
from discord.ext.commands.errors import CommandNotFound, BadArgument
1818

19+
from lib.cache import Cache
1920
from lib.config import Config
2021
from lib.db import DB
2122
from lib.progress import Progress, Timer, Loading
@@ -41,7 +42,7 @@ class Bot(AutoShardedBot):
4142
def __init__(self, shards: list[int], version: str):
4243
self.config: Config = Config()
4344
self.db: DB = DB()
44-
self.cache: dict = dict()
45+
self.cache: Cache = Cache()
4546
self.tasks = AsyncIOScheduler(timezone=str(tzlocal.get_localzone()))
4647
self.shards_ready = False
4748
self.ready = False

lib/cache/__init__.py

+43-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,45 @@
1-
from lib.levels import Player
1+
import json
2+
3+
4+
class Get:
5+
def __init__(self, parent):
6+
self.parent: Cache = parent
7+
8+
def __getattribute__(self, key):
9+
parent: Cache = super().__getattribute__("parent")
10+
if key in parent.data.keys():
11+
_get_item = super().__getattribute__("_get_item")
12+
return lambda: _get_item(key)
13+
return super().__getattribute__(key)
14+
15+
def _get_item(self, key):
16+
return self.parent.data.get(key)
17+
18+
19+
class Set:
20+
def __init__(self, parent):
21+
self.parent: Cache = parent
22+
23+
def __getattribute__(self, key):
24+
if key in super().__getattribute__("__dict__"):
25+
return super().__getattribute__(key)
26+
_set_item = super().__getattribute__("_set_item")
27+
return lambda value: _set_item(key, value)
28+
29+
def _set_item(self, key, value):
30+
self.parent._data[key] = value
31+
232

333
class Cache:
4-
levels: dict[str, Player]
34+
_data = {}
35+
36+
def __init__(self):
37+
self.get: Get = Get(self)
38+
self.set: Set = Set(self)
39+
40+
@property
41+
def data(self):
42+
return self._data
43+
44+
def __str__(self):
45+
return json.dumps(self._data, indent=4)

lib/pages/__init__.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def handle_buttons(self):
4848
self.previous.disabled = self.current_page == 0
4949
self.next.disabled = self.current_page == self.total_page_count - 1
5050

51-
@discord.ui.button(emoji=discord.PartialEmoji(name="\U000023ee"), disabled=True)
51+
@discord.ui.button(label="<<", disabled=True, style=discord.ButtonStyle.blurple)
5252
async def first(self, interaction: discord.Interaction, _):
5353
if interaction.user != self.ctx.user:
5454
embed = discord.Embed(description="You cannot control this pagination because you did not execute it.",
@@ -59,7 +59,7 @@ async def first(self, interaction: discord.Interaction, _):
5959
self.counter.label = f"{self.current_page + 1}/{self.total_page_count}"
6060
await interaction.response.edit_message(embed=self.pages[self.current_page], view=self)
6161

62-
@discord.ui.button(emoji=discord.PartialEmoji(name="\U000025c0"), disabled=True)
62+
@discord.ui.button(label="<", disabled=True, style=discord.ButtonStyle.red)
6363
async def previous(self, interaction: discord.Interaction, _):
6464
if interaction.user != self.ctx.user:
6565
embed = discord.Embed(description="You cannot control this pagination because you did not execute it.",
@@ -74,7 +74,7 @@ async def previous(self, interaction: discord.Interaction, _):
7474
async def counter(self, interaction: discord.Interaction, button: discord.Button):
7575
pass
7676

77-
@discord.ui.button(emoji=discord.PartialEmoji(name="\U000025b6"))
77+
@discord.ui.button(label=">", style=discord.ButtonStyle.green)
7878
async def next(self, interaction: discord.Interaction, _):
7979
if interaction.user != self.ctx.user:
8080
embed = discord.Embed(description="You cannot control this pagination because you did not execute it.",
@@ -85,7 +85,7 @@ async def next(self, interaction: discord.Interaction, _):
8585
self.counter.label = f"{self.current_page + 1}/{self.total_page_count}"
8686
await interaction.response.edit_message(embed=self.pages[self.current_page], view=self)
8787

88-
@discord.ui.button(emoji=discord.PartialEmoji(name="\U000023ed"))
88+
@discord.ui.button(label=">>", style=discord.ButtonStyle.blurple)
8989
async def last(self, interaction: discord.Interaction, _):
9090
if interaction.user != self.ctx.user:
9191
embed = discord.Embed(description="You cannot control this pagination because you did not execute it.",

0 commit comments

Comments
 (0)