Skip to content

Commit

Permalink
✨ Add Forbidden in CustomResponse and new style
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashu11-A committed Jun 15, 2024
1 parent 0a2132e commit 5dad4ed
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 12 deletions.
16 changes: 12 additions & 4 deletions plugins/plugin_base/src/discord/base/CustomResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ export class Error {
let embed: EmbedBuilder
switch (type) {
case "Database": {
embed = new EmbedBuilder({ title: `Não encontrei ${element} no database!`})
embed = new EmbedBuilder({ title: `Não encontrei \`${element}\` no database!`})
break
}
case "Channel": {
embed = new EmbedBuilder({ title: `Não encontrei o channel ${element} no servidor!`})
embed = new EmbedBuilder({ title: `Não encontrei o channel \`${element}\` no servidor!`})
break
}
case "Message": {
Expand All @@ -44,7 +44,7 @@ export class Error {
invalidProperty () {
const { element, color } = this.options
const embed = new EmbedBuilder({
title: `Propriedade ${element} é invalida!`
title: `Propriedade \`${element}\` é invalida!`
}).setColor(color ?? 'Red')
this.embed = embed
return this
Expand All @@ -53,7 +53,15 @@ export class Error {
notPossible () {
const { element, color } = this.options
this.embed = new EmbedBuilder({
title: `Não foi possivel ${element}`
title: `Não foi possivel \`${element}\``
}).setColor(color ?? 'Red')
return this
}

forbidden() {
const { element, color } = this.options
this.embed = new EmbedBuilder({
title: `Não é fazer isso, pois \`${element}\` não tem permisão!`
}).setColor(color ?? 'Red')
return this
}
Expand Down
16 changes: 12 additions & 4 deletions plugins/tickets/src/discord/base/CustomResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ export class Error {
let embed: EmbedBuilder
switch (type) {
case "Database": {
embed = new EmbedBuilder({ title: `Não encontrei ${element} no database!`})
embed = new EmbedBuilder({ title: `Não encontrei \`${element}\` no database!`})
break
}
case "Channel": {
embed = new EmbedBuilder({ title: `Não encontrei o channel ${element} no servidor!`})
embed = new EmbedBuilder({ title: `Não encontrei o channel \`${element}\` no servidor!`})
break
}
case "Message": {
Expand All @@ -44,7 +44,7 @@ export class Error {
invalidProperty () {
const { element, color } = this.options
const embed = new EmbedBuilder({
title: `Propriedade ${element} é invalida!`
title: `Propriedade \`${element}\` é invalida!`
}).setColor(color ?? 'Red')
this.embed = embed
return this
Expand All @@ -53,7 +53,15 @@ export class Error {
notPossible () {
const { element, color } = this.options
this.embed = new EmbedBuilder({
title: `Não foi possivel ${element}`
title: `Não foi possivel \`${element}\``
}).setColor(color ?? 'Red')
return this
}

forbidden() {
const { element, color } = this.options
this.embed = new EmbedBuilder({
title: `Não é fazer isso, pois \`${element}\` não tem permisão!`
}).setColor(color ?? 'Red')
return this
}
Expand Down
16 changes: 12 additions & 4 deletions plugins/utils/src/discord/base/CustomResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ export class Error {
let embed: EmbedBuilder
switch (type) {
case "Database": {
embed = new EmbedBuilder({ title: `Não encontrei ${element} no database!`})
embed = new EmbedBuilder({ title: `Não encontrei \`${element}\` no database!`})
break
}
case "Channel": {
embed = new EmbedBuilder({ title: `Não encontrei o channel ${element} no servidor!`})
embed = new EmbedBuilder({ title: `Não encontrei o channel \`${element}\` no servidor!`})
break
}
case "Message": {
Expand All @@ -44,7 +44,7 @@ export class Error {
invalidProperty () {
const { element, color } = this.options
const embed = new EmbedBuilder({
title: `Propriedade ${element} é invalida!`
title: `Propriedade \`${element}\` é invalida!`
}).setColor(color ?? 'Red')
this.embed = embed
return this
Expand All @@ -53,7 +53,15 @@ export class Error {
notPossible () {
const { element, color } = this.options
this.embed = new EmbedBuilder({
title: `Não foi possivel ${element}`
title: `Não foi possivel \`${element}\``
}).setColor(color ?? 'Red')
return this
}

forbidden() {
const { element, color } = this.options
this.embed = new EmbedBuilder({
title: `Não é fazer isso, pois \`${element}\` não tem permisão!`
}).setColor(color ?? 'Red')
return this
}
Expand Down

0 comments on commit 5dad4ed

Please sign in to comment.