273 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			273 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
 | |
| <div class="container-xl dashboard-container">
 | |
|   <div class="row row-cols-1 row-cols-md-2" *ngIf="{ value: (mempoolInfoData$ | async) } as mempoolInfoData">
 | |
|     <ng-template [ngIf]="collapseLevel === 'three'" [ngIfElse]="expanded">
 | |
|       <div class="col card-wrapper" *ngIf="(network$ | async) !== 'liquid' && (network$ | async) !== 'liquidtestnet'">
 | |
|         <div class="main-title" i18n="fees-box.transaction-fees">Transaction Fees</div>
 | |
|         <div class="card">
 | |
|           <div class="card-body">
 | |
|             <app-fees-box class="d-block"></app-fees-box>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|       <div class="col" *ngIf="(network$ | async) !== 'liquid' && (network$ | async) !== 'liquidtestnet'">
 | |
|         <app-difficulty></app-difficulty>
 | |
|       </div>
 | |
|       <div class="col">
 | |
|         <div class="card">
 | |
|           <div class="card-body">
 | |
|             <ng-container *ngTemplateOutlet="stateService.network === 'liquid' ? lbtcPegs : mempoolTable; context: { $implicit: mempoolInfoData }"></ng-container>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|       <div class="col">
 | |
|         <div class="card">
 | |
|           <div class="card-body">
 | |
|             <ng-container *ngTemplateOutlet="stateService.network === 'liquid' ? mempoolTable : txPerSecond; context: { $implicit: mempoolInfoData }"></ng-container>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|     </ng-template>
 | |
|     <ng-template #expanded>
 | |
|       <ng-container *ngIf="(network$ | async) !== 'liquid' && (network$ | async) !== 'liquidtestnet'">
 | |
|         <div class="col card-wrapper">
 | |
|           <div class="main-title" i18n="fees-box.transaction-fees">Transaction Fees</div>
 | |
|           <div class="card">
 | |
|             <div class="card-body">
 | |
|               <app-fees-box class="d-block"></app-fees-box>
 | |
|             </div>
 | |
|           </div>
 | |
|         </div>
 | |
|         <div class="col">
 | |
|           <app-difficulty></app-difficulty>
 | |
|         </div>
 | |
|       </ng-container>
 | |
|       <div class="col">
 | |
|         <div class="card graph-card">
 | |
|           <div class="card-body pl-0">
 | |
|             <div style="padding-left: 1.25rem;">
 | |
|               <ng-container *ngTemplateOutlet="stateService.network === 'liquid' ? lbtcPegs : mempoolTable; context: { $implicit: mempoolInfoData }"></ng-container>
 | |
|               <hr>
 | |
|             </div>
 | |
|             <ng-template [ngIf]="(network$ | async) !== 'liquid'" [ngIfElse]="liquidPegs">
 | |
|               <ng-container *ngIf="{ value: (mempoolStats$ | async) } as mempoolStats">
 | |
|                 <div class="mempool-graph">
 | |
|                   <app-mempool-graph
 | |
|                   [template]="'widget'"
 | |
|                   [limitFee]="150"
 | |
|                   [limitFilterFee]="1"
 | |
|                   [data]="mempoolStats.value?.mempool"
 | |
|                   [windowPreferenceOverride]="'2h'"
 | |
|                   ></app-mempool-graph>
 | |
|                 </div>
 | |
|               </ng-container>
 | |
|             </ng-template>
 | |
|             <ng-template #liquidPegs>
 | |
|               <app-lbtc-pegs-graph [data]="liquidPegsMonth$ | async"></app-lbtc-pegs-graph>
 | |
|             </ng-template>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|       <div class="col">
 | |
|         <div class="card graph-card">
 | |
|           <div class="card-body">
 | |
|             <ng-container *ngTemplateOutlet="stateService.network === 'liquid' ? mempoolTable : txPerSecond; context: { $implicit: mempoolInfoData }"></ng-container>
 | |
|             <hr>
 | |
|             <div class="mempool-graph" *ngIf="stateService.network === 'liquid'; else mempoolGraph">
 | |
|               <table class="table table-borderless table-striped" *ngIf="(featuredAssets$ | async) as featuredAssets else loadingAssetsTable">
 | |
|                 <tbody>
 | |
|                   <tr *ngFor="let group of featuredAssets">
 | |
|                     <td class="asset-icon">
 | |
|                       <a [routerLink]="['/assets/asset/' | relativeUrl, group.asset]">
 | |
|                         <img class="assetIcon" [src]="'https://liquid.network/api/v1/asset/' + group.asset + '/icon'">
 | |
|                       </a>
 | |
|                     </td>
 | |
|                     <td class="asset-title">
 | |
|                       <a [routerLink]="['/assets/asset/' | relativeUrl, group.asset]">{{ group.name }}</a>
 | |
|                     </td>
 | |
|                     <td class="circulating-amount"><app-asset-circulation [assetId]="group.asset"></app-asset-circulation></td>
 | |
|                   </tr>
 | |
|                 </tbody>
 | |
|               </table>
 | |
|             </div>
 | |
|             <ng-template #mempoolGraph>
 | |
|               <div class="mempool-graph" *ngIf="{ value: (mempoolStats$ | async) } as mempoolStats">
 | |
|                 <app-incoming-transactions-graph
 | |
|                   [left]="50"
 | |
|                   [data]="mempoolStats.value?.weightPerSecond"
 | |
|                   [windowPreferenceOverride]="'2h'"
 | |
|                   ></app-incoming-transactions-graph>
 | |
|               </div>
 | |
|             </ng-template>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|       <ng-template [ngIf]="collapseLevel === 'one'">
 | |
|       <div class="col">
 | |
|         <div class="card">
 | |
|           <div class="card-body">
 | |
|             <h5 class="card-title" i18n="dashboard.latest-blocks">Latest blocks</h5>
 | |
|             <table class="table lastest-blocks-table">
 | |
|               <thead>
 | |
|                 <th class="table-cell-height" i18n="dashboard.latest-blocks.height">Height</th>
 | |
|                 <th class="table-cell-mined" i18n="dashboard.latest-blocks.mined">Mined</th>
 | |
|                 <th class="table-cell-transaction-count" i18n="dashboard.latest-blocks.transaction-count">TXs</th>
 | |
|                 <th class="table-cell-size" i18n="dashboard.latest-blocks.size">Size</th>
 | |
|               </thead>
 | |
|               <tbody>
 | |
|                 <tr *ngFor="let block of blocks$ | async; let i = index; trackBy: trackByBlock">
 | |
|                   <td class="table-cell-height" ><a [routerLink]="['/block' | relativeUrl, block.id]" [state]="{ data: { block: block } }">{{ block.height }}</a></td>
 | |
|                   <td class="table-cell-mined" ><app-time-since [time]="block.timestamp" [fastRender]="true"></app-time-since></td>
 | |
|                   <td class="table-cell-transaction-count">{{ block.tx_count | number }}</td>
 | |
|                   <td class="table-cell-size">
 | |
|                     <div class="progress">
 | |
|                       <div class="progress-bar progress-mempool {{ network$ | async }}" role="progressbar" [ngStyle]="{'width': (block.weight / stateService.env.BLOCK_WEIGHT_UNITS)*100 + '%' }"> </div>
 | |
|                       <div class="progress-text" [innerHTML]="block.size | bytes: 2"></div>
 | |
|                     </div>
 | |
|                   </td>
 | |
|                 </tr>
 | |
|               </tbody>
 | |
|             </table>
 | |
|             <div class=""><a href="" [routerLink]="['/blocks' | relativeUrl]" i18n="dashboard.view-all">View all »</a></div>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|       <div class="col">
 | |
|         <div class="card">
 | |
|           <div class="card-body">
 | |
|             <h5 class="card-title" i18n="dashboard.latest-transactions">Latest transactions</h5>
 | |
|             <table class="table latest-transactions">
 | |
|               <thead>
 | |
|                 <th class="table-cell-txid" i18n="dashboard.latest-transactions.txid">TXID</th>
 | |
|                 <th class="table-cell-satoshis" i18n="dashboard.latest-transactions.amount">Amount</th>
 | |
|                 <th class="table-cell-fiat" *ngIf="(network$ | async) === ''" i18n="dashboard.latest-transactions.USD">USD</th>
 | |
|                 <th class="table-cell-fees" i18n="dashboard.latest-transactions.fee">Fee</th>
 | |
|               </thead>
 | |
|               <tbody>
 | |
|                 <tr *ngFor="let transaction of transactions$ | async; let i = index;">
 | |
|                   <td class="table-cell-txid"><a [routerLink]="['/tx' | relativeUrl, transaction.txid]">{{ transaction.txid | shortenString : 10 }}</a></td>
 | |
