mirror of
https://github.com/mempool/mempool.git
synced 2025-01-10 15:30:05 +01:00
15fdb69b96
fixes #133
73 lines
2.1 KiB
TypeScript
73 lines
2.1 KiB
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { WebsocketService } from '../../services/websocket.service';
|
|
import { SeoService } from 'src/app/services/seo.service';
|
|
import { StateService } from 'src/app/services/state.service';
|
|
import { Observable } from 'rxjs';
|
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
import { ApiService } from 'src/app/services/api.service';
|
|
import { env } from '../../app.constants';
|
|
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
|
|
import { map } from 'rxjs/operators';
|
|
|
|
@Component({
|
|
selector: 'app-about',
|
|
templateUrl: './about.component.html',
|
|
styleUrls: ['./about.component.scss'],
|
|
})
|
|
export class AboutComponent implements OnInit {
|
|
gitCommit$: Observable<string>;
|
|
donationForm: FormGroup;
|
|
donationStatus = 1;
|
|
sponsors$: Observable<any>;
|
|
donationObj: any;
|
|
sponsorsEnabled = env.SPONSORS_ENABLED;
|
|
sponsors = null;
|
|
|
|
constructor(
|
|
private websocketService: WebsocketService,
|
|
private seoService: SeoService,
|
|
private stateService: StateService,
|
|
private formBuilder: FormBuilder,
|
|
private apiService: ApiService,
|
|
private sanitizer: DomSanitizer,
|
|
) { }
|
|
|
|
ngOnInit() {
|
|
this.gitCommit$ = this.stateService.gitCommit$.pipe(map((str) => str.substr(0, 8)));
|
|
this.seoService.setTitle('About');
|
|
this.websocketService.want(['blocks']);
|
|
|
|
this.donationForm = this.formBuilder.group({
|
|
amount: [0.01],
|
|
handle: [''],
|
|
});
|
|
|
|
this.apiService.getDonation$()
|
|
.subscribe((sponsors) => {
|
|
this.sponsors = sponsors;
|
|
});
|
|
|
|
this.apiService.getDonation$()
|
|
this.stateService.donationConfirmed$.subscribe(() => this.donationStatus = 4);
|
|
}
|
|
|
|
submitDonation() {
|
|
if (this.donationForm.invalid) {
|
|
return;
|
|
}
|
|
this.apiService.requestDonation$(
|
|
this.donationForm.get('amount').value,
|
|
this.donationForm.get('handle').value
|
|
)
|
|
.subscribe((response) => {
|
|
this.websocketService.trackDonation(response.id);
|
|
this.donationObj = response;
|
|
this.donationStatus = 3;
|
|
});
|
|
}
|
|
|
|
bypassSecurityTrustUrl(text: string): SafeUrl {
|
|
return this.sanitizer.bypassSecurityTrustUrl(text);
|
|
}
|
|
}
|