1
1
import { CommonModule , NgClass } from '@angular/common' ;
2
2
import { Component } from '@angular/core' ;
3
- import { UntilDestroy } from '@ngneat/until-destroy' ;
4
3
import { concat , timer } from 'rxjs' ;
5
- import { delay , map , repeat , startWith , takeWhile , tap } from 'rxjs/operators' ;
4
+ import { map , repeat , startWith , take , takeWhile } from 'rxjs/operators' ;
6
5
7
- @UntilDestroy ( )
8
6
@Component ( {
9
7
selector : 't-logo' ,
10
8
standalone : true ,
@@ -13,29 +11,30 @@ import { delay, map, repeat, startWith, takeWhile, tap } from 'rxjs/operators';
13
11
styleUrls : [ './logo.component.scss' ]
14
12
} )
15
13
export class LogoComponent {
16
- blinkingEyesClass$ = timer ( 0 , 500 ) . pipe (
17
- startWith ( 0 ) ,
18
- map ( ( x ) => x + 1 ) ,
19
- takeWhile ( ( x ) => x < 6 ) ,
20
- map ( ( x ) => `l${ x % 2 === 0 ? 1 : 2 } ` )
21
- ) ;
22
-
23
14
runningClass$ = timer ( 0 , 100 ) . pipe (
24
15
startWith ( 0 ) ,
25
- map ( ( x ) => x + 1 ) ,
26
- takeWhile ( ( x ) => x <= 40 ) ,
27
- map ( ( x ) => {
28
- const range = Math . ceil ( x / 10 ) ;
16
+ takeWhile ( ( t ) => t < 40 ) ,
17
+ map ( ( t ) => {
18
+ const range = Math . ceil ( ( t + 1 ) / 10 ) ;
29
19
const side = range % 2 === 0 ? 'l' : 'r' ;
30
- const runningLegState = x % 2 === 0 ? 3 : 4 ;
31
- const legState = x === 40 ? 1 : runningLegState ;
20
+ const runningLegState = t % 2 === 1 ? 3 : 4 ;
21
+ const legState = t === 39 ? 1 : runningLegState ;
32
22
return `${ side } ${ legState } ` ;
33
23
} )
34
24
) ;
35
25
36
- dragonNgClass$ = concat ( this . blinkingEyesClass$ , this . runningClass$ ) . pipe (
37
- delay ( 5000 ) ,
38
- repeat ( 1000 ) ,
39
- map ( ( className ) => [ 'bg dragon' , className ] )
26
+ blinkingEyesClass$ = timer ( 0 , 500 ) . pipe (
27
+ startWith ( 0 ) ,
28
+ takeWhile ( ( t ) => t < 5 ) ,
29
+ map ( ( t ) => `l${ t % 2 === 1 ? 1 : 2 } ` )
30
+ ) ;
31
+
32
+ restingClass$ = timer ( 5000 ) . pipe (
33
+ startWith ( 0 ) ,
34
+ map ( ( ) => 'l2' )
35
+ ) ;
36
+
37
+ dragonClass$ = concat ( this . runningClass$ , this . blinkingEyesClass$ , this . restingClass$ ) . pipe (
38
+ repeat ( Infinity )
40
39
) ;
41
40
}
0 commit comments