Reverse tx flow diagram for RTL locales
This commit is contained in:
		
							parent
							
								
									7e01a22265
								
							
						
					
					
						commit
						6c1457e257
					
				@ -1,5 +1,5 @@
 | 
			
		||||
<div class="bowtie-graph">
 | 
			
		||||
  <svg *ngIf="inputs && outputs" class="bowtie" [attr.height]="(height + 10) + 'px'" [attr.width]="width + 'px'">
 | 
			
		||||
  <svg *ngIf="inputs && outputs" class="bowtie" [class.rtl]="dir === 'rtl'" [attr.height]="(height + 10) + 'px'" [attr.width]="width + 'px'">
 | 
			
		||||
    <defs>
 | 
			
		||||
      <marker id="input-arrow" viewBox="-5 -5 10 10"
 | 
			
		||||
          refX="0" refY="0"
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,8 @@
 | 
			
		||||
.bowtie {
 | 
			
		||||
  &.rtl {
 | 
			
		||||
    transform: scale(-1, 1);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .line {
 | 
			
		||||
    fill: none;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
import { Component, OnInit, Input, OnChanges, HostListener } from '@angular/core';
 | 
			
		||||
import { Component, OnInit, Input, OnChanges, HostListener, Inject, LOCALE_ID } from '@angular/core';
 | 
			
		||||
import { StateService } from '../../services/state.service';
 | 
			
		||||
import { Outspend, Transaction } from '../../interfaces/electrs.interface';
 | 
			
		||||
import { Router } from '@angular/router';
 | 
			
		||||
@ -50,6 +50,8 @@ export class TxBowtieGraphComponent implements OnInit, OnChanges {
 | 
			
		||||
  @Input() inputIndex: number;
 | 
			
		||||
  @Input() outputIndex: number;
 | 
			
		||||
 | 
			
		||||
  dir: 'rtl' | 'ltr' = 'ltr';
 | 
			
		||||
 | 
			
		||||
  inputData: Xput[];
 | 
			
		||||
  outputData: Xput[];
 | 
			
		||||
  inputs: SvgLine[];
 | 
			
		||||
@ -90,7 +92,12 @@ export class TxBowtieGraphComponent implements OnInit, OnChanges {
 | 
			
		||||
    private relativeUrlPipe: RelativeUrlPipe,
 | 
			
		||||
    private stateService: StateService,
 | 
			
		||||
    private apiService: ApiService,
 | 
			
		||||
  ) { }
 | 
			
		||||
    @Inject(LOCALE_ID) private locale: string,
 | 
			
		||||
  ) {
 | 
			
		||||
    if (this.locale.startsWith('ar') || this.locale.startsWith('fa') || this.locale.startsWith('he')) {
 | 
			
		||||
      this.dir = 'rtl';
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  ngOnInit(): void {
 | 
			
		||||
    this.initGraph();
 | 
			
		||||
@ -420,8 +427,12 @@ export class TxBowtieGraphComponent implements OnInit, OnChanges {
 | 
			
		||||
 | 
			
		||||
  @HostListener('pointermove', ['$event'])
 | 
			
		||||
  onPointerMove(event) {
 | 
			
		||||
    if (this.dir === 'rtl') {
 | 
			
		||||
      this.tooltipPosition = { x: this.width - event.offsetX, y: event.offsetY };
 | 
			
		||||
    } else {
 | 
			
		||||
     this.tooltipPosition = { x: event.offsetX, y: event.offsetY };
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  onHover(event, side, index): void {
 | 
			
		||||
    if (side.startsWith('input')) {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user