npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

discord-tickets-pro

v1.0.5

Published

Create discord tickets with ease!

Downloads

45

Readme

discord-tickets-pro

Discord-tickets-pro is a powerful javascript module for create easely tickets from your discord bot. You can join my discord server for help and support me

Instalation

Use npm i discord-tickets-pro to install the module

Get started

Send panel

You can create send the panel ticket using the TicketPanelEmbed:

const panel = new TicketPanelEmbed(Client)
            .setChannel(message.channel)
            .setComponents([
                new Discord.ActionRowBuilder()
                    .setComponents([
                        new Discord.ButtonBuilder()
                            .setLabel("Open a ticket")
                            .setEmoji("🎫")
                            .setStyle(Discord.ButtonStyle.Primary)
                            .setCustomId("ticketOpen")
                    ])
            ])
            .setEmbeds([
                new Discord.EmbedBuilder()
                    .setTitle("Discord-tickets-pro")
                    .setDescription("Click the button to talk to the staff")
                    .setFooter({
                        text: `1.0.3`,
                        iconURL: Client.user.avatarURL()
                    })
            ])

            await panel.send()

Tickets manager (Create Ticket)

const members = interaction.guild.roles.cache.get("1173039883707764797").members.map(e => e.user)

        new TicketsManager(Client)
            .createTicket({
                guild: "guildId",
                interaction: interaction,
                components: [
                    new Discord.ActionRowBuilder()
                        .setComponents([
                            new Discord.ButtonBuilder()
                                .setEmoji("🚮")
                                .setStyle(Discord.ButtonStyle.Danger)
                                .setCustomId("ticketDelete"),
                            new Discord.ButtonBuilder()
                                .setCustomId("ticketArchive")
                                .setEmoji("⛔")
                                .setStyle(Discord.ButtonStyle.Primary),
                            new Discord.ButtonBuilder()
                                .setCustomId("ticketTranscript")
                                .setEmoji("🪪")
                                .setStyle(Discord.ButtonStyle.Secondary)
                        ])
                ],
                accessMembers: members, //user objects (Array)
                embeds: [
                    new Discord.EmbedBuilder()
                        .setTitle("Discord-tickets-pro")
                        .setDescription(`<@${interaction.user.id}> have open a ticket.`)
                ],
                parentId: "1222274711182901349" // if null, the ticket will be in a thread
            })

Tickets manager (Archive Ticket)

⚠️ This method is reserved for channel not threads ⚠️ This method will close the ticket (no delete it), the manager will :

  • Rename the channel (ticket- -> closed-)
  • Deny the member who open the ticket the permission of view the channel
  • Move to the given channel parent
new TicketsManager(Client)
            .closeTicket({
                interaction: interaction,
                channel: interaction.channel,
                ticketCreatorId: "memberId", // the Id of the member who opened the ticket
                archiveParent: interaction.channel.parent // the channel parent object, can be null
            })

Tickets manager (Create Transcript)

This method use an external module

new TicketsManager(Client)
            .createTranscript({
                channel: interaction.channel, // the channel to "copy" in the transcript
                transcriptChannel: interaction.channel // channel object
            })

Tickets manager (Delete Ticket)

⚠️ This method will delete the ticket, you can access the channel after ⚠️

new TicketsManager(Client)
            .deleteTicket({
                channel: interaction.channel,
                interaction: interaction
            })

Images

The images are corresponding to the exemple code

alt text

image