Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2024
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TypeScript 18.78 KB | Source Code | 0 0
  1. import { InfoEmbed } from '../modules/embeds';
  2. import { SlashCommandBuilder, ActionRowBuilder, ButtonBuilder } from '@discordjs/builders';
  3. import { ActionRow, ActionRowComponent, ButtonInteraction, ButtonStyle, CommandInteraction, ComponentType, ModalBuilder, ModalSubmitInteraction, SelectMenuBuilder, StringSelectMenuBuilder, StringSelectMenuOptionBuilder, TextInputBuilder, TextInputComponent, TextInputStyle } from 'discord.js';
  4. import footer from '../modules/embedComponents/footer'
  5. import { Job, Post } from '../modules/types';
  6. import { v4 as uuidv4 } from 'uuid'
  7. import { customIds, jobTypes, jobs, roles } from '../modules/data';
  8. import { getEmbedJob } from '../modules/helpers';
  9. import { addPost } from '../modules/db';
  10.  
  11. export const data = new SlashCommandBuilder()
  12.     .setName('use')
  13.     .setDescription('Opens the basic menu of the application.')
  14. export const options = {
  15.     cooldown: 10000
  16. }
  17.  
  18. export async function execute(interaction:CommandInteraction) {
  19.     let job: Post = {
  20.         jobId: uuidv4(),
  21.         job: 0,
  22.         jobCreatorId: interaction.user.id,
  23.         jobType: 0,
  24.         jobTitle: '',
  25.         jobDesc: '',
  26.         jobBudget: '',
  27.         jobDeadline: '',
  28.         jobLocation: '',
  29.         jobPortfolio: '',
  30.         jobApproved: false,
  31.         jobTimes: {
  32.             bump: Date.now(),
  33.             posted: Date.now(),
  34.         }
  35.     }
  36.     const paidJob = new ButtonBuilder()
  37.         .setCustomId('paidjob')
  38.         .setLabel('Post a Paid Job')
  39.         .setStyle(ButtonStyle.Primary)
  40.         .setEmoji({name: 'đź’Ľ'})
  41.     const commissionJob = new ButtonBuilder()
  42.         .setCustomId('commissionJob')
  43.         .setLabel('Post a Commission Job')
  44.         .setStyle(ButtonStyle.Primary)
  45.         .setEmoji({name: 'đź’°'})
  46.     const forHireAd = new ButtonBuilder()
  47.         .setCustomId('forhiread')
  48.         .setLabel('Post a For-Hire Ad')
  49.         .setStyle(ButtonStyle.Primary)
  50.         .setEmoji({name: 'đź“ť'})
  51.     const unpaidJob = new ButtonBuilder()
  52.         .setCustomId('unpaidJob')
  53.         .setLabel('Post an Unpaid Job')
  54.         .setStyle(ButtonStyle.Primary)
  55.         .setEmoji({name: '🤝'})
  56.     const VIPONLYLINE = new ButtonBuilder()
  57.         .setCustomId('viponlyline')
  58.         .setLabel('---------------------[VIP ONLY]---------------------')
  59.         .setStyle(ButtonStyle.Secondary)
  60.         .setDisabled(true)
  61.     const specialPost = new ButtonBuilder()
  62.         .setCustomId('specialPost')
  63.         .setLabel('Create Special Post')
  64.         .setStyle(ButtonStyle.Primary)
  65.         .setEmoji({name: 'đź’Ž'})
  66.     const row = new ActionRowBuilder<ButtonBuilder>()
  67.         .addComponents(paidJob, commissionJob)
  68.     const row2 = new ActionRowBuilder<ButtonBuilder>()
  69.         .addComponents(forHireAd, unpaidJob)
  70.     const row3 = new ActionRowBuilder<ButtonBuilder>()
  71.         .addComponents(VIPONLYLINE)
  72.     const row4 = new ActionRowBuilder<ButtonBuilder>()
  73.         .addComponents(specialPost)
  74.  
  75.     const embed = new InfoEmbed('<:white_info:1142840597745520762>â €Marketplace Informationâ €<:white_info:1142840597745520762>', "â €\n\
  76.    Discover a thriving freelance ecosystem at Jobs & Hiring, Market. Connect with clients, access projects, and elevate your freelancing journey with expert insights and a supportive community.\n\
  77.    \n\
  78.    \n\
  79.    <:flecha11:1141389220863299655>â €<#1129902067390099538>: Employers hire workers, paying for necessary tasks, which helps both. Workers earn money and bosses get work done.\n\
  80.    \n\
  81.    <:flecha11:1141389220863299655>â €<#1132688915686490203>: People do tasks without getting paid to learn, grow, or help others, supporting their growth and offering assistance.\n\
  82.    \n\
  83.    <:flecha11:1141389220863299655>â €<#1132688823785115799>: Skilled professionals offer their services for hire, showing expertise and talents in a dedicated section.\n\
  84.    \n\
  85.    <:flecha11:1141389220863299655>â €<#1132688945147285617>: Workers earn a portion from sales, added to their base pay, reflecting a slice of each sale's earnings.\n\
  86.    \n\
  87.    â €\n\
  88.    <:bullet:1139565912568111148>â €For detailed information, check: <#1141822304750411907>")
  89.         .setTitle('<:white_info:1142840597745520762>â €Marketplace Informationâ €<:white_info:1142840597745520762>')
  90.         .setImage('https://images-ext-1.discordapp.net/external/i6zbYkJhC2bvSoELqxUjMdHrj5leUI_WT8IrootrtQk/https/i.ibb.co/kgsRHJn/JHM-Banner.png?format=webp&quality=lossless')
  91.         .setFooter(null)
  92.     interaction.reply({embeds: [embed], components: [row, row2, row3, row4]})
  93.  
  94.     const collector = interaction.channel?.createMessageComponentCollector({ time: 720_000 });
  95.  
  96.     collector?.on('collect', async i => {
  97.         if (i.user.id === interaction.user.id) {
  98.             if(i.isButton()) {
  99.                 if(i.customId !== 'confirmBtn') {
  100.                     let modal = new ModalBuilder()
  101.                     let textInputs: Array<TextInputBuilder> = []
  102.                     let actionRow: ActionRowBuilder<TextInputBuilder>;
  103.                     if(i.customId === 'paidjob') {
  104.                         job.jobType = jobTypes[0].value
  105.                         const jobTitleText = new TextInputBuilder()
  106.                             .setCustomId('jobTitleText')
  107.                             .setLabel('Job Title')
  108.                             .setPlaceholder("What's this job about?")
  109.                             .setStyle(TextInputStyle.Short)
  110.                             .setRequired(true)
  111.                         const jobDescText = new TextInputBuilder()
  112.                             .setCustomId('jobDescText')
  113.                             .setLabel('Job Description')
  114.                             .setPlaceholder("Please share job details like responsibilities, experience or any specific qualifications or skills.")
  115.                             .setStyle(TextInputStyle.Paragraph)
  116.                             .setRequired(true)
  117.                         const jobBudgetText = new TextInputBuilder()
  118.                             .setCustomId('jobBudgetText')
  119.                             .setLabel('Job Budget')
  120.                             .setPlaceholder("What's your budget for this job?")
  121.                             .setStyle(TextInputStyle.Short)
  122.                             .setRequired(true)
  123.                         const jobDeadlineText = new TextInputBuilder()
  124.                             .setCustomId('jobDeadlineText')
  125.                             .setLabel('Job Deadline')
  126.                             .setPlaceholder("Enter a deadline for your job or N/A. (A Date Preferrably)")
  127.                             .setStyle(TextInputStyle.Short)
  128.                             .setRequired(false)
  129.                         const jobLocationText = new TextInputBuilder()
  130.                             .setCustomId('jobLocationText')
  131.                             .setLabel('Preferred Location')
  132.                             .setPlaceholder("Enter youre preferred location of applicants")
  133.                             .setStyle(TextInputStyle.Short)
  134.                             .setRequired(false)
  135.                        
  136.                         textInputs= [jobTitleText, jobDescText, jobBudgetText, jobDeadlineText, jobLocationText]
  137.        
  138.                         modal.setCustomId('paidJobModal')
  139.                         modal.setTitle('Create A Paid Job Post')
  140.                     } else if(i.customId === 'commissionJob') {
  141.                         job.jobType = jobTypes[1].value
  142.                         const jobTitleText = new TextInputBuilder()
  143.                             .setCustomId('jobTitleText')
  144.                             .setLabel('Title')
  145.                             .setPlaceholder("What's this job about?")
  146.                             .setStyle(TextInputStyle.Short)
  147.                             .setRequired(true)
  148.                         const jobDescText = new TextInputBuilder()
  149.                             .setCustomId('jobDescText')
  150.                             .setLabel('Description')
  151.                             .setPlaceholder("Please share job details like responsibilities, experience or any specific qualifications or skills.")
  152.                             .setStyle(TextInputStyle.Paragraph)
  153.                             .setRequired(true)
  154.                         const jobBudgetText = new TextInputBuilder()
  155.                             .setCustomId('jobBudgetText')
  156.                             .setLabel('Payment')
  157.                             .setPlaceholder("What percentage of commission you will give?")
  158.                             .setStyle(TextInputStyle.Short)
  159.                             .setRequired(true)
  160.                         const jobDeadlineText = new TextInputBuilder()
  161.                             .setCustomId('jobDeadlineText')
  162.                             .setLabel('Deadline')
  163.                             .setPlaceholder("Enter a deadline for your job or N/A. (A Date Preferrably)")
  164.                             .setStyle(TextInputStyle.Short)
  165.                             .setRequired(false)
  166.                        
  167.                         textInputs= [jobTitleText, jobDescText, jobBudgetText, jobDeadlineText]
  168.        
  169.                         modal.setCustomId('commissionJobModal')
  170.                         modal.setTitle('Create A Commission Job Post')
  171.                     } else if(i.customId === 'forhiread') {
  172.                         job.jobType = jobTypes[2].value
  173.                         const jobTitleText = new TextInputBuilder()
  174.                             .setCustomId('jobTitleText')
  175.                             .setLabel('Title')
  176.                             .setPlaceholder("What service you are offering?")
  177.                             .setStyle(TextInputStyle.Short)
  178.                             .setRequired(true)
  179.                         const jobDescText = new TextInputBuilder()
  180.                             .setCustomId('jobDescText')
  181.                             .setLabel('Description')
  182.                             .setPlaceholder("Please share detail about what you're offering. Tell us about your skills, experience and past work.")
  183.                             .setStyle(TextInputStyle.Paragraph)
  184.                             .setRequired(true)
  185.                         const jobPortfolioText = new TextInputBuilder()
  186.                             .setCustomId('jobPortfolioText')
  187.                             .setLabel('Your Portfolio')
  188.                             .setPlaceholder("Share Your portfolio link or previous work. if not available , enter N/A")
  189.                             .setStyle(TextInputStyle.Short)
  190.                             .setRequired(true)
  191.                         const jobBudgetText = new TextInputBuilder()
  192.                             .setCustomId('jobBudgetText')
  193.                             .setLabel('Payment Method')
  194.                             .setPlaceholder("What's your preferred payment method?")
  195.                             .setStyle(TextInputStyle.Short)
  196.                             .setRequired(true)
  197.                        
  198.                         textInputs= [jobTitleText, jobDescText, jobPortfolioText, jobBudgetText]
  199.        
  200.                         modal.setCustomId('forhireJobModal')
  201.                         modal.setTitle('Create A For-Hire Ad Post')
  202.                     } else if(i.customId === 'unpaidJob') {
  203.                         job.jobType = jobTypes[3].value
  204.                         const jobTitleText = new TextInputBuilder()
  205.                             .setCustomId('jobTitleText')
  206.                             .setLabel('Title')
  207.                             .setPlaceholder("What's this job about?")
  208.                             .setStyle(TextInputStyle.Short)
  209.                             .setRequired(true)
  210.                         const jobDescText = new TextInputBuilder()
  211.                             .setCustomId('jobDescText')
  212.                             .setLabel('Description')
  213.                             .setPlaceholder("Please share job details like responsibilities, experience or any specific qualifications or skills.")
  214.                             .setStyle(TextInputStyle.Paragraph)
  215.                             .setRequired(true)
  216.                         const jobDeadlineText = new TextInputBuilder()
  217.                             .setCustomId('jobDeadlineText')
  218.                             .setLabel('Deadline')
  219.                             .setPlaceholder("Enter a deadline for your job or N/A. (A Date Preferrably)")
  220.                             .setStyle(TextInputStyle.Short)
  221.                             .setRequired(false)
  222.                        
  223.                         textInputs= [jobTitleText, jobDescText, jobDeadlineText]
  224.        
  225.                         modal.setCustomId('unpaidJobModal')
  226.                         modal.setTitle('Create A Unpaid Job Post')
  227.                     } else if(i.customId === 'specialPost') {
  228.                         job.jobType = jobTypes[4].value
  229.                         const jobTitleText = new TextInputBuilder()
  230.                             .setCustomId('jobTitleText')
  231.                             .setLabel('Job Title')
  232.                             .setPlaceholder("What's this job about?")
  233.                             .setStyle(TextInputStyle.Short)
  234.                             .setRequired(true)
  235.                         const jobDescText = new TextInputBuilder()
  236.                             .setCustomId('jobDescText')
  237.                             .setLabel('Job Description')
  238.                             .setPlaceholder("Please share job details like responsibilities, experience or any specific qualifications or skills.")
  239.                             .setStyle(TextInputStyle.Paragraph)
  240.                             .setRequired(true)
  241.                         const jobBudgetText = new TextInputBuilder()
  242.                             .setCustomId('jobBudgetText')
  243.                             .setLabel('Job Budget')
  244.                             .setPlaceholder("What's your budget for this job?")
  245.                             .setStyle(TextInputStyle.Short)
  246.                             .setRequired(true)
  247.                         const jobDeadlineText = new TextInputBuilder()
  248.                             .setCustomId('jobDeadlineText')
  249.                             .setLabel('Job Deadline')
  250.                             .setPlaceholder("Enter a deadline for your job or N/A. (A Date Preferrably)")
  251.                             .setStyle(TextInputStyle.Short)
  252.                             .setRequired(false)
  253.                        
  254.                         textInputs= [jobTitleText, jobDescText, jobBudgetText, jobDeadlineText]
  255.        
  256.                         modal.setCustomId('vipJobPost')
  257.                         modal.setTitle('Create A VIP Job Post')
  258.                     }
  259.                     textInputs.map((textInput) => {
  260.                         actionRow = new ActionRowBuilder<TextInputBuilder>()
  261.                         .addComponents(textInput)
  262.                         modal.addComponents(actionRow)
  263.                     })
  264.                     await i.showModal(modal)
  265.                     const filter = (i: any) => i.customId === modal.data.custom_id
  266.                     await i.awaitModalSubmit({filter, time: 60_000})
  267.                         .then(mI => {
  268.                             const category = new InfoEmbed(`Select Post Category`, 'Please Select Your Post Category from down below')
  269.                             const dropdown = new StringSelectMenuBuilder()
  270.                                 .setCustomId('jobTypeDrop')
  271.                                 .setPlaceholder('Select your Job Type')
  272.                             jobs.map((job: Job) => {
  273.                                 dropdown.addOptions(
  274.                                     new StringSelectMenuOptionBuilder()
  275.                                         .setLabel(job.label)
  276.                                         .setEmoji({name: job.emoji})
  277.                                         .setValue(`${job.value}`)
  278.                                 )
  279.                             })
  280.                             const dropdownActionRow = new ActionRowBuilder<SelectMenuBuilder>().addComponents(dropdown)
  281.                             mI.reply({embeds: [category], components: [dropdownActionRow], ephemeral: true})
  282.                             customIds.jobDropdown.map((customIdJob) => {
  283.                                 try {
  284.                                     let fieldVal = mI.fields.getTextInputValue(customIdJob)
  285.                                     switch(customIdJob) {
  286.                                         case 'jobTitleText':
  287.                                             job.jobTitle = fieldVal
  288.                                         case 'jobDescText':
  289.                                             job.jobDesc = fieldVal
  290.                                         case 'jobBudgetText':
  291.                                             job.jobBudget = fieldVal
  292.                                         case 'jobDeadlineText':
  293.                                             job.jobDeadline = fieldVal
  294.                                         case 'jobLocationText':
  295.                                             job.jobLocation = fieldVal
  296.                                         case 'jobPortfolioText':
  297.                                             job.jobPortfolio = fieldVal
  298.                                     }
  299.                                 } catch {
  300.                                    
  301.                                 }
  302.                             })
  303.                         })
  304.                         .catch(console.error)
  305.                 } else {
  306.                     const member = await interaction.guild?.members.fetch(interaction.user)
  307.                     const hasRole = member?.roles.cache.has(roles.premium)
  308.                     const embed = await addPost(job, interaction.user.id, hasRole || false)
  309.                     return
  310.                 }
  311.             } else if (i.isStringSelectMenu()) {
  312.                 if(i.customId === 'jobTypeDrop') {
  313.                     job.job = parseInt(i.values.join(''))
  314.                     const confirmEmbed = getEmbedJob(job)
  315.  
  316.                     const confirmBtn = new ButtonBuilder().setCustomId('confirmBtn').setLabel('Confirm').setStyle(ButtonStyle.Danger)
  317.                     const cancelBtn = new ButtonBuilder().setCustomId('cancelBtn').setLabel('Cancel').setStyle(ButtonStyle.Secondary)
  318.                     const confirmCancelBtnRow = new ActionRowBuilder<ButtonBuilder>().addComponents(confirmBtn, cancelBtn)
  319.                     i.reply(
  320.                         {
  321.                             embeds: [confirmEmbed],
  322.                             components: [confirmCancelBtnRow],
  323.                             ephemeral: true,
  324.                         }
  325.                     )
  326.                 }
  327.             }
  328.         } else {
  329.             i.reply({ content: `These buttons aren't for you!`, ephemeral: true });
  330.        }
  331.    });
  332.    collector?.on('end', i => {
  333.        return
  334.    })
  335. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement