Compare commits

..

1 Commits

Author SHA1 Message Date
54c7e09687 chore(deps): update devdependencies (non-major)
Some checks failed
renovate/artifacts Artifact file update failure
Build / Build and analyze (pull_request) Successful in 1m37s
2024-10-22 06:01:01 +00:00
5 changed files with 3648 additions and 4522 deletions

@ -0,0 +1,30 @@
name: Build
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
# If you wish to fail your job when the Quality Gate is red, uncomment the
# following lines. This would typically be used to fail a deployment.
# We do not recommend to use this in a pull request. Prefer using pull request
# decoration instead.
# - uses: sonarsource/sonarqube-quality-gate-action@master
# timeout-minutes: 5
# env:
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

BIN
bun.lockb

Binary file not shown.

8107
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -1,2 +1,7 @@
<h1>{{'hello' | uppercase | text}}</h1> <h1>{{'hello' | uppercase | text}}</h1>
<app-search [(input)]="search"></app-search> <app-search [(input)]="search"></app-search>
@for (let hotel of foundHotels | async) {
@if (search === "") {
<app-hotel-item [hotel]="hotel"></app-hotel-item>
}
}

@ -5,7 +5,7 @@ import { AsyncPipe, UpperCasePipe } from '@angular/common';
import { TextPipe } from '../text.pipe'; import { TextPipe } from '../text.pipe';
import { HotelService } from './Parent/services/hotel.service'; import { HotelService } from './Parent/services/hotel.service';
import { inject } from '@angular/core'; import { inject } from '@angular/core';
import { filter, from, map, Observable, range, tap, toArray } from 'rxjs'; import { filter, map, Observable, range } from 'rxjs';
@Component({ @Component({
selector: 'app-root', selector: 'app-root',
@ -20,18 +20,20 @@ export class AppComponent {
public hotelService: HotelService = inject(HotelService); public hotelService: HotelService = inject(HotelService);
ngOnInit() { ngOnInit() {
const stream: Observable<number | string> = from([5, 1, 2, 12, 5, 14, 17, 5, "testing"]); const stream: Observable<number> = range(1, 10);
stream.pipe( stream.pipe(
filter((value) => typeof value === "number"), filter((value: number) => value % 2 === 1),
tap((value) => console.log("Zahl:" + value)), ).subscribe((value) => console.log(value));
filter((value: number) => value % 2 === 0), console.log('---')
tap((value) => console.log("Gerade Zahl: " + value)),
toArray(), stream.pipe(
).subscribe(console.log); map((value: number) => value * 2)
).subscribe((value) => console.log(value));
} }
public test() { public test() {
8
console.log(this.search); console.log(this.search);
} }