-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathButtons.py
269 lines (219 loc) · 11.7 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
import nextcord
async def testinter(interaction, ctx):
if interaction.user != ctx.author:
await interaction.response.send_message("Du kannst dieses Dialogfeld nicht benutzen", ephemeral=True)
return False
return True
class PageButtons(nextcord.ui.View): # buttons für d siitene
""""Diese Buttons sind für den outlook-command. Dabei hat es 5 select-buttons (mit welchen man ein bestimmtes
Element vom Outlook auswählen kann), sowie 4 Buttons fürs blättern. Dabei gibt es jeweils einen knopf für 1 Seite
weiter zurück, sowie je einen Knopf für ganz nach hinten/vorne."""
def __init__(self, results, currentpage, ctx):
super().__init__(timeout=None) # timeout macht eifach das d buttons nach 2 minute nümme chöi drückt wärde.
self.currentpage = currentpage
self.ctx = ctx
self.results = results
self.left = False
self.right = False
self.select = 0
self.bigleft.disabled = self.currentpage == 0
self.leftbutton.disabled = self.currentpage == 0
self.rightbutton.disabled = (self.currentpage + 1) >= len(results) / 5 # mit [BUTTON].disabled chame d disability vomne button wächsle. det machi hie für dasme nit cha out of bounds gah.
self.bigright.disabled = (self.currentpage + 1) >= len(results) / 5
for button in self.children:
label = button.__str__().split(" ")[5].split("=")[1][1:-1]
if label not in ["<<", "<", ">", ">>"] and int(label) > len(results)-(currentpage*5): # wider zum prevente das me out of bounds geit, i däm fau das me nid iwie ds item 4 selected wo gar nid da isch.
button.disabled = True
@nextcord.ui.button(label="1", style=nextcord.ButtonStyle.primary)
async def Select1(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.select = 0
self.stop()
@nextcord.ui.button(label="2", style=nextcord.ButtonStyle.primary)
async def Select2(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.select = 1
self.stop()
@nextcord.ui.button(label="3", style=nextcord.ButtonStyle.primary)
async def Select3(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.select = 2
self.stop()
@nextcord.ui.button(label="4", style=nextcord.ButtonStyle.primary)
async def Select4(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.select = 3
self.stop()
@nextcord.ui.button(label="5", style=nextcord.ButtonStyle.primary)
async def Select5(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.select = 4
self.stop()
@nextcord.ui.button(label="<<", style=nextcord.ButtonStyle.primary)
async def bigleft(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.currentpage = 0
self.left = True
self.stop()
@nextcord.ui.button(label="<", style=nextcord.ButtonStyle.primary)
async def leftbutton(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.currentpage -= 1
self.left = True
self.stop()
@nextcord.ui.button(label=">", style=nextcord.ButtonStyle.primary)
async def rightbutton(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.currentpage += 1
self.right = True
self.stop()
@nextcord.ui.button(label=">>", style=nextcord.ButtonStyle.primary)
async def bigright(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.currentpage = int(len(self.results)/5) + (len(self.results) % 5>0)-1
self.right = True
self.stop()
class Selectionmode(nextcord.ui.View):
"""
Wenn man ein Item mit den obrigen knöpfen ausgewählt hat, kann man hier auswählen, was man mite dem Item tun will.
Es gibt einen Knopf, um das Element zu löschen, einen um es zu editieren und einen zum wieder zur outlook-sicht
zurückzugelangen."""
def __init__(self, ctx):
super().__init__(timeout=120.0)
self.edit = False
self.delete = False
self.goback = False
self.ctx = ctx
@nextcord.ui.button(label="Edit", style=nextcord.ButtonStyle.primary)
async def edit(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.edit = True
self.stop()
@nextcord.ui.button(label="Delete", style=nextcord.ButtonStyle.red)
async def delete(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.delete = True
self.stop()
@nextcord.ui.button(label="Go back", style=nextcord.ButtonStyle.grey)
async def goback(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.goback = True
self.stop()
class Confirm(nextcord.ui.View):
"""
Fragt nach einer Bestätigung für etw.
"""
def __init__(self, ctx):
super().__init__(timeout=120.0)
self.confirm = False
self.ctx = ctx
@nextcord.ui.button(label="Ja", style=nextcord.ButtonStyle.green)
async def confirm(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.confirm = True
self.stop()
@nextcord.ui.button(label="Nein", style=nextcord.ButtonStyle.red)
async def cancel(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.confirm = False
self.stop()
class EditButtons(nextcord.ui.View):
"""Das ist für das Editieren eines Items. Mit den unteren Knöpfen fragt man nach, was man genau editieren möchte."""
def __init__(self, ctx):
super().__init__(timeout=120.0)
self.edit = []
self.goback = False
self.ctx = ctx
@nextcord.ui.button(label="Kategorie", style=nextcord.ButtonStyle.primary)
async def kategorie(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.edit.append("kategorie")
self.stop()
@nextcord.ui.button(label="Aufgabe", style=nextcord.ButtonStyle.primary)
async def aufgabe(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.edit.append("aufgabe")
self.stop()
@nextcord.ui.button(label="Datum", style=nextcord.ButtonStyle.primary)
async def datum(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.edit.append("datum")
self.stop()
@nextcord.ui.button(label="Fach", style=nextcord.ButtonStyle.primary)
async def fach(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.edit.append("fach")
self.stop()
@nextcord.ui.button(label="Zugriff", style=nextcord.ButtonStyle.primary)
async def access(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.edit.append("access")
self.stop()
@nextcord.ui.button(label="Zurück", style=nextcord.ButtonStyle.gray)
async def goback(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.goback = True
self.stop()
class TestOrHA(nextcord.ui.View):
"""Diese Knöpfe sind da für wenn man ein neues Item erstellen will. Diese beiden Buttons fragen nach, ob man einen
Test oder eine Hausaufgabe eintragen will."""
def __init__(self, ctx):
super().__init__(timeout=120.0)
self.choice = "Hausaufgabe"
self.ctx = ctx
@nextcord.ui.button(label="Hausaufgabe", style=nextcord.ButtonStyle.primary)
async def Hausaufgabe(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.choice = "Hausaufgabe"
self.stop()
@nextcord.ui.button(label="Test", style=nextcord.ButtonStyle.primary)
async def Test(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.choice = "Test"
self.stop()
@nextcord.ui.button(label="Unspezifisch", style=nextcord.ButtonStyle.primary)
async def Nocateg(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.choice = ""
self.stop()
class ManageItemAccess(nextcord.ui.View):
"""Wird geregelt wer dieses Item sehen kann, aka ob es privat ist,
für alle, oder nur für die jeweiligen SF oder EF."""
def __init__(self, ctx):
super().__init__(timeout=120.0)
self.ctx = ctx
self.access = "all"
# wede diräkt mitem bot redisch, de chaner d ufgab nid uf SF oder EF restricte wöuer d serverdate nid het.
if self.ctx.channel.__str__().startswith("Direct Message"):
self.OnlyEF.disabled = True
self.OnlySF.disabled = True
@nextcord.ui.button(label="Für Alle", style=nextcord.ButtonStyle.primary)
async def All(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.access = "all"
self.stop()
@nextcord.ui.button(label="Für mein SF", style=nextcord.ButtonStyle.primary)
async def OnlySF(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
SF = "all"
for role in self.ctx.author.roles:
if role.name.lower().startswith("sf"):
SF = role.name
self.access = SF
self.stop()
@nextcord.ui.button(label="Für mein EF", style=nextcord.ButtonStyle.primary)
async def OnlyEF(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
EF = "all"
for role in self.ctx.author.roles:
if role.name.lower().startswith("ef"):
EF = role.name
self.access = EF
self.stop()
self.access = EF
self.stop()
@nextcord.ui.button(label="Nur für mich", style=nextcord.ButtonStyle.primary)
async def Private(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
if await testinter(ctx=self.ctx, interaction=interaction):
self.access = "private"
self.stop()