Giter VIP home page Giter VIP logo

ex_ussd's People

Contributors

kamalogudah avatar lenileiro avatar manuelgeek avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

ex_ussd's Issues

Feature Request: Add Support for zero based menu list

At the moment ExUssd supports one base menu list

example:

 defmodule HomeResolver do
 
    def product_offer(menu, _payload), do: menu |> ExUssd.set(title: "selected product offer")
    def product_a(menu, _payload), do: menu |> ExUssd.set(title: "selected product a")
    def product_b(menu, _payload), do: menu |> ExUssd.set(title: "selected product b")
    def product_c(menu, _payload), do: menu |> ExUssd.set(title: "selected product c")
    
     def products(menu, _payload) do
        menu 
        |> ExUssd.set(title: "Product List")
        |> ExUssd.add(ExUssd.new(name: "Offer", resolve: &product_offer/2))
        |> ExUssd.add(ExUssd.new(name: "Product A", resolve: &product_a/2))
        |> ExUssd.add(ExUssd.new(name: "Product B", resolve: &product_b/2))
        |> ExUssd.add(ExUssd.new(name: "Product C", resolve: &product_c/2))
      end
  end

once you create the menu like so

menu = ExUssd.new(name: "products", resolve: &HomeResolver.products/2)

output:

iex> ExUssd.to_string(menu, [])
{:ok,
 %{
   menu_string: "Product List\n1:Offer\n2:Product A\n3:Product B\n4:Product C",
   should_close: false
 }}

desired output:

iex> ExUssd.to_string(menu, [])
{:ok,
 %{
   menu_string: "Product List\n0:Offer\n1:Product A\n2:Product B\n3:Product C",
   should_close: false
 }}

Ussd Routing

Create Ussd Routing functionality to handle different client sessions

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.