This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
estoque.js
146 lines (140 loc) · 6.3 KB
/
estoque.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
const Discord = require("discord.js")
const { JsonDatabase, } = require("wio.db");
const config = new JsonDatabase({ databasePath:"./config.json" });
const perms = new JsonDatabase({ databasePath:"./databases/myJsonPerms.json" });
const db = new JsonDatabase({ databasePath:"./databases/myJsonProdutos.json" });
module.exports = {
name: "estoque",
run: async(client, message, args) => {
if(message.author.id !== `${perms.get(`${message.author.id}_id`)}`) return message.reply(`<a:recusar:1072582282315038802>| Você não está na lista de pessoas!`)
if(!args[0]) return message.reply(`<a:recusar:1072582282315038802>| Você não selecionou nenhum ID!`)
if(args[1]) return message.reply(`<a:recusar:1072582282315038802> | Você não pode selecionar dois IDs de uma vez!`)
if(args[0] !== `${db.get(`${args[0]}.idproduto`)}`) return message.reply(`<a:recusar:1072582282315038802>| Esse ID de produto não é existente!`)
const adb = args[0];
const itens = db.get(`${adb}.conta`);
const row = new Discord.MessageActionRow()
.addComponents(
new Discord.MessageButton()
.setCustomId('addestoque')
.setEmoji('<:mais:1072594989844013128>')
.setLabel('Adicionar')
.setStyle('SECONDARY'),
)
.addComponents(
new Discord.MessageButton()
.setCustomId('remestoque')
.setEmoji('<:menos:1072595008873562163>')
.setLabel('Remover')
.setStyle('SECONDARY'),
)
.addComponents(
new Discord.MessageButton()
.setCustomId('bckestoque')
.setEmoji('<:estoque:1072582246197903451>')
.setLabel('Backup')
.setStyle('SECONDARY'),
)
.addComponents(
new Discord.MessageButton()
.setCustomId('clestoque')
.setEmoji('<:limpar:1072582356692652092>')
.setLabel('Limpar')
.setStyle('SECONDARY'),
)
.addComponents(
new Discord.MessageButton()
.setCustomId('rlestoque')
.setEmoji('<a:carregando:1072582225591283902>')
.setLabel('Atualizar')
.setStyle('SECONDARY'),
);
const msg = await message.reply({ embeds: [new Discord.MessageEmbed()
.setTitle(`${config.get(`title`)} | Gerenciando o(a) ${adb}`)
.setDescription(`
📌 | Descrição: ${db.get(`${adb}.desc`)}
🛒 | Nome: ${db.get(`${adb}.nome`)}
<:dinheiro:1072582093172920411> | Preço: ${db.get(`${adb}.preco`)} Reais
<:estoque:1072582246197903451> | Estoque: ${db.get(`${adb}.conta`).length}`)
.setThumbnail(client.user.displayAvatarURL())
.setColor(config.get(`color`))], components: [row]})
const interação = msg.createMessageComponentCollector({ componentType: "BUTTON", })
interação.on("collect", async (interaction) => {
if (message.author.id != interaction.user.id) {
return
}
if (interaction.customId === "addestoque") {
interaction.deferUpdate();
msg.channel.send("<a:carregando2:1072582203583766568> | Envie os novos produtos no chat!").then(msg => {
const filter = m => m.author.id === interaction.user.id;
const collector = msg.channel.createMessageCollector({ filter })
collector.on("collect", message => {
const content = message.content.split('\n');
const contasnb = message.content.split('\n').length;
var contas = content;
var etapa = 0;
var etapaf = contasnb;
collector.stop();
message.delete()
const timer = setInterval(async function() {
if(etapa === etapaf) {
msg.edit(`<a:acept:1072582174164914187>| Pronto, \`${etapaf}\`\ Produtos foram adicionados com sucesso!`)
clearInterval(timer)
return;
}
const enviando = contas[etapa];
db.push(`${adb}.conta`, `${enviando}`)
etapa = etapa + 1
}, 100)
})
})
}
if (interaction.customId === "remestoque") {
interaction.deferUpdate();
msg.channel.send("✨ | Envie a linha do produto que você quer remover!").then(msg => {
const filter = m => m.author.id === interaction.user.id;
const collector = msg.channel.createMessageCollector({ filter, max: 1 })
collector.on("collect", message1 => {
const a = db.get(`${adb}.conta`);
a.splice(message1.content, 1)
db.set(`${adb}.conta`, a);
message1.delete()
msg.edit(`<a:acept:1072582174164914187> | O Produto número \`${message1}\`\ foi removido com sucesso!`)
})
})
}
if (interaction.customId === 'clestoque') {
interaction.deferUpdate();
const a = db.get(`${adb}.conta`);
const removed = a.splice(0, `${db.get(`${adb}.conta`).length}`);
db.set(`${adb}.conta`, a);
msg.channel.send("<a:acept:1072582174164914187> | Estoque limpo!")
}
if (interaction.customId === 'bckestoque') {
interaction.deferUpdate();
message.channel.send("<a:acept:1072582174164914187> | Enviado com sucesso!")
var quantia = 1;
var contas = `${db.get(`${adb}.conta`)}`.split(',');
var backup = `• ${contas.join(`\n• `)}`
const embed = new Discord.MessageEmbed()
.setTitle(`${config.get(`title`)} | Backup feito`)
.setDescription(`\`\`\`${backup} \`\`\``)
.setColor(config.get(`color`))
message.author.send({embeds: [embed] })
}
if (interaction.customId === 'rlestoque') {
interaction.deferUpdate();
const embed = new Discord.MessageEmbed()
.setTitle(`${config.get(`title`)} | Gerenciando o(a) ${adb}`)
.setDescription(`
📌 | Descrição: ${db.get(`${adb}.desc`)}
🛒 | Nome: ${db.get(`${adb}.nome`)}
<:dinheiro:1072582093172920411> | Preço: ${db.get(`${adb}.preco`)} Reais
<:estoque:1072582246197903451> | Estoque: ${db.get(`${adb}.conta`).length}`)
.setThumbnail(client.user.displayAvatarURL())
.setColor(config.get(`color`))
msg.edit({ embeds: [embed] })
msg.channel.send("<a:acept:1072582174164914187> | Atualizado!")
}
})
}
}