-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from hechfx/main
migrate role button system to JDA
- Loading branch information
Showing
7 changed files
with
470 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
235 changes: 235 additions & 0 deletions
235
...net/perfectdreams/loritta/helper/interactions/commands/vanilla/ButtonRoleSenderCommand.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,235 @@ | ||
package net.perfectdreams.loritta.helper.interactions.commands.vanilla | ||
|
||
import net.dv8tion.jda.api.interactions.components.buttons.Button | ||
import net.dv8tion.jda.api.interactions.components.buttons.ButtonStyle | ||
import net.perfectdreams.loritta.helper.LorittaHelper | ||
import net.perfectdreams.loritta.helper.utils.LorittaLandGuild | ||
import net.perfectdreams.loritta.helper.utils.buttonroles.LorittaCommunityRoleButtons | ||
import net.perfectdreams.loritta.helper.utils.buttonroles.LorittaCommunityRoleButtons.partialEmojiAsMention | ||
import net.perfectdreams.loritta.helper.utils.buttonroles.SparklyPowerRoleButtons | ||
import net.perfectdreams.loritta.helper.utils.extensions.toJDA | ||
import net.perfectdreams.loritta.morenitta.interactions.commands.* | ||
import net.perfectdreams.loritta.morenitta.interactions.commands.options.ApplicationCommandOptions | ||
import net.perfectdreams.loritta.morenitta.interactions.styled | ||
import java.awt.Color | ||
|
||
class ButtonRoleSenderCommand(val loritta: LorittaHelper) : SlashCommandDeclarationWrapper { | ||
override fun command() = slashCommand("buttonrolesender2", "Envia a mensagem de cargos no canal selecionado") { | ||
executor = ButtonRoleSenderCommandExecutor() | ||
} | ||
|
||
inner class ButtonRoleSenderCommandExecutor : LorittaSlashCommandExecutor() { | ||
inner class Options : ApplicationCommandOptions() { | ||
val channel = channel("channel", "Canal aonde a mensagem será enviada") | ||
} | ||
|
||
override val options = Options() | ||
|
||
override suspend fun execute(context: ApplicationCommandContext, args: SlashCommandArguments) { | ||
if (context.guildId == null) | ||
return | ||
|
||
val channel = args[options.channel] | ||
val guildId = context.guildId!! | ||
|
||
context.reply(true) { | ||
styled( | ||
"Enviando mensagem. Segure firme!!" | ||
) | ||
} | ||
|
||
when (guildId) { | ||
loritta.config.guilds.community.id -> { | ||
// ===[ CUSTOM COLORS ]=== | ||
context.sendMessage(channel.idLong) { | ||
embed { | ||
title = "Cores Personalizadas" | ||
color = Color(26, 160, 254).rgb | ||
|
||
description = """Escolha uma cor personalizada para o seu nome e, de brinde, receba um ícone do lado do seu nome relacionado com a cor que você escolheu aqui no servidor da Loritta! | ||
| | ||
|**Apenas disponível para usuários Premium da Loritta (<@&364201981016801281>)!** Ficou interessado? Então [clique aqui](https://loritta.website/br/donate)! | ||
""".trimMargin() | ||
|
||
thumbnail = "https://cdn.discordapp.com/attachments/358774895850815488/889932408177168394/gabriela_sortros_crop.png" | ||
} | ||
|
||
val chunkedRoleButtons = LorittaCommunityRoleButtons.colors.chunked(5) | ||
|
||
for (actionRow in chunkedRoleButtons) { | ||
actionRow( | ||
actionRow.map { | ||
Button.of( | ||
ButtonStyle.SECONDARY, | ||
"color-${LorittaLandGuild.LORITTA_COMMUNITY}:${it.roleId}", | ||
it.emoji.toJDA() | ||
) | ||
} | ||
) | ||
} | ||
} | ||
|
||
// ===[ CUSTOM ROLE ICONS ]=== | ||
context.sendMessage(channel.idLong) { | ||
embed { | ||
title = "Ícones Personalizados" | ||
color = Color(26, 160, 254).rgb | ||
|
||
description = """Escolha um ícone personalizado que irá aparecer ao lado do seu nome aqui no servidor da Loritta! O ícone personalizado irá substituir qualquer outro ícone que você possui! | ||
| | ||
|**Apenas disponível para usuários Premium da Loritta (<@&364201981016801281>) ou <@&655132411566358548>!** Ficou interessado? Então [clique aqui](https://loritta.website/br/donate)! Ou, se preferir, seja mais ativo no servidor para chegar no nível 10! | ||
""".trimMargin() | ||
|
||
thumbnail = "https://cdn.discordapp.com/emojis/853048446974033960.png?v=1" | ||
} | ||
|
||
val chunkedRoleButtons = LorittaCommunityRoleButtons.coolBadges.chunked(5) | ||
|
||
for (actionRow in chunkedRoleButtons) { | ||
actionRow( | ||
actionRow.map { | ||
Button.of( | ||
ButtonStyle.SECONDARY, | ||
"badge-${LorittaLandGuild.LORITTA_COMMUNITY}:${it.roleId}", | ||
it.emoji.toJDA() | ||
) | ||
} | ||
) | ||
} | ||
} | ||
|
||
// ===[ NOTIFICATIONS ]=== | ||
context.sendMessage(channel.idLong) { | ||
embed { | ||
title = "Cargos de Notificações" | ||
color = Color(26, 160, 254).rgb | ||
|
||
description = buildString { | ||
for (roleInfo in LorittaCommunityRoleButtons.notifications) { | ||
append("**") | ||
append(partialEmojiAsMention(roleInfo.emoji)) | ||
append(' ') | ||
append(roleInfo.label) | ||
append(':') | ||
append("**") | ||
append(' ') | ||
append(roleInfo.description) | ||
append('\n') | ||
append('\n') | ||
} | ||
} | ||
|
||
thumbnail = "https://cdn.discordapp.com/emojis/640141673531441153.png?v=1" | ||
} | ||
|
||
actionRow( | ||
LorittaCommunityRoleButtons.notifications.map { | ||
Button.of( | ||
ButtonStyle.SECONDARY, | ||
"notif-${LorittaLandGuild.LORITTA_COMMUNITY}:${it.roleId}", | ||
it.label, | ||
it.emoji.toJDA() | ||
) | ||
} | ||
) | ||
} | ||
} | ||
loritta.config.guilds.sparklyPower.id -> { | ||
// ===[ CUSTOM COLORS ]=== | ||
context.sendMessage(channel.idLong) { | ||
embed { | ||
title = "Cores Personalizadas" | ||
color = Color(26, 160, 254).rgb | ||
|
||
description = """Escolha uma cor personalizada para o seu nome e, de brinde, receba um ícone do lado do seu nome relacionado com a cor que você escolheu aqui no servidor da Loritta! | ||
| | ||
|**Apenas disponível para usuários VIPs (<@&332652664544428044>)!** Ficou interessado? Então [clique aqui](https://sparklypower.net/loja)! | ||
""".trimMargin() | ||
|
||
thumbnail = "https://cdn.discordapp.com/attachments/358774895850815488/889932408177168394/gabriela_sortros_crop.png" | ||
} | ||
|
||
val chunkedRoleButtons = SparklyPowerRoleButtons.colors.chunked(5) | ||
|
||
for (actionRow in chunkedRoleButtons) { | ||
actionRow( | ||
actionRow.map { | ||
Button.of( | ||
ButtonStyle.SECONDARY, | ||
"color-${LorittaLandGuild.SPARKLYPOWER}:${it.roleId}", | ||
it.emoji.toJDA() | ||
) | ||
} | ||
) | ||
} | ||
} | ||
|
||
// ===[ CUSTOM ROLE ICONS ]=== | ||
context.sendMessage(channel.idLong) { | ||
embed { | ||
title = "Ícones Personalizados" | ||
color = Color(26, 160, 254).rgb | ||
|
||
description = """Escolha um ícone personalizado que irá aparecer ao lado do seu nome aqui no servidor do SparklyPower! O ícone personalizado irá substituir qualquer outro ícone que você possui! | ||
| | ||
|**Apenas disponível para usuários VIPs (<@&332652664544428044>) ou <@&834625069321551892>!** Ficou interessado? Então [clique aqui](https://sparklypower.net/loja)! Ou, se preferir, seja mais ativo no servidor para chegar no nível 10! | ||
""".trimMargin() | ||
|
||
thumbnail = "https://cdn.discordapp.com/emojis/853048446974033960.png?v=1" | ||
} | ||
|
||
val chunkedRoleButtons = SparklyPowerRoleButtons.coolBadges.chunked(5) | ||
|
||
for (actionRow in chunkedRoleButtons) { | ||
actionRow( | ||
actionRow.map { | ||
Button.of( | ||
ButtonStyle.SECONDARY, | ||
"badge-${LorittaLandGuild.SPARKLYPOWER}:${it.roleId}", | ||
it.emoji.toJDA() | ||
) | ||
} | ||
) | ||
} | ||
} | ||
|
||
// ===[ NOTIFICATIONS ]=== | ||
context.sendMessage(channel.idLong) { | ||
embed { | ||
title = "Cargos de Notificações" | ||
color = Color(26, 160, 254).rgb | ||
|
||
description = buildString { | ||
for (roleInfo in SparklyPowerRoleButtons.notifications) { | ||
append("**") | ||
append(partialEmojiAsMention(roleInfo.emoji)) | ||
append(' ') | ||
append(roleInfo.label) | ||
append(':') | ||
append("**") | ||
append(' ') | ||
append(roleInfo.description) | ||
append('\n') | ||
append('\n') | ||
} | ||
} | ||
|
||
thumbnail = "https://cdn.discordapp.com/emojis/640141673531441153.png?v=1" | ||
} | ||
|
||
actionRow( | ||
SparklyPowerRoleButtons.notifications.map { | ||
Button.of( | ||
ButtonStyle.SECONDARY, | ||
"notif-${LorittaLandGuild.SPARKLYPOWER}:${it.roleId}", | ||
it.label, | ||
it.emoji.toJDA() | ||
) | ||
} | ||
) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.