1.2.1 • Published 2 months ago

toki-app v1.2.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 months ago

Mini application for Toki

For UI components: Components

Installation

The package can be installed via npm:

npm install toki-app

Table of Contents

UI Components

Button

import { Button } from "toki-app";
...
function handleClick(event){
}
return  <Button
            text="title"
            type="primary" // "primary" | "secondary" | "text" | "warning"
            onClick={handleClick}>
        </Button>

Input

import { Input } from "toki-app";
...
function handleChange(event){
    setState()
}
return  <Input
            placeholder="Username"
            value={state}
            onChange={handleChange} />

App provided functions

app.buy()
app.selectContact()
app.checkNotification()
app.setColor()
app.openLink()
app.buyfromDynamiclink()
app.setScreenProtection()
app.downloadImage()
app.closeWebView()

Function examples

- Buy

import { app } from "toki-app";
...
function test() {
    // Merchant ID
    const merchantId = "qwerty"
    // Payment amount
    const amount = 100
    // Unique Order ID
    const orderId = "ORD-1234"
    const description = "Test order"

    /*
        Webhook URL for success, failed transactions
        Method: POST
        Body: orderID, transactionID, statusCode, transRequestId, token, amount
    */
    const backendCallbackUrl = "http://localhost:3001/api/v1/order"

    app.buy(
        merchantId,
        amount,
        orderId,
        description,
        (
            transactionID: string,
            orderID: string,
            status: string,
            statusCode: any,
            transRequestId: string
        ) => {
            // Callback for front-end
            onGetOrder();
        },
        backendCallbackUrl
    );
}

function onGetOrder() {
    console.log("Transaction done")
}
1.2.1

2 months ago

1.2.0

2 months ago

1.2.0-beta.17

2 months ago

1.2.0-beta.16

2 months ago

1.2.0-beta.15

2 months ago

1.2.0-beta.12

2 months ago

1.2.0-beta.11

2 months ago

1.2.0-beta.14

2 months ago

1.2.0-beta.13

2 months ago

1.2.0-beta.9

3 months ago

1.2.0-beta.8

3 months ago

1.2.0-beta.7

3 months ago

1.2.0-beta.10

3 months ago

1.2.0-beta.1

3 months ago

1.2.0-beta.3

3 months ago

1.2.0-beta.2

3 months ago

1.2.0-beta.5

3 months ago

1.2.0-beta.4

3 months ago

1.2.0-beta.6

3 months ago

1.1.7

4 months ago

1.1.6

6 months ago

1.1.5

6 months ago

1.1.1

10 months ago

1.1.0

10 months ago

1.0.9

10 months ago

1.1.3

10 months ago

1.1.2

10 months ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago