Show miner tag under blocks in the mining dashboard
This commit is contained in:
		
							parent
							
								
									5ab4c0e611
								
							
						
					
					
						commit
						fb2c0345a7
					
				| @ -21,7 +21,7 @@ | |||||||
|         </div> |         </div> | ||||||
|         <div class="time-difference"><app-time-since [time]="block.timestamp" [fastRender]="true"></app-time-since></div> |         <div class="time-difference"><app-time-since [time]="block.timestamp" [fastRender]="true"></app-time-since></div> | ||||||
|       </div> |       </div> | ||||||
|     <div class="" *ngIf="showMiningInfo === true"> |     <div class="animated" [class]="showMiningInfo ? 'show' : 'hide'" *ngIf="block.extras?.pool != undefined"> | ||||||
|       <a class="badge badge-primary" [routerLink]="[('/mining/pool/' + block.extras.pool.id) | relativeUrl]"> |       <a class="badge badge-primary" [routerLink]="[('/mining/pool/' + block.extras.pool.id) | relativeUrl]"> | ||||||
|         {{ block.extras.pool.name}}</a> |         {{ block.extras.pool.name}}</a> | ||||||
|     </div> |     </div> | ||||||
|  | |||||||
| @ -129,4 +129,15 @@ | |||||||
|   position: relative; |   position: relative; | ||||||
|   top: 15px; |   top: 15px; | ||||||
|   z-index: 101; |   z-index: 101; | ||||||
| } | } | ||||||
|  | 
 | ||||||
|  | .animated { | ||||||
|  |   transition: all 0.15s ease-in-out; | ||||||
|  | } | ||||||
|  | .show { | ||||||
|  |   opacity: 1; | ||||||
|  | } | ||||||
|  | .hide { | ||||||
|  |   opacity: 0; | ||||||
|  |   pointer-events : none; | ||||||
|  | } | ||||||
|  | |||||||
| @ -1,9 +1,10 @@ | |||||||
| import { Component, OnInit, OnDestroy, ChangeDetectionStrategy, ChangeDetectorRef, Input } from '@angular/core'; | import { Component, OnInit, OnDestroy, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; | ||||||
| import { Observable, Subscription } from 'rxjs'; | import { Observable, Subscription } from 'rxjs'; | ||||||
| import { StateService } from 'src/app/services/state.service'; | import { StateService } from 'src/app/services/state.service'; | ||||||
| import { Router } from '@angular/router'; |  | ||||||
| import { specialBlocks } from 'src/app/app.constants'; | import { specialBlocks } from 'src/app/app.constants'; | ||||||
| import { BlockExtended } from 'src/app/interfaces/node-api.interface'; | import { BlockExtended } from 'src/app/interfaces/node-api.interface'; | ||||||
|  | import { Location } from '@angular/common'; | ||||||
|  | import { config } from 'process'; | ||||||
| 
 | 
 | ||||||
| @Component({ | @Component({ | ||||||
|   selector: 'app-blockchain-blocks', |   selector: 'app-blockchain-blocks', | ||||||
| @ -12,7 +13,6 @@ import { BlockExtended } from 'src/app/interfaces/node-api.interface'; | |||||||
|   changeDetection: ChangeDetectionStrategy.OnPush, |   changeDetection: ChangeDetectionStrategy.OnPush, | ||||||
| }) | }) | ||||||
| export class BlockchainBlocksComponent implements OnInit, OnDestroy { | export class BlockchainBlocksComponent implements OnInit, OnDestroy { | ||||||
|   @Input() showMiningInfo: boolean = false; |  | ||||||
|   specialBlocks = specialBlocks; |   specialBlocks = specialBlocks; | ||||||
|   network = ''; |   network = ''; | ||||||
|   blocks: BlockExtended[] = []; |   blocks: BlockExtended[] = []; | ||||||
| @ -32,6 +32,7 @@ export class BlockchainBlocksComponent implements OnInit, OnDestroy { | |||||||
|   arrowLeftPx = 30; |   arrowLeftPx = 30; | ||||||
|   blocksFilled = false; |   blocksFilled = false; | ||||||
|   transition = '1s'; |   transition = '1s'; | ||||||
|  |   showMiningInfo = false; | ||||||
| 
 | 
 | ||||||
|   gradientColors = { |   gradientColors = { | ||||||
|     '': ['#9339f4', '#105fb0'], |     '': ['#9339f4', '#105fb0'], | ||||||
| @ -44,11 +45,23 @@ export class BlockchainBlocksComponent implements OnInit, OnDestroy { | |||||||
| 
 | 
 | ||||||
|   constructor( |   constructor( | ||||||
|     public stateService: StateService, |     public stateService: StateService, | ||||||
|     private router: Router, |  | ||||||
|     private cd: ChangeDetectorRef, |     private cd: ChangeDetectorRef, | ||||||
|   ) { } |     private location: Location, | ||||||
|  |     private cdr: ChangeDetectorRef | ||||||
|  |   ) { | ||||||
|  |   } | ||||||
|  | 
 | ||||||
|  |   enabledMiningInfoIfNeeded(url) { | ||||||
|  |     this.showMiningInfo = url === '/mining'; | ||||||
|  |     this.cdr.detectChanges(); // Need to update the view asap
 | ||||||
|  |   } | ||||||
| 
 | 
 | ||||||
|   ngOnInit() { |   ngOnInit() { | ||||||
|  |     if (['', 'testnet', 'signet'].includes(this.stateService.network)) { | ||||||
|  |       this.enabledMiningInfoIfNeeded(this.location.path()); | ||||||
|  |       this.location.onUrlChange((url) => this.enabledMiningInfoIfNeeded(url)); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|     if (this.stateService.network === 'liquid' || this.stateService.network === 'liquidtestnet') { |     if (this.stateService.network === 'liquid' || this.stateService.network === 'liquidtestnet') { | ||||||
|       this.feeRounding = '1.0-1'; |       this.feeRounding = '1.0-1'; | ||||||
|     } |     } | ||||||
|  | |||||||
| @ -1,8 +1,8 @@ | |||||||
| <div class="text-center" class="blockchain-wrapper animate" #container> | <div class="text-center" class="blockchain-wrapper" #container> | ||||||
|   <div class="position-container {{ network }}"> |   <div class="position-container {{ network }}"> | ||||||
|     <span> |     <span> | ||||||
|       <app-mempool-blocks></app-mempool-blocks> |       <app-mempool-blocks></app-mempool-blocks> | ||||||
|       <app-blockchain-blocks [showMiningInfo]="showMiningInfo"></app-blockchain-blocks> |       <app-blockchain-blocks></app-blockchain-blocks> | ||||||
|       <div id="divider"></div> |       <div id="divider"></div> | ||||||
|     </span> |     </span> | ||||||
|   </div> |   </div> | ||||||
|  | |||||||
| @ -59,14 +59,4 @@ | |||||||
|   width: 300px; |   width: 300px; | ||||||
|   left: -150px; |   left: -150px; | ||||||
|   top: 0px; |   top: 0px; | ||||||
| } | } | ||||||
| 
 |  | ||||||
| .animate { |  | ||||||
|   transition: all 1s ease-in-out; |  | ||||||
| } |  | ||||||
| .move-left { |  | ||||||
|   transform: translate(-40%, 0); |  | ||||||
| 	@media (max-width: 767.98px) { |  | ||||||
|     transform: translate(-85%, 0); |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @ -8,7 +8,6 @@ import { StateService } from 'src/app/services/state.service'; | |||||||
|   changeDetection: ChangeDetectionStrategy.OnPush, |   changeDetection: ChangeDetectionStrategy.OnPush, | ||||||
| }) | }) | ||||||
| export class BlockchainComponent implements OnInit { | export class BlockchainComponent implements OnInit { | ||||||
|   showMiningInfo: boolean = false; |  | ||||||
|   network: string; |   network: string; | ||||||
| 
 | 
 | ||||||
|   constructor( |   constructor( | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user