File size: 798 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
import { ChangeDetectionStrategy, Component, inject } from '@angular/core'
import { injectQuery } from '@tanstack/angular-query-experimental'
import { HttpClient } from '@angular/common/http'
import { lastValueFrom } from 'rxjs'
interface Response {
name: string
description: string
subscribers_count: number
stargazers_count: number
forks_count: number
}
@Component({
changeDetection: ChangeDetectionStrategy.OnPush,
selector: 'simple-example',
templateUrl: './simple-example.component.html',
})
export class SimpleExampleComponent {
readonly #http = inject(HttpClient)
readonly query = injectQuery(() => ({
queryKey: ['repoData'],
queryFn: () =>
lastValueFrom(
this.#http.get<Response>('https://api.github.com/repos/tanstack/query'),
),
}))
}
|