-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathButtons.py
232 lines (179 loc) · 6.51 KB
/
Buttons.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
from btns_menus.builds.button_ import Btn, SButton, DEFAULT_TIMEOUT
from typing import *
import discord
from discord import ui
class SingleButton:
def __init__(self, author: discord.Member, button1: SButton, /, timeout: Optional[float] = DEFAULT_TIMEOUT):
"""
Responsive Button
Args:
author: Interaction User
button1: Takes Button Type SButton
timeout: Interaction Timeout
"""
self.author = author
self.timeout = timeout
self.btn1 = button1
if self.btn1.author is None:
self.btn1.update(author=self.author)
self.root_ = lambda: SingleButton(
self.author, self.btn1, timeout=self.timeout)
def view(self) -> ui.View:
"""
Returns:
view: discord.ui.View
"""
view_ = ui.View(timeout=self.timeout)
if not self.btn1.hidden:
view_.add_item(Btn(self.root_, self.btn1))
return view_
class DuoButton:
def __init__(self, author: discord.Member, button1: SButton, button2: SButton,
/, timeout: Optional[float] = DEFAULT_TIMEOUT):
"""
Responsive Buttons
Args:
author: Interaction User
button1: Takes Button Type SButton
button2: Takes Button Type SButton
timeout: Interaction Timeout
"""
self.author = author
self.timeout = timeout
self.btns = [button1, button2]
for btn_ in self.btns:
if btn_.author is None:
btn_.update(author=self.author)
self.root_ = lambda: DuoButton(
self.author, self.btns[0], self.btns[1], timeout=self.timeout)
def view(self) -> ui.View:
"""
Returns:
view: discord.ui.View
"""
view_ = ui.View(timeout=self.timeout)
for btn_ in self.btns:
if not btn_.hidden:
view_.add_item(Btn(self.root_, btn_))
return view_
class TrioButton:
def __init__(self, author: discord.Member, button1: SButton, button2: SButton, button3: SButton,
/, timeout: Optional[float] = DEFAULT_TIMEOUT):
"""
Responsive Buttons
Args:
author: Interaction User
button1: Takes Button Type SButton
button2: Takes Button Type SButton
button3: Takes Button Type SButton
timeout: Interaction Timeout
"""
self.author = author
self.timeout = timeout
self.btns = [button1, button2, button3]
for btn_ in self.btns:
if btn_.author is None:
btn_.update(author=self.author)
self.root_ = lambda: TrioButton(
self.author, self.btns[0], self.btns[1], self.btns[2], timeout=self.timeout)
def view(self) -> ui.View:
"""
Returns:
view: discord.ui.View
"""
view_ = ui.View(timeout=self.timeout)
for btn_ in self.btns:
if not btn_.hidden:
view_.add_item(Btn(self.root_, btn_))
return view_
class QuartetButton:
def __init__(self, author: discord.Member, button1: SButton, button2: SButton, button3: SButton, button4: SButton,
/, timeout: Optional[float] = DEFAULT_TIMEOUT):
"""
Responsive Buttons
Args:
author: Interaction User
button1: Takes Button Type SButton
button2: Takes Button Type SButton
button3: Takes Button Type SButton
button4: Takes Button Type SButton
timeout: Interaction Timeout
"""
self.author = author
self.timeout = timeout
self.btns = [button1, button2, button3, button4]
for btn_ in self.btns:
if btn_.author is None:
btn_.update(author=self.author)
self.root_ = lambda: QuartetButton(self.author, self.btns[0], self.btns[1],
self.btns[2], self.btns[3], timeout=self.timeout)
def view(self) -> ui.View:
"""
Returns:
view: discord.ui.View
"""
view_ = ui.View(timeout=self.timeout)
for btn_ in self.btns:
if not btn_.hidden:
view_.add_item(Btn(self.root_, btn_))
return view_
class QuintetButton:
def __init__(self, author: discord.Member, button1: SButton, button2: SButton,
button3: SButton, button4: SButton, button5: SButton,
/, timeout: Optional[float] = DEFAULT_TIMEOUT):
"""
Responsive Buttons
Args:
author: Interaction User
button1: Takes Button Type SButton
button2: Takes Button Type SButton
button3: Takes Button Type SButton
button4: Takes Button Type SButton
button5: Takes Button Type SButton
timeout: Interaction Timeout
"""
self.author = author
self.timeout = timeout
self.btns = [button1, button2, button3, button4, button5]
for btn_ in self.btns:
if btn_.author is None:
btn_.update(author=self.author)
self.root_ = lambda: QuintetButton(self.author, self.btns[0], self.btns[1], self.btns[2],
self.btns[3], self.btns[4], timeout=self.timeout)
def view(self) -> ui.View:
"""
Returns:
view: discord.ui.View
"""
view_ = ui.View(timeout=self.timeout)
for btn_ in self.btns:
if not btn_.hidden:
view_.add_item(Btn(self.root_, btn_))
return view_
class MultiButton:
def __init__(self, author: discord.Member, buttons: List[SButton], /, timeout: Optional[float] = DEFAULT_TIMEOUT):
"""
Responsive Buttons
Args:
author: Interaction User
buttons: Takes Button Type SButton
timeout: Interaction Timeout
"""
self.author = author
self.timeout = timeout
self.btns = buttons
for btn_ in self.btns:
if btn_.author is None:
btn_.update(author=self.author)
self.root_ = lambda: MultiButton(
self.author, self.btns, timeout=self.timeout)
def view(self) -> ui.View:
"""
Returns:
view: discord.ui.View
"""
view_ = ui.View(timeout=self.timeout)
for btn_ in self.btns:
if not btn_.hidden:
view_.add_item(Btn(self.root_, btn_))
return view_