Coder Social home page Coder Social logo

guiworks's Introduction

guiworks

A React-style Discord.js library for interactive embeds

Installation

You can install guiworks using either

npm install --save guiworks

or

yarn add guiworks

Usage

First, you need to initialize a Guiworks instance right after your Discord.js client

import Guiworks from "guiworks";

const client = new Discord.Client();
const guiworks = new Guiworks();

Now you can register new Gui instances by running guiworks.add()

guiworks.add(textChannel, new MyGreatGui());

Guis

A basic Gui only needs to extend Guiworks's Gui class and implement the methods update and render, and either targetReactions or automaticRender

import { Gui } from "guiworks";

class MyGreatGui extends Gui {
    constructor() {
        super();
    }

    update(event) {}

    render() {
        const embed = new Discord.RichEmbed();
        embed.setTitle("This is my great Gui!");
        return embed;
    }

    targetReactions() {
        return ["๐Ÿ‘"]
    }

    automaticRender() {
        // Automatic render every 15 seconds;
        return 15000;
    }
}

update gets called every time a reaction gets added or removed. An event has a type, and it can be either reactionAdd or reactionRemove.

For both, there are also reaction and user variables set

Other functions that you can implement are initialize(), finalize() and isParticipating(user).

Every implementation of Gui also provides two functions, triggerRender() to trigger a re-render at will, and terminate(), which will tell the Guiworks instance to terminate the Gui instance.

guiworks's People

Contributors

fatalerrorcoded avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.