0.1.0 • Published 6 years ago

bexqr v0.1.0

Weekly downloads
87
License
MIT
Repository
github
Last release
6 years ago

BexQR

Install

Script tag

  • Put this script tag <script src='https://unpkg.com/bexqr@latest/dist/bex-qr.js'></script> in the head of your index.html

Node Modules

  • Run npm install bexqr --save
  • Put this script tag <script src='node_modules/bexqr/dist/bex-qr.js'></script> in the head of your index.html

In a stencil-starter app

  • Run npm install bexqr --save
  • Add { name: 'bexqr' } to your collections.

Usage

Insert the element in your code and enter your custom properties:

<bex-qr address="BQQsQfMLneMx4AjvCUvgX3CRSi1wJHdf1j" amount="12.17"></bex-qr>

Examples

<body>
<bex-qr address="BQQsQfMLneMx4AjvCUvgX3CRSi1wJHdf1j" amount="12.17" vendor-field="Greetings%20Martian!" size="200" show-logo="true">
<script>
  document.querySelector('bex-qr').getURI();
  // => bex:BQQsQfMLneMx4AjvCUvgX3CRSi1wJHdf1j?amount=12.17&vendorField=Greetings%20Martian!
</script>
</body>

Generate this QR code:

Properties

AttributeDescriptionTypeRequired
addressBEX recipient address encoded in Base58.StringYes
amountAmount in BEX (ƀ) or TEX (Ⱦ).NumberNo
labelRecipient label string.StringNo
sizeSize of the QR code (pixels)NumberNo
show-logoDisplay the BEX currency symbol in QR codeBooleanNo
vendor-fieldVendor field string (encoded URI).StringNo

Methods

You can interact with the component data using the methods below:

getURI()

Format the properties entered to the BEX URI scheme.

document.querySelector('bex-qr').getURI();
// => bex:BQQsQfMLneMx4AjvCUvgX3CRSi1wJHdf1j?amount=12.17

getDataURL([mime])

Generates a base64 encoded data URI for the QR code.

document.querySelector('bex-qr').getDataURL();
// => data:image/png;base64,iVBORw0KGgoAAAANSUhE...n6ofvMC4I9AAAAAElFTkSuQmCC

validateURI(uri)

Validate an URI string.

const uri = 'bex:BQQsQfMLneMx4AjvCUvgX3CRSi1wJHdf1j?amount=12.17';
document.querySelector('bex-qr').validateURI(uri);
// => ["bex:BQQsQfMLneMx4AjvCUvgX3CRSi1wJHdf1j?amount=12.17", "BQQsQfMLneMx4AjvCUvgX3CRSi1wJHdf1j", "?amount=12.17"]

deserializeURI(uri)

Deserialize the URI scheme to a JSON object.

const uri = 'bex:BQQsQfMLneMx4AjvCUvgX3CRSi1wJHdf1j?amount=12.17&vendorField=Greetings%20Martian!';
document.querySelector('bex-qr').deserializeURI(uri);
// => { address: 'BQQsQfMLneMx4AjvCUvgX3CRSi1wJHdf1j', amount: 12.17, label: null, vendorField: 'Greetings Martian!' }

fromObject(obj)

Instantiate a URI from an Object.

const obj = { address: BQQsQfMLneMx4AjvCUvgX3CRSi1wJHdf1j, amount: 12.17 };
const element = document.querySelector('bex-qr').fromObject(obj);
// => <bex-qr address="BQQsQfMLneMx4AjvCUvgX3CRSi1wJHdf1j" amount="12.17">

Authors

License

BexQR is licensed under the MIT License - see the LICENSE file for details.

0.1.0

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago