2022-09-17 01:20:08 +00:00
|
|
|
import { Component, ElementRef, ViewChild, Input, OnChanges, ChangeDetectionStrategy } from '@angular/core';
|
2022-09-21 17:23:45 +02:00
|
|
|
import { TransactionStripped } from '../../interfaces/websocket.interface';
|
2022-09-17 01:20:08 +00:00
|
|
|
|
2022-09-17 17:23:44 +00:00
|
|
|
interface Xput {
|
|
|
|
type: 'input' | 'output' | 'fee';
|
|
|
|
value?: number;
|
|
|
|
index?: number;
|
2022-11-22 10:05:14 +09:00
|
|
|
txid?: string;
|
|
|
|
vin?: number;
|
|
|
|
vout?: number;
|
2022-09-17 17:23:44 +00:00
|
|
|
address?: string;
|
|
|
|
rest?: number;
|
|
|
|
coinbase?: boolean;
|
|
|
|
pegin?: boolean;
|
|
|
|
pegout?: string;
|
|
|
|
confidential?: boolean;
|
|
|
|
}
|
|
|
|
|
2022-09-17 01:20:08 +00:00
|
|
|
@Component({
|
|
|
|
selector: 'app-tx-bowtie-graph-tooltip',
|
|
|
|
templateUrl: './tx-bowtie-graph-tooltip.component.html',
|
|
|
|
styleUrls: ['./tx-bowtie-graph-tooltip.component.scss'],
|
|
|
|
})
|
|
|
|
export class TxBowtieGraphTooltipComponent implements OnChanges {
|
2022-09-17 17:23:44 +00:00
|
|
|
@Input() line: Xput | void;
|
2022-09-17 01:20:08 +00:00
|
|
|
@Input() cursorPosition: { x: number, y: number };
|
2022-11-22 10:05:14 +09:00
|
|
|
@Input() isConnector: boolean = false;
|
2022-09-17 01:20:08 +00:00
|
|
|
|
|
|
|
tooltipPosition = { x: 0, y: 0 };
|
|
|
|
|
|
|
|
@ViewChild('tooltip') tooltipElement: ElementRef<HTMLCanvasElement>;
|
|
|
|
|
|
|
|
constructor() {}
|
|
|
|
|
|
|
|
ngOnChanges(changes): void {
|
|
|
|
if (changes.cursorPosition && changes.cursorPosition.currentValue) {
|
|
|
|
let x = Math.max(10, changes.cursorPosition.currentValue.x - 50);
|
|
|
|
let y = changes.cursorPosition.currentValue.y + 20;
|
|
|
|
if (this.tooltipElement) {
|
|
|
|
const elementBounds = this.tooltipElement.nativeElement.getBoundingClientRect();
|
|
|
|
const parentBounds = this.tooltipElement.nativeElement.offsetParent.getBoundingClientRect();
|
|
|
|
if ((parentBounds.left + x + elementBounds.width) > parentBounds.right) {
|
|
|
|
x = Math.max(0, parentBounds.width - elementBounds.width - 10);
|
|
|
|
}
|
|
|
|
if (y + elementBounds.height > parentBounds.height) {
|
|
|
|
y = y - elementBounds.height - 20;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.tooltipPosition = { x, y };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|