Coder Social home page Coder Social logo

dolma's Introduction

Dolma Token Transcoder

This is a token transcoder that is used to encode and decode DogeHouse chat message token arrays. This package is written for bot/bot library devlopers to be able to easily transcode dogehouse chat message tokens.

How to install

To install this, simply go to your project and run the following command:

yarn add dolma

How to use

This will show you how to encode and decode tokens

Encoding Tokens

In this example, you will see multiple ways to encode your tokens. The first one is in plain text. You can pass any string into the encoder and it will convert it into an array of Message Tokens.

import { dolma } from "dolma";

const str =
  "I'm @HoloPanio, and I'd like to goto `Paris, France` one day :catJAM: Also, https://google.com is epic!";

const tokens = dolma.encode(str);

console.log(tokens);

/**
Returns: 
[
  { t: 'text', v: "I'm" },
  { t: 'mention', v: 'HoloPanio' },
  { t: 'text', v: ',' },
  { t: 'text', v: 'and' },
  { t: 'text', v: "I'd" },
  { t: 'text', v: 'like' },
  { t: 'text', v: 'to' },
  { t: 'text', v: 'goto' },
  { t: 'block', v: 'Paris, France' },
  { t: 'text', v: 'one' },
  { t: 'text', v: 'day' },
  { t: 'emote', v: 'catJAM' },
  { t: 'text', v: 'Also,' },
  { t: 'link', v: 'https://google.com' },
  { t: 'text', v: 'is' },
  { t: 'text', v: 'epic!' }
]
*/

In this example, you will see that you can have an mixed array with strings, and unitokens! A unitoken is a token object where you define your object key as the token type, and the value as the value of the token, doing so would look like such: {link: "https://google.com"}, and this can be done for all token types.

import { dolma } from "dolma";

const arr = [
  "I'm",
  { mention: "HoloPanio" },
  ", and I'd like to goto",
  { block: "Paris, France" },
  "one day",
  { emote: "catJAM" },
  "Also",
  { link: "https://google.com" },
  "is epic!",
];

const tokens = dolma.encode(str);

console.log(tokens);

/**
Returns: 
[
  { t: 'text', v: "I'm" },
  { t: 'mention', v: 'HoloPanio' },
  { t: 'text', v: ',' },
  { t: 'text', v: 'and' },
  { t: 'text', v: "I'd" },
  { t: 'text', v: 'like' },
  { t: 'text', v: 'to' },
  { t: 'text', v: 'goto' },
  { t: 'block', v: 'Paris, France' },
  { t: 'text', v: 'one' },
  { t: 'text', v: 'day' },
  { t: 'emote', v: 'catJAM' },
  { t: 'text', v: 'Also,' },
  { t: 'link', v: 'https://google.com' },
  { t: 'text', v: 'is' },
  { t: 'text', v: 'epic!' }
]
*/

You can also pass in message tokens like {t: 'link', v: 'https://google.com'}, and it will work because the encoder checks for all possible methods that can be used.

Decoding Tokens

When you get a payload from DogeHouse, you can use the decode method which will take the tokens, and turn it into a raw text string when you can use anywhere you please. The decode method will always encode the data sent to it to ensure that the data is parsed correctly, so that means you can also pass in un-encoded data, such as the array in the previous example, and will print out a plain text string. In this example, we will take the array from above, and return it to a plain text string using the decode method.

import { dolma } from "dolma";

const tokens = [
  { t: "text", v: "I'm" },
  { t: "mention", v: "HoloPanio" },
  { t: "text", v: "," },
  { t: "text", v: "and" },
  { t: "text", v: "I'd" },
  { t: "text", v: "like" },
  { t: "text", v: "to" },
  { t: "text", v: "goto" },
  { t: "block", v: "Paris, France" },
  { t: "text", v: "one" },
  { t: "text", v: "day" },
  { t: "emote", v: "catJAM" },
  { t: "text", v: "Also," },
  { t: "link", v: "https://google.com" },
  { t: "text", v: "is" },
  { t: "text", v: "epic!" },
];

const message = dolma.decode(tokens);

console.log(message);

/**
Returns: 

I'm @HoloPanio , and I'd like to goto `Paris, France` one day :catJAM: Also, https://google.com is epic!
*/

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.