Compare commits
1 Commits
b3f4317129
...
54c7e09687
Author | SHA1 | Date | |
---|---|---|---|
54c7e09687 |
30
.gitea/workflows/build.yml
Normal file
30
.gitea/workflows/build.yml
Normal file
@ -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
BIN
bun.lockb
Binary file not shown.
8117
package-lock.json
generated
8117
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user