Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mirabellierr/cocoa
A worst Discord bot written in Node.js using Discord.js v13.0.1 wrapper. Using slash command. Also has the most complicated command handler and a very messy code. It includes button pagination that I made, very unhuman and hard to use. Enjoy your time.
https://github.com/mirabellierr/cocoa
discord-bot discord-js slashcommands
Last synced: 2 days ago
JSON representation
A worst Discord bot written in Node.js using Discord.js v13.0.1 wrapper. Using slash command. Also has the most complicated command handler and a very messy code. It includes button pagination that I made, very unhuman and hard to use. Enjoy your time.
- Host: GitHub
- URL: https://github.com/mirabellierr/cocoa
- Owner: MiraBellierr
- Created: 2021-08-08T15:40:55.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-02T02:53:44.000Z (8 months ago)
- Last Synced: 2024-03-02T03:32:54.792Z (8 months ago)
- Topics: discord-bot, discord-js, slashcommands
- Language: JavaScript
- Homepage:
- Size: 490 KB
- Stars: 11
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hi there 👋
Cocoa is the worst Discord bot written in Node.js using Discord.js v13.0.1 wrapper. Using slash command. Also has the most complicated command handler and a very messy code. It includes button pagination class that I made, very not human and hard to use. Enjoy your time.
## 1. Including Button Pagination
very hard to use and very unhuman
### Usage
```js
const { PaginateContent } = require('../../Pagination');const pages = [embed1, embed2, embed3];
const options = {
time: 180000,
};const emojis = {
backward: '869052152331509781',
stop: '869052152260214794',
forward: '869052152012746783',
};const paginated = new PaginateContent.DiscordJS(client, interaction, pages, options, emojis);
await paginated.init();
```
### Output
![](https://www.kannacoco.me/images/pagination.png)
### Parameter
#### client
- your bot client
#### interaction
- interaction object
#### pages
- array of embeds or messages
#### options
- time: `Number`
- button interaction timeout
#### emojis
- backward: `String`
- stop: `String`
- forward: `String`## 2. Also including Google image search
hard to use
### Usage
```js
const gis = require('../../handlers/imagescraping');const options = {
searchTerm: 'cats',
queryStringAddition: '&tbs=isz:l',
filterOutDomains: ['gstatic.com'],
};gis(options, (err, res) => {
if (err) {
console.error(err);
}
else {
console.log(res);
}
});
```
### Output
```sh
[
{
url: 'https://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/other/cat_relaxing_on_patio_other/1800x1200_cat_relaxing_on_patio_other.jpg',
width: 1800,
height: 1200
},
{
url: 'https://static.scientificamerican.com/sciam/cache/file/32665E6F-8D90-4567-9769D59E11DB7F26_source.jpg',
width: 4500,
height: 3587
},
{
url: 'https://images.theconversation.com/files/350865/original/file-20200803-24-50u91u.jpg?ixlib\\u003drb-1.1.0\\u0026q\\u003d45\\u0026auto\\u003dformat\\u0026w\\u003d1200\\u0026h\\u003d1200.0\\u0026fit\\u003dcrop',
width: 1200,
height: 1200
},
...
]
```### Parameter
#### options
- searchTerm: `String`
- Term to be searched
- queryStringAddition: `String`
- List
- Large images: **tbs=isz:l**
- Medium images: **tbs=isz:m**
- Icon sized images: **tba=isz:i**
- Image size larger than 400×300: **tbs=isz:lt,islt:qsvga**
- Image size larger than 640×480: **tbs=isz:lt,islt:vga**
- Image size larger than 800×600: **tbs=isz:lt,islt:svga**
- Image size larger than 1024×768: **tbs=isz:lt,islt:xga**
- Image size larger than 1600×1200: **tbs=isz:lt,islt:2mp**
- Image size larger than 2272×1704: **tbs=isz:lt,islt:4mp**
- Image sized exactly 1000×1000: **tbs=isz:ex,iszw:1000,iszh:1000**
- Images in full color: **tbs=ic:color**
- Images in transparent: **tbs=ic:trans**
- Images in black and white: **tbs=ic:gray**
- Images that are red: **tbs=ic:specific,isc:red** [orange, yellow, green, teal, blue, purple, pink, white, gray, black, brown]
- Image type Face: **tbs=itp:face**
- Image type Photo: **tbs=itp:photo**
- Image type Clipart: **tbs=itp:clipart**
- Image type Line drawing: **tbs=itp:lineart**
- Image type Animated (gif): **tbs=itp:animated**
- Group images by subject: **tbs=isg:to**
- Show image sizes in search results: **tbs=imgo:1**
- Example
- `'&tbm=isch&tbs=ic:color,isz:lt,islt:4mp,itp:face,isg:to'`- filterOutDomains: `Array`
- Array of domains to be filtered
#### callbacks
```js
function callback(err, res) {
if (err) {
// do something
}
else {
// do something
}
}
```