UNPKG

@gohelpfund/insight-ui

Version:

An open-source frontend for the Insight API. The Insight API provides you with a convenient, powerful and simple way to query and broadcast data on the Help network and build your own services with it.

81 lines (78 loc) 3.83 kB
<div data-ng-include src="'views/includes/connection.html'"></div> <section data-ng-controller="AddressController" data-ng-init="findOne()"> <div class="secondary_navbar hidden-xs hidden-sm" scroll data-ng-class="{'hidden': !secondaryNavbar}" data-ng-show="address.addrStr" data-ng-init="hideSNavbar=0"> <div class="container" data-ng-if="!hideSNavbar"> <div class="col-md-8 text-left"> <h3 translate>Address</h3> {{address.addrStr}} <span class="btn-copy" clip-copy="address.addrStr"></span> </div> <div class="col-md-4"> <span class="txvalues txvalues-primary"><strong translate>Final Balance</strong> {{$root.currency.getConvertion(address.balance) || address.balance + ' HELP' }}</span> </div> </div> <div class="hide_snavbar"> <a href="#" data-ng-click="hideSNavbar=!hideSNavbar"> <span data-ng-show="hideSNavbar"><span class="text-muted glyphicon glyphicon-chevron-down"></span></span> <span data-ng-show="!hideSNavbar"><span class="text-muted glyphicon glyphicon-chevron-up"></span></span> </a> </div> </div> <h1><span translate>Address</span> <small data-ng-show="address.addrStr">{{$root.currency.getConvertion(address.balance) || address.balance + ' HELP'}}</small></h1> <div class="text-muted" data-ng-if="!address.addrStr"> <span translate>Loading Address Information</span> <span class="loader-gif"></span> </div> <div data-ng-if="address.addrStr"> <div class="well well-sm ellipsis"> <strong translate>Address</strong> <span class="text-muted">{{address.addrStr}}</span> <span class="btn-copy" clip-copy="address.addrStr"></span> </div> <h2 translate>Summary <small>confirmed</small></h2> <div class="row" data-ng-hide="!address.addrStr"> <div class="col-md-10"> <table class="table"> <tbody> <tr> <td><strong translate>Total Received</strong></td> <td class="ellipsis text-right">{{$root.currency.getConvertion(address.totalReceived) || address.totalReceived + ' HELP'}}</td> </tr> <tr> <td><strong translate>Total Sent</strong></td> <td class="ellipsis text-right">{{$root.currency.getConvertion(address.totalSent) || address.totalSent + ' HELP'}}</td> </tr> <tr> <td><strong translate>Final Balance</strong></td> <td class="ellipsis text-right">{{$root.currency.getConvertion(address.balance) || address.balance + ' HELP'}}</td> </tr> <tr> <td><strong translate>No. Transactions</strong></td> <td class="ellipsis text-right">{{address.txApperances}}</td> </tr> </tbody> </table> </div> <div class="col-md-2 text-center"> <qrcode size="160" data="{{address.addrStr}}"></qrcode> </div> </div> <div data-ng-show="address.unconfirmedTxApperances"> <h3 translate>Unconfirmed</h3> <table class="table"> <tbody> <tr> <td class="small" translate>Unconfirmed Txs Balance</td> <td class="address ellipsis text-right">{{$root.currency.getConvertion(address.unconfirmedBalance)}}</td> </tr> <tr> <td class="small" translate>No. Transactions</td> <td class="address ellipsis text-right">{{address.unconfirmedTxApperances}}</td> </tr> </tbody> </table> </div> </div> <div data-ng-if="address.addrStr" data-ng-controller="transactionsController" data-ng-init="load('address')"> <h2 translate>Transactions</h2> <div data-ng-include src="'views/transaction/list.html'" when-scrolled="loadMore()"></div> </div> </section>