|                   <td class="table-cell-satoshis"><app-amount *ngIf="(network$ | async) !== 'liquid' && (network$ | async) !== 'liquidtestnet'; else liquidAmount" [satoshis]="transaction.value" digitsInfo="1.2-4" [noFiat]="true"></app-amount><ng-template #liquidAmount i18n="shared.confidential">Confidential</ng-template></td>
 | |
|                   <td class="table-cell-fiat" *ngIf="(network$ | async) === ''" ><app-fiat [value]="transaction.value" digitsInfo="1.0-0"></app-fiat></td>
 | |
|                   <td class="table-cell-fees">{{ transaction.fee / transaction.vsize | feeRounding }} <span class="symbol" i18n="shared.sat-vbyte|sat/vB">sat/vB</span></td>
 | |
|                 </tr>
 | |
|               </tbody>
 | |
|             </table>
 | |
|             <div class=""> </div>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|     </ng-template>
 | |
|     </ng-template>
 | |
|   </div>
 | |
| 
 | |
|   <button type="button" class="btn btn-secondary btn-sm d-block mx-auto" (click)="toggleCollapsed()">
 | |
|     <div [ngSwitch]="collapseLevel">
 | |
|       <fa-icon *ngSwitchCase="'three'" [icon]="['fas', 'angle-down']" [fixedWidth]="true" i18n-title="dashboard.expand" title="Expand"></fa-icon>
 | |
|       <fa-icon *ngSwitchDefault [icon]="['fas', 'angle-up']" [fixedWidth]="true" i18n-title="dashboard.collapse" title="Collapse"></fa-icon>
 | |
|     </div>
 | |
|   </button>
 | |
| 
 | |
|   <app-language-selector></app-language-selector>
 | |
| 
 | |
|   <div class="terms-of-service">
 | |
|     <a [routerLink]="['/terms-of-service']" i18n="shared.terms-of-service|Terms of Service">Terms of Service</a>
 | |
|     |
 | |
|     <a [routerLink]="['/privacy-policy']" i18n="shared.privacy-policy|Privacy Policy">Privacy Policy</a>
 | |
|     |
 | |
|     <a [routerLink]="['/tx/push' | relativeUrl]" i18n="shared.broadcast-transaction|Broadcast Transaction">Broadcast Transaction</a>
 | |
|   </div>
 | |
| 
 | |
| </div>
 | |
| 
 | |
| <ng-template #loadingAssetsTable>
 | |
|   <table class="table table-borderless table-striped asset-table">
 | |
|     <tbody>
 | |
|       <tr *ngFor="let i of [1,2,3,4]">
 | |
|         <td class="asset-icon">
 | |
|           <div class="skeleton-loader skeleton-loader-transactions"></div>
 | |
|         </td>
 | |
|         <td class="asset-title">
 | |
|           <div class="skeleton-loader skeleton-loader-transactions"></div>
 | |
|         </td>
 | |
|         <td class="asset-title d-none d-md-table-cell">
 | |
|           <div class="skeleton-loader skeleton-loader-transactions"></div>
 | |
|         </td>
 | |
|         <td class="asset-title">
 | |
|           <div class="skeleton-loader skeleton-loader-transactions"></div>
 | |
|         </td>
 | |
|       </tr>
 | |
|     </tbody>
 | |
|   </table>
 | |
| </ng-template>
 | |
| 
 | |
| <ng-template #loadingTransactions>
 | |
|   <div class="skeleton-loader skeleton-loader-transactions"></div>
 | |
| </ng-template>
 | |
| 
 | |
| <ng-template #loading>
 | |
|   <div class="skeleton-loader"></div>
 | |
| </ng-template>
 | |
| 
 | |
| <ng-template #loadingbig>
 | |
|   <span class="skeleton-loader skeleton-loader-big" ></span>
 | |
| </ng-template>
 | |
| 
 | |
| <ng-template #emptyBlock>
 | |
|   <div class="col">
 | |
| 
 | |
|   </div>
 | |
| </ng-template>
 | |
| 
 | |
| <ng-template #mempoolTable let-mempoolInfoData>
 | |
|   <div class="mempool-info-data">
 | |
|     <div class="item">
 | |
|       <h5 *ngIf="!mempoolInfoData.value || mempoolInfoData.value.memPoolInfo.mempoolminfee === 0.00001 || (stateService.env.BASE_MODULE === 'liquid' && mempoolInfoData.value.memPoolInfo.mempoolminfee === 0.000001) else purgingText" class="card-title" i18n="dashboard.minimum-fee|Minimum mempool fee">Minimum fee</h5>
 | |
