Giter Site home page Giter Site logo

wizardscene's Introduction

WizardScene in Google Apps Script


Requirement

lumpia framework - 1Yo6vQRwjG5Gl9jeEF0g2tBTUa0XN5MyT4G_HeDpRr9DvabxhRcSdhPNj
Wizard library - 1qh5YcQ6JIQcBj97jouAzZmjuuZnTybJVXvyKNs07SobcTPxu-sIXU87R

image

Example Using

const {Scene,Stage} = WizardDua; 
// create new client
const bot = new lumpia.init(token);
// handle webhook response with doPost
function doPost(e) {
  bot.doPost(e);
}
// create new session
const session = new Scene(
  "session_one",// id to define the session you can fill with anything 
  // step handle 
  (ctx) => {
    ctx.data = {} // create temp database
    ctx.reply("Input your number") 
    return ctx.wizard.next()
  },
  (ctx) => { 
    ctx.data.number = ctx.message.text // now you can save user respon.
    ctx.reply(`Your number : ${ctx.message.text}`)
    return ctx.wizard.leave()
  }
)
// create new stage. you can fill with multiple stage. 
const stage = new Stage([session])
// use stage as middleware. 
bot.use(stage.middleware())
// start command
bot.start(ctx => ctx.reply('Started!'));
// if user send /login bot will running the current stage. 
bot.cmd("login",(ctx)=>{
  return stage.enter("session_one") // enter the session which has id "stage_one"
})

wizardscene's People

Contributors

butthx avatar banghasan 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.