Skip to content

Commit

Permalink
fix: update counters when transferring (closes #468)
Browse files Browse the repository at this point in the history
  • Loading branch information
eartharoid committed Aug 25, 2023
1 parent 77e5b45 commit d1e30ce
Showing 1 changed file with 33 additions and 26 deletions.
59 changes: 33 additions & 26 deletions src/commands/slash/transfer.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,29 +49,46 @@ module.exports = class TransferSlashCommand extends SlashCommand {
},
where: { id: interaction.channel.id },
});
const from = ticket.createdById;

await client.prisma.ticket.update({
data: {
createdBy: {
connectOrCreate: {
create: { id: member.id },
where: { id: member.id },
},
},
},
where: { id: interaction.channel.id },
});
const from = ticket.createdById;

const channelName = ticket.category.channelName
.replace(/{+\s?(user)?name\s?}+/gi, member.user.username)
.replace(/{+\s?(nick|display)(name)?\s?}+/gi, member.displayName)
.replace(/{+\s?num(ber)?\s?}+/gi, ticket.number === 1488 ? '1487b' : ticket.number);

await interaction.channel.edit({
name: channelName,
topic: `${member.toString()}${ticket.topic?.length > 0 ? ` | ${decrypt(ticket.topic)}` : ''}`,
});
await Promise.all([
client.prisma.ticket.update({
data: {
createdBy: {
connectOrCreate: {
create: { id: member.id },
where: { id: member.id },
},
},
},
where: { id: interaction.channel.id },
}),
interaction.channel.edit({
name: channelName,
topic: `${member.toString()}${ticket.topic?.length > 0 ? ` | ${decrypt(ticket.topic)}` : ''}`,
}),
interaction.channel.permissionOverwrites.edit(
member,
{
AttachFiles: true,
EmbedLinks: true,
ReadMessageHistory: true,
SendMessages: true,
ViewChannel: true,
},
),
]);

const $category = client.tickets.$count.categories[ticket.categoryId];
$category[from]--;
$category[member.id] ||= 0;
$category[member.id]++;

await interaction.editReply({
embeds: [
Expand All @@ -86,15 +103,5 @@ module.exports = class TransferSlashCommand extends SlashCommand {
],
});

await interaction.channel.permissionOverwrites.edit(
member,
{
AttachFiles: true,
EmbedLinks: true,
ReadMessageHistory: true,
SendMessages: true,
ViewChannel: true,
},
);
}
};

0 comments on commit d1e30ce

Please sign in to comment.