mirror of
https://github.com/Retropex/mempool.git
synced 2025-05-12 18:20:41 +02:00
Merge pull request #5813 from mempool/nymkappa/accelerator-receipt
[accelerator] show square receipt if available
This commit is contained in:
commit
b261001e79
@ -567,14 +567,29 @@
|
||||
} @else if (step === 'success') {
|
||||
<div class="row mb-1 text-center">
|
||||
<div class="col-sm">
|
||||
<h1 style="font-size: larger;"><ng-content select="[slot='accelerated-title']"></ng-content><span class="default-slot" i18n="accelerator.success-message">Your transaction is being accelerated!</span></h1>
|
||||
<h1 style="font-size: larger;"><ng-content select="[slot='accelerated-title']"></ng-content>
|
||||
@if (accelerationResponse) {
|
||||
<span class="default-slot" i18n="accelerator.success-message">Your transaction is being accelerated!</span>
|
||||
} @else {
|
||||
<span class="default-slot" i18n="accelerator.success-message-third-party">Transaction is already being accelerated!</span>
|
||||
}
|
||||
</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row text-center mt-1">
|
||||
<div class="col-sm">
|
||||
<div class="d-flex flex-row justify-content-center align-items-center">
|
||||
<span i18n="accelerator.confirmed-acceleration-with-miners">Your transaction has been accepted for acceleration by our mining pool partners.</span>
|
||||
@if (accelerationResponse) {
|
||||
<span i18n="accelerator.confirmed-acceleration-with-miners">Your transaction has been accepted for acceleration by our mining pool partners.</span>
|
||||
} @else {
|
||||
<span i18n="accelerator.confirmed-acceleration-with-miners-third-party">Transaction has already been accepted for acceleration by our mining pool partners.</span>
|
||||
}
|
||||
</div>
|
||||
@if (accelerationResponse?.receiptUrl) {
|
||||
<div class="d-flex flex-row justify-content-center align-items-center">
|
||||
<span i18n="accelerator.receipt-label"><a [href]="accelerationResponse.receiptUrl" target="_blank">Click here to get a receipt.</a></span>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
|
@ -87,6 +87,7 @@ export class AccelerateCheckout implements OnInit, OnDestroy {
|
||||
math = Math;
|
||||
isMobile: boolean = window.innerWidth <= 767.98;
|
||||
isProdDomain = false;
|
||||
accelerationResponse: { receiptUrl: string | null } | undefined;
|
||||
|
||||
private _step: CheckoutStep = 'summary';
|
||||
simpleMode: boolean = true;
|
||||
@ -194,16 +195,12 @@ export class AccelerateCheckout implements OnInit, OnDestroy {
|
||||
this.scrollToElement('acceleratePreviewAnchor', 'start');
|
||||
}
|
||||
if (changes.accelerating && this.accelerating) {
|
||||
if (this.step === 'processing' || this.step === 'paid') {
|
||||
this.moveToStep('success', true);
|
||||
} else { // Edge case where the transaction gets accelerated by someone else or on another session
|
||||
this.closeModal();
|
||||
}
|
||||
this.moveToStep('success', true);
|
||||
}
|
||||
}
|
||||
|
||||
moveToStep(step: CheckoutStep, force: boolean = false): void {
|
||||
if (this.isCheckoutLocked > 0 && !force) {
|
||||
if (this.isCheckoutLocked > 0 && !force || this.step === 'success') {
|
||||
return;
|
||||
}
|
||||
this.processing = false;
|
||||
@ -541,7 +538,8 @@ export class AccelerateCheckout implements OnInit, OnDestroy {
|
||||
`accelerator-${this.tx.txid.substring(0, 15)}-${Math.round(new Date().getTime() / 1000)}`,
|
||||
costUSD
|
||||
).subscribe({
|
||||
next: () => {
|
||||
next: (response) => {
|
||||
this.accelerationResponse = response;
|
||||
this.processing = false;
|
||||
this.apiService.logAccelerationRequest$(this.tx.txid).subscribe();
|
||||
this.audioService.playSound('ascend-chime-cartoon');
|
||||
@ -668,7 +666,8 @@ export class AccelerateCheckout implements OnInit, OnDestroy {
|
||||
costUSD,
|
||||
verificationToken.userChallenged
|
||||
).subscribe({
|
||||
next: () => {
|
||||
next: (response) => {
|
||||
this.accelerationResponse = response;
|
||||
this.processing = false;
|
||||
this.apiService.logAccelerationRequest$(this.tx.txid).subscribe();
|
||||
this.audioService.playSound('ascend-chime-cartoon');
|
||||
@ -777,7 +776,8 @@ export class AccelerateCheckout implements OnInit, OnDestroy {
|
||||
costUSD,
|
||||
verificationToken.userChallenged
|
||||
).subscribe({
|
||||
next: () => {
|
||||
next: (response) => {
|
||||
this.accelerationResponse = response;
|
||||
this.processing = false;
|
||||
this.apiService.logAccelerationRequest$(this.tx.txid).subscribe();
|
||||
this.audioService.playSound('ascend-chime-cartoon');
|
||||
@ -870,7 +870,8 @@ export class AccelerateCheckout implements OnInit, OnDestroy {
|
||||
tokenResult.details.cashAppPay.referenceId,
|
||||
costUSD
|
||||
).subscribe({
|
||||
next: () => {
|
||||
next: (response) => {
|
||||
this.accelerationResponse = response;
|
||||
this.processing = false;
|
||||
this.apiService.logAccelerationRequest$(this.tx.txid).subscribe();
|
||||
this.audioService.playSound('ascend-chime-cartoon');
|
||||
|
Loading…
Reference in New Issue
Block a user