1
+ from typing import List , Union
2
+ import discord
3
+ from discord .abc import Messageable
4
+ from pycord_components import (
5
+ PycordComponents ,
6
+ Button ,
7
+ ButtonStyle ,
8
+ Select ,
9
+ SelectOption ,
10
+ Interaction ,
11
+ )
12
+
13
+ from .errors import MissingAttributeException ,InvaildArgumentException
14
+ from discord .ext import commands
15
+ class Paginator :
16
+ def __init__ (
17
+ self ,
18
+ client : PycordComponents ,
19
+ channel : Messageable ,
20
+ ctx : Interaction ,
21
+ contents : List [str ] = None ,
22
+ embeds : List [discord .Embed ] = None ,
23
+ use_select : bool = False ,
24
+ only : discord .ext .commands .Context .author = None ,
25
+ desc : dict = None
26
+ ):
27
+ self .context = ctx
28
+ self .client = client
29
+ self .channel = channel
30
+ self .contents = contents
31
+ self .embeds = embeds
32
+ self .use_select = use_select
33
+ self .index = 0
34
+ self .only = only
35
+ self .desc = desc
36
+
37
+ if self .contents is not None and self .embeds is not None :
38
+ raise MissingAttributeException ("You can't use contents and embeds at once!" )
39
+
40
+ if self .contents is None and self .embeds is None :
41
+ raise MissingAttributeException ("Both contents and embeds are None!" )
42
+ if self .contents is not None or self .embeds is not None and self .desc is None :
43
+ raise InvaildArgumentException ("Contents or embeds can't be None when desc is None." )
44
+
45
+ if self .embeds is not None and len (self .embeds ) != len (self .desc ):
46
+ raise InvaildArgumentException ("The number of embeds and desc do not match each other!" )
47
+ if self .contents is not None and len (self .contents ) != len (self .desc ):
48
+ raise InvaildArgumentException ("The number of contents and desc do not match each other!" )
49
+
50
+
51
+ def get_components (self ):
52
+ if self .embeds == None :
53
+ if self .use_select :
54
+ keys = []
55
+ values = []
56
+ for key ,value in self .desc :
57
+ keys .append (key )
58
+ values .append (value )
59
+ return [
60
+ self .client .add_callback (
61
+ Select (
62
+ custom_id = "paginator_select" ,
63
+ options = [
64
+ SelectOption (
65
+ label = keys [i ], value = str (i ), default = keys [i ] == self .index ,description = values [i ]
66
+ )
67
+ for i in range (len (self .contents ))
68
+ ],
69
+ ),
70
+ self .select_callback ,
71
+ )
72
+ ]
73
+ else :
74
+ return [
75
+ [ self .client .add_callback (
76
+ Button (style = ButtonStyle .blue , emoji = "⏮" ),
77
+ self .button_first_callback ,
78
+ ),
79
+ self .client .add_callback (
80
+ Button (style = ButtonStyle .blue , emoji = "◀️" ),
81
+ self .button_left_callback ,
82
+ ),
83
+ Button (
84
+ label = f"Page { self .index + 1 } /{ len (self .contents )} " ,
85
+ disabled = True ,
86
+ ),
87
+ self .client .add_callback (
88
+ Button (style = ButtonStyle .blue , emoji = "▶️" ),
89
+ self .button_right_callback ,
90
+ ),
91
+ self .client .add_callback (
92
+ Button (style = ButtonStyle .blue , emoji = "⏭" ),
93
+ self .button_last_callback ,
94
+ ),
95
+ ]
96
+ ]
97
+ else :
98
+ if self .use_select :
99
+ keys = []
100
+ values = []
101
+ for key , value in self .desc .items ():
102
+ keys .append (key )
103
+ values .append (value )
104
+ return [
105
+ self .client .add_callback (
106
+ Select (
107
+ custom_id = "paginator_select" ,
108
+ options = [
109
+ SelectOption (
110
+ label = keys [i ], value = str (i ), default = keys [i ] == self .index ,description = values [i ]
111
+ )
112
+ for i in range (len (self .embeds ))
113
+ ],
114
+ ),
115
+ self .select_callback ,
116
+ )
117
+ ]
118
+ else :
119
+ return [
120
+ [self .client .add_callback (
121
+ Button (style = ButtonStyle .blue , emoji = "⏮" ),
122
+ self .button_first_callback ,
123
+ ),
124
+ self .client .add_callback (
125
+ Button (style = ButtonStyle .blue , emoji = "◀️" ),
126
+ self .button_left_callback ,
127
+ ),
128
+ Button (
129
+ label = f"Page { self .index + 1 } /{ len (self .embeds )} " ,
130
+ disabled = True ,
131
+ ),
132
+ self .client .add_callback (
133
+ Button (style = ButtonStyle .blue , emoji = "▶️" ),
134
+ self .button_right_callback ,
135
+ ),
136
+ self .client .add_callback (
137
+ Button (style = ButtonStyle .blue , emoji = "⏭" ),
138
+ self .button_last_callback ,
139
+ ),
140
+ ]
141
+ ]
142
+
143
+
144
+
145
+ async def start (self ):
146
+ if self .embeds == None :
147
+ self .msg = await self .channel .send (
148
+ content = self .contents [self .index ], components = self .get_components ()
149
+ )
150
+ else :
151
+ self .msg = await self .channel .send (
152
+ embed = self .embeds [self .index ], components = self .get_components ()
153
+ )
154
+
155
+ async def select_callback (self , inter : Interaction ):
156
+ self .index = int (inter .values [0 ])
157
+ if self .embeds == None :
158
+ await inter .edit_origin (
159
+ content = self .contents [self .index ], components = self .get_components ()
160
+ )
161
+ else :
162
+ await inter .edit_origin (
163
+ embed = self .embeds [self .index ], components = self .get_components ()
164
+ )
165
+ async def button_first_callback (self , inter : Interaction ):
166
+ if self .index == 0 :
167
+ pass
168
+ else :
169
+ self .index = 0
170
+
171
+ await self .button_callback (inter )
172
+
173
+ async def button_left_callback (self , inter : Interaction ):
174
+ if self .index == 0 :
175
+ if self .embeds == None :
176
+ self .index = len (self .contents ) - 1
177
+ else :
178
+ self .index = len (self .embeds ) - 1
179
+ else :
180
+ self .index -= 1
181
+
182
+ await self .button_callback (inter )
183
+
184
+ async def button_right_callback (self , inter : Interaction ):
185
+ if self .embeds == None :
186
+ if self .index == len (self .contents ) - 1 :
187
+ self .index = 0
188
+ else :
189
+ self .index += 1
190
+ else :
191
+ if self .index == len (self .embeds ) - 1 :
192
+ self .index = 0
193
+ else :
194
+ self .index += 1
195
+
196
+ await self .button_callback (inter )
197
+
198
+ async def button_last_callback (self , inter : Interaction ):
199
+ if self .embeds == None :
200
+ if self .index == len (self .contents ) - 1 :
201
+ pass
202
+ else :
203
+ self .index = len (self .contents ) - 1
204
+ else :
205
+ if self .index == len (self .embeds ) - 1 :
206
+ pass
207
+ else :
208
+ self .index = len (self .embeds ) - 1
209
+
210
+ await self .button_callback (inter )
211
+
212
+ async def button_callback (self , inter : Interaction ):
213
+ if not self .only == None :
214
+ if inter .user .id == self .only .id and inter .message .id != self .context .message .id :
215
+ if self .embeds == None :
216
+ await inter .edit_origin (
217
+ content = self .contents [self .index ], components = self .get_components ()
218
+ )
219
+ else :
220
+ await inter .edit_origin (
221
+ embed = self .embeds [self .index ], components = self .get_components ()
222
+ )
223
+ else :
224
+ if self .embeds == None :
225
+ await inter .edit_origin (
226
+ content = self .contents [self .index ], components = self .get_components ()
227
+ )
228
+ else :
229
+ await inter .edit_origin (
230
+ embed = self .embeds [self .index ], components = self .get_components ()
231
+ )
0 commit comments