2020-07-03 23:45:19 +07:00
|
|
|
<div class="container-xl">
|
2020-07-13 23:22:24 +07:00
|
|
|
<h1 style="float: left;">Transactions</h1>
|
2020-07-24 18:41:15 +07:00
|
|
|
|
|
|
|
<div ngbDropdown class="d-block float-right">
|
|
|
|
<button class="btn btn-primary" id="dropdownForm1" ngbDropdownToggle>Filter</button>
|
|
|
|
<div ngbDropdownMenu aria-labelledby="dropdownForm1">
|
|
|
|
<form [formGroup]="radioGroupForm">
|
|
|
|
<label>
|
2020-07-24 18:52:55 +07:00
|
|
|
<input type="checkbox" formControlName="ASSET_LISTING_FEE"> Asset listing fee
|
2020-07-24 18:41:15 +07:00
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<label>
|
2020-07-24 18:52:55 +07:00
|
|
|
<input type="checkbox" formControlName="BLIND_VOTE"> Blind vote
|
2020-07-24 18:41:15 +07:00
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<label>
|
2020-07-24 18:52:55 +07:00
|
|
|
<input type="checkbox" formControlName="COMPENSATION_REQUEST"> Compensation request
|
2020-07-24 18:41:15 +07:00
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<label>
|
2020-07-24 18:52:55 +07:00
|
|
|
<input type="checkbox" formControlName="GENESIS"> Genesis
|
2020-07-24 18:41:15 +07:00
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<label>
|
2020-07-24 18:52:55 +07:00
|
|
|
<input type="checkbox" formControlName="LOCKUP"> Lockup
|
2020-07-24 18:41:15 +07:00
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<label>
|
2020-07-24 18:52:55 +07:00
|
|
|
<input type="checkbox" formControlName="PAY_TRADE_FEE"> Pay trade fee
|
2020-07-24 18:41:15 +07:00
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<label>
|
2020-07-24 18:52:55 +07:00
|
|
|
<input type="checkbox" formControlName="PROOF_OF_BURN"> Proof of burn
|
2020-07-24 18:41:15 +07:00
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<label>
|
2020-07-24 18:52:55 +07:00
|
|
|
<input type="checkbox" formControlName="PROPOSAL"> Proposal
|
2020-07-24 18:41:15 +07:00
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<label>
|
2020-07-24 18:52:55 +07:00
|
|
|
<input type="checkbox" formControlName="REIMBURSEMENT_REQUEST"> Reimbursement request
|
2020-07-24 18:41:15 +07:00
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<label>
|
2020-07-24 18:52:55 +07:00
|
|
|
<input type="checkbox" formControlName="TRANSFER_BSQ"> Transfer BSQ
|
2020-07-24 18:41:15 +07:00
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<label>
|
2020-07-24 18:52:55 +07:00
|
|
|
<input type="checkbox" formControlName="UNLOCK"> Unlock
|
2020-07-24 18:41:15 +07:00
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<label>
|
2020-07-24 18:52:55 +07:00
|
|
|
<input type="checkbox" formControlName="VOTE_REVEAL"> Vote reveal
|
2020-07-24 18:41:15 +07:00
|
|
|
</label>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-07-03 23:45:19 +07:00
|
|
|
<br>
|
|
|
|
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
|
2020-07-24 18:41:15 +07:00
|
|
|
<table class="table table-borderless table-striped">
|
|
|
|
<thead>
|
|
|
|
<th style="width: 20%;">Transaction</th>
|
|
|
|
<th class="d-none d-md-block" style="width: 20%;">Type</th>
|
|
|
|
<th style="width: 20%;">Amount</th>
|
|
|
|
<th style="width: 20%;">Confirmed</th>
|
|
|
|
<th class="d-none d-md-block" style="width: 20%;">Height</th>
|
|
|
|
</thead>
|
|
|
|
<tbody *ngIf="!isLoading; else loadingTmpl">
|
|
|
|
<tr *ngFor="let tx of transactions; trackBy: trackByFn">
|
|
|
|
<td><a [routerLink]="['/tx/' | relativeUrl, tx.id]" [state]="{ data: tx }">{{ tx.id | slice : 0 : 8 }}</a></td>
|
|
|
|
<td class="d-none d-md-block">
|
|
|
|
<app-bisq-icon class="mr-1" [txType]="tx.txType"></app-bisq-icon>
|
|
|
|
<span class="d-none d-md-inline"> {{ tx.txTypeDisplayString }}</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<app-bisq-icon class="d-inline d-md-none mr-1" [txType]="tx.txType"></app-bisq-icon>
|
2020-07-28 13:31:25 +07:00
|
|
|
<ng-template [ngIf]="tx.txType === 'PAY_TRADE_FEE' || tx.txType === 'ASSET_LISTING_FEE'" [ngIfElse]="defaultTxType">
|
2020-07-24 18:41:15 +07:00
|
|
|
{{ tx.burntFee / 100 | number: '1.2-2' }}<span class="d-none d-md-inline"> BSQ</span>
|
|
|
|
</ng-template>
|
|
|
|
<ng-template #defaultTxType>
|
|
|
|
{{ calculateTotalOutput(tx.outputs) / 100 | number: '1.2-2' }}<span class="d-none d-md-inline"> BSQ</span>
|
|
|
|
</ng-template>
|
|
|
|
</td>
|
|
|
|
<td><app-time-since [time]="tx.time / 1000" [fastRender]="true"></app-time-since> ago</td>
|
|
|
|
<td class="d-none d-md-block"><a [routerLink]="['/block/' | relativeUrl, tx.blockHash]" [state]="{ data: { blockHeight: tx.blockHeight } }">{{ tx.blockHeight }}</a></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2020-07-03 23:45:19 +07:00
|
|
|
|
|
|
|
<br>
|
|
|
|
|
2020-07-19 13:46:30 +07:00
|
|
|
<ngb-pagination [size]="paginationSize" [collectionSize]="totalCount" [rotate]="true" [pageSize]="itemsPerPage" [(page)]="page" (pageChange)="pageChange(page)" [maxSize]="paginationMaxSize" [boundaryLinks]="true"></ngb-pagination>
|
2020-07-03 23:45:19 +07:00
|
|
|
|
2020-07-15 13:10:13 +07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<ng-template #loadingTmpl>
|
|
|
|
<tr *ngFor="let i of loadingItems">
|
2020-07-18 11:04:04 +07:00
|
|
|
<td *ngFor="let j of [1, 2, 3, 4, 5]"><span class="skeleton-loader"></span></td>
|
2020-07-15 13:10:13 +07:00
|
|
|
</tr>
|
|
|
|
</ng-template>
|