const container = new ContainerBuilder() .setAccentColor(0x00ff00) .addTextDisplayComponents(component => component.setContent('## Staff Management Panel\n**Available actions:**\n- **quarantine:** removes access to the user to see all channels and see members.\n- **chat blacklist:** blacklist from chatting anywhere excluding tickets.\n- **voice blacklist:** blacklist from joining or using anything in voice channels.\n- **change slowmode:** edit slowmode (in seconds)\n- **lock:** close all global channels for chatting, reacting, etc.\n- **unlock:** open all global channels.')) .addSeparatorComponents(component => component.setDivider(true)) .addActionRowComponents(component => component.setComponents( new StringSelectMenuBuilder() .setCustomId('staffManagePanel') .setPlaceholder('Choose an action') .addOptions( new StringSelectMenuOptionBuilder() .setLabel('Quarantine') .setValue('dss_panelsystem_quarantine'), new StringSelectMenuOptionBuilder() .setLabel('Chat Blacklist') .setValue('dss_panelsystem_chatbl'), new StringSelectMenuOptionBuilder) .setLabel('Voice Blacklist') .setValue('dss_panelsystem_voicebl'), new StringSelectMenuOptionBuilder() .setLabel('Change Slowmode') .setValue('dss_panelsystem_slowmode'), new StringSelectMenuOptionBuilder() .setLabel('Lock Server') .setValue('dss_panelsystem_lock'), new StringSelectMenuOptionBuilder() .setLabel('Unlock Server') .setValue('dss_panelsystem_unlock'), new StringSelectMenuOptionBuilder() .setLabel('Cancel Selection') .setValue('dss_panelsystem_cancel') ) )