@@ -59,45 +59,39 @@ export class TabsListComponent {
59
59
readonly tabs = contentChildren ( TabDirective ) ;
60
60
#focusKeyManager! : FocusKeyManager < TabDirective > ;
61
61
62
- readonly tabsEffect = effect (
63
- ( ) => {
64
- if ( this . tabs ( ) . length === 0 ) {
65
- return ;
66
- }
67
- this . #focusKeyManager = new FocusKeyManager ( this . tabs ( ) )
68
- . skipPredicate ( ( tab ) => tab . disabled === true )
69
- . withHorizontalOrientation ( 'ltr' )
70
- . withHomeAndEnd ( )
71
- . withWrap ( ) ;
62
+ readonly tabsEffect = effect ( ( ) => {
63
+ if ( this . tabs ( ) . length === 0 ) {
64
+ return ;
65
+ }
66
+ this . #focusKeyManager = new FocusKeyManager ( this . tabs ( ) )
67
+ . skipPredicate ( ( tab ) => tab . disabled === true )
68
+ . withHorizontalOrientation ( 'ltr' )
69
+ . withHomeAndEnd ( )
70
+ . withWrap ( ) ;
72
71
73
- this . #focusKeyManager. change
74
- . pipe (
75
- tap ( ( value ) => {
76
- this . tabsService . activeItemKey . set ( this . #focusKeyManager. activeItem ?. itemKey ( ) ) ;
77
- this . tabsService . activeItem . set ( this . #focusKeyManager. activeItem ) ;
78
- } ) ,
79
- takeUntilDestroyed ( this . #destroyRef)
80
- )
81
- . subscribe ( ) ;
72
+ this . #focusKeyManager. change
73
+ . pipe (
74
+ tap ( ( value ) => {
75
+ this . tabsService . activeItemKey . set ( this . #focusKeyManager. activeItem ?. itemKey ( ) ) ;
76
+ this . tabsService . activeItem . set ( this . #focusKeyManager. activeItem ) ;
77
+ } ) ,
78
+ takeUntilDestroyed ( this . #destroyRef)
79
+ )
80
+ . subscribe ( ) ;
82
81
83
- const activeItem = this . tabs ( ) . find ( ( tab ) => untracked ( tab . isActive ) ) ?? this . tabs ( ) . find ( ( tab ) => ! tab . disabled ) ;
84
- const activeItemIndex = this . tabs ( ) . findIndex ( ( tab ) => tab === activeItem ) ;
85
- this . #focusKeyManager?. updateActiveItem ( activeItemIndex < 0 ? 0 : activeItemIndex ) ;
86
- this . tabsService . activeItemKey . set ( this . #focusKeyManager. activeItem ?. itemKey ( ) ) ;
87
- this . tabsService . activeItem . set ( this . #focusKeyManager. activeItem ) ;
88
- } ,
89
- { allowSignalWrites : true }
90
- ) ;
82
+ const activeItem = this . tabs ( ) . find ( ( tab ) => untracked ( tab . isActive ) ) ?? this . tabs ( ) . find ( ( tab ) => ! tab . disabled ) ;
83
+ const activeItemIndex = this . tabs ( ) . findIndex ( ( tab ) => tab === activeItem ) ;
84
+ this . #focusKeyManager?. updateActiveItem ( activeItemIndex < 0 ? 0 : activeItemIndex ) ;
85
+ this . tabsService . activeItemKey . set ( this . #focusKeyManager. activeItem ?. itemKey ( ) ) ;
86
+ this . tabsService . activeItem . set ( this . #focusKeyManager. activeItem ) ;
87
+ } ) ;
91
88
92
- tabsServiceEffect = effect (
93
- ( ) => {
94
- const activeItemIndex = this . tabs ( ) . findIndex (
95
- ( tab ) => untracked ( tab . isActive ) && untracked ( tab . itemKey ) === this . tabsService . activeItemKey ( )
96
- ) ;
97
- this . #focusKeyManager?. updateActiveItem ( activeItemIndex < 0 ? 0 : activeItemIndex ) ;
98
- } ,
99
- { allowSignalWrites : true }
100
- ) ;
89
+ tabsServiceEffect = effect ( ( ) => {
90
+ const activeItemIndex = this . tabs ( ) . findIndex (
91
+ ( tab ) => untracked ( tab . isActive ) && untracked ( tab . itemKey ) === this . tabsService . activeItemKey ( )
92
+ ) ;
93
+ this . #focusKeyManager?. updateActiveItem ( activeItemIndex < 0 ? 0 : activeItemIndex ) ;
94
+ } ) ;
101
95
102
96
@HostListener ( 'keydown' , [ '$event' ] )
103
97
onKeydown ( $event : any ) {
0 commit comments