diff --git a/backend/src/interfaces.ts b/backend/src/interfaces.ts index d525f18c6..9ca54dbb0 100644 --- a/backend/src/interfaces.ts +++ b/backend/src/interfaces.ts @@ -59,6 +59,7 @@ export interface Prevout { scriptpubkey_type: string; scriptpubkey_address: string; value: number; + asset?: string; } export interface Vin { diff --git a/frontend/src/app/assets/assets.component.ts b/frontend/src/app/assets/assets.component.ts index d63d13377..14c3146f5 100644 --- a/frontend/src/app/assets/assets.component.ts +++ b/frontend/src/app/assets/assets.component.ts @@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core'; import { AssetsService } from '../services/assets.service'; import { environment } from 'src/environments/environment'; import { FormGroup, FormBuilder, Validators } from '@angular/forms'; -import { filter, distinctUntilChanged } from 'rxjs/operators'; +import { distinctUntilChanged } from 'rxjs/operators'; @Component({ selector: 'app-assets', @@ -32,13 +32,11 @@ export class AssetsComponent implements OnInit { ngOnInit() { this.itemsPerPage = Math.max(Math.round(this.contentSpace / this.fiveItemsPxSize) * 5, 10); - setTimeout(() => this.getAssets()); - this.searchForm = this.formBuilder.group({ - searchText: ['', Validators.required], + searchText: [{ value: '', disabled: true }, Validators.required] }); - this.searchForm.controls.searchText.valueChanges + this.searchForm.get('searchText').valueChanges .pipe( distinctUntilChanged(), ) @@ -54,6 +52,8 @@ export class AssetsComponent implements OnInit { this.filteredAssets = this.assets.slice(0, this.itemsPerPage); } }); + + this.getAssets(); } getAssets() { @@ -67,6 +67,7 @@ export class AssetsComponent implements OnInit { }); this.assets = this.assets.sort((a: any, b: any) => a.name.localeCompare(b.name)); this.assetsCache = this.assets; + this.searchForm.controls['searchText'].enable(); this.filteredAssets = this.assets.slice(0, this.itemsPerPage); this.isLoading = false; }, diff --git a/frontend/src/app/components/transactions-list/transactions-list.component.html b/frontend/src/app/components/transactions-list/transactions-list.component.html index 115de55c9..6c3a0d579 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.html +++ b/frontend/src/app/components/transactions-list/transactions-list.component.html @@ -51,7 +51,14 @@ - + +
+ +
+
+ + + @@ -85,14 +92,9 @@ - +
- {{ vout.value / 100000000 | number: '1.0-' + assetsMinimal[vout.asset][3] }} {{ assetsMinimal[vout.asset][1] }} -
- {{ assetsMinimal[vout.asset][0] }} -
- {{ vout.asset | shortenString : 13 }} -

+
@@ -147,3 +149,12 @@
+ + + {{ item.value / 100000000 | number: '1.0-' + assetsMinimal[item.asset][3] }} {{ assetsMinimal[item.asset][1] }} +
+ {{ assetsMinimal[item.asset][0] }} +
+ {{ item.asset | shortenString : 13 }} +

+
diff --git a/frontend/src/app/interfaces/electrs.interface.ts b/frontend/src/app/interfaces/electrs.interface.ts index 20b64a2a5..7d6fac34c 100644 --- a/frontend/src/app/interfaces/electrs.interface.ts +++ b/frontend/src/app/interfaces/electrs.interface.ts @@ -24,6 +24,7 @@ export interface Prevout { scriptpubkey_type: string; scriptpubkey_address: string; value: number; + asset?: string; } export interface Vin {