|       <ng-template #purgingText><h5 class="card-title" i18n="dashboard.purging|Purgin below fee">Purging</h5></ng-template>
 | |
|       <p class="card-text" *ngIf="(isLoadingWebSocket$ | async) === false && mempoolInfoData.value; else loading">
 | |
|         <ng-template [ngIf]="mempoolInfoData.value.memPoolInfo.mempoolminfee > 0.00001">< </ng-template>{{ mempoolInfoData.value.memPoolInfo.mempoolminfee * 100000 | feeRounding }} <span><ng-container i18n="shared.sat-vbyte|sat/vB">sat/vB</ng-container></span>
 | |
|       </p>
 | |
|     </div>
 | |
|     <div class="item">
 | |
|       <h5 class="card-title" i18n="dashboard.unconfirmed|Unconfirmed count">Unconfirmed</h5>
 | |
|       <p class="card-text" *ngIf="(isLoadingWebSocket$ | async) === false && mempoolInfoData.value; else loading">
 | |
|         {{ mempoolInfoData.value.memPoolInfo.size | number }} <span i18n="dashboard.txs">TXs</span>
 | |
|       </p>
 | |
|     </div>
 | |
|     <div class="item bar">
 | |
|       <h5 class="card-title" i18n="dashboard.memory-usage|Memory usage">Memory usage</h5>
 | |
|       <div class="card-text" *ngIf="(isLoadingWebSocket$ | async) === false && mempoolInfoData.value; else loadingbig">
 | |
|         <div class="progress">
 | |
|           <div class="progress-bar {{ mempoolInfoData.value.mempoolSizeProgress }}" role="progressbar" [ngStyle]="{'width': (mempoolInfoData.value.memPoolInfo.usage / mempoolInfoData.value.memPoolInfo.maxmempool * 100) + '%' }"> </div>
 | |
|           <div class="progress-text">‎<span [innerHTML]="mempoolInfoData.value.memPoolInfo.usage | bytes"></span> / <span [innerHTML]="mempoolInfoData.value.memPoolInfo.maxmempool | bytes"></span></div>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|   </div>
 | |
| </ng-template>
 | |
| 
 | |
| <ng-template #lbtcPegs let-mempoolInfoData>
 | |
|   <div class="mempool-info-data">
 | |
|     <div class="item">
 | |
|       <h5 class="card-title" i18n="dashboard.lbtc-pegs-in-circulation">L-BTC in circulation</h5>
 | |
|       <ng-container *ngIf="(liquidPegsMonth$ | async) as liquidPegsMonth; else loadingTransactions">
 | |
|         <p class="card-text">{{ liquidPegsMonth.series.slice(-1)[0] | number: '1.2-2' }} <span>L-BTC</span></p>
 | |
|       </ng-container>
 | |
|     </div>
 | |
|   </div>
 | |
| </ng-template>
 | |
| 
 | |
| <ng-template #txPerSecond let-mempoolInfoData>
 | |
|   <h5 class="card-title" i18n="dashboard.incoming-transactions">Incoming transactions</h5>
 | |
|   <ng-template [ngIf]="(isLoadingWebSocket$ | async) === false && mempoolInfoData.value" [ngIfElse]="loadingTransactions">
 | |
|     <span *ngIf="(mempoolLoadingStatus$ | async) !== 100; else inSync">
 | |
|        <span class="badge badge-pill badge-warning"><ng-container i18n="dashboard.backend-is-synchronizing">Backend is synchronizing</ng-container> ({{ mempoolLoadingStatus$ | async }}%)</span>
 | |
|     </span>
 | |
|     <ng-template #inSync>
 | |
|       <div class="progress inc-tx-progress-bar">
 | |
|         <div class="progress-bar" role="progressbar" [ngStyle]="{'width': mempoolInfoData.value.progressWidth, 'background-color': mempoolInfoData.value.progressColor}"> </div>
 | |
|         <div class="progress-text">‎{{ mempoolInfoData.value.vBytesPerSecond | ceil | number }} <ng-container i18n="shared.vbytes-per-second|vB/s">vB/s</ng-container></div>
 | |
|       </div>
 | |
|     </ng-template>
 | |
|   </ng-template>
 | |
| </ng-template>
 |