1
1
import { useSession , useUser } from '@clerk/shared/react' ;
2
2
import type { SessionWithActivitiesResource } from '@clerk/types' ;
3
- import React from 'react' ;
4
3
5
4
import { Badge , Col , descriptors , Flex , Icon , localizationKeys , Text , useLocalizations } from '../../customizables' ;
6
5
import { FullHeightLoader , ProfileSection , ThreeDotsMenu } from '../../elements' ;
7
- import { Action } from '../../elements/Action' ;
8
- import { useLoadingStatus } from '../../hooks' ;
6
+ import { useFetch , useLoadingStatus } from '../../hooks' ;
9
7
import { DeviceLaptop , DeviceMobile } from '../../icons' ;
10
8
import { mqu , type PropsOfComponent } from '../../styledSystem' ;
11
9
import { getRelativeToNowDateKey } from '../../utils' ;
@@ -14,11 +12,8 @@ import { currentSessionFirst } from './utils';
14
12
export const ActiveDevicesSection = ( ) => {
15
13
const { user } = useUser ( ) ;
16
14
const { session } = useSession ( ) ;
17
- const [ sessionsWithActivities , setSessionsWithActivities ] = React . useState < SessionWithActivitiesResource [ ] > ( [ ] ) ;
18
15
19
- React . useEffect ( ( ) => {
20
- void user ?. getSessions ( ) . then ( sa => setSessionsWithActivities ( sa ) ) ;
21
- } , [ user ] ) ;
16
+ const { data : sessions , isLoading } = useFetch ( user ?. getSessions , 'user-sessions' ) ;
22
17
23
18
return (
24
19
< ProfileSection . Root
@@ -27,20 +22,22 @@ export const ActiveDevicesSection = () => {
27
22
id = 'activeDevices'
28
23
>
29
24
< ProfileSection . ItemList id = 'activeDevices' >
30
- { ! sessionsWithActivities . length && < FullHeightLoader /> }
31
- { ! ! sessionsWithActivities . length &&
32
- sessionsWithActivities . sort ( currentSessionFirst ( session ! . id ) ) . map ( sa => (
33
- < DeviceAccordion
25
+ { isLoading ? (
26
+ < FullHeightLoader />
27
+ ) : (
28
+ sessions ?. sort ( currentSessionFirst ( session ! . id ) ) . map ( sa => (
29
+ < DeviceItem
34
30
key = { sa . id }
35
31
session = { sa }
36
32
/>
37
- ) ) }
33
+ ) )
34
+ ) }
38
35
</ ProfileSection . ItemList >
39
36
</ ProfileSection . Root >
40
37
) ;
41
38
} ;
42
39
43
- const DeviceAccordion = ( { session } : { session : SessionWithActivitiesResource } ) => {
40
+ const DeviceItem = ( { session } : { session : SessionWithActivitiesResource } ) => {
44
41
const isCurrent = useSession ( ) . session ?. id === session . id ;
45
42
const status = useLoadingStatus ( ) ;
46
43
const revoke = async ( ) => {
@@ -52,30 +49,26 @@ const DeviceAccordion = ({ session }: { session: SessionWithActivitiesResource }
52
49
} ;
53
50
54
51
return (
55
- < Action . Root >
56
- < Action . Closed value = '' >
57
- < ProfileSection . Item
58
- id = 'activeDevices'
59
- elementDescriptor = { descriptors . activeDeviceListItem }
60
- elementId = { isCurrent ? descriptors . activeDeviceListItem . setId ( 'current' ) : undefined }
61
- sx = { t => ( {
62
- alignItems : 'flex-start' ,
63
- padding : `${ t . space . $2 } ${ t . space . $4 } ` ,
64
- marginLeft : `-${ t . space . $4 } ` ,
65
- borderRadius : t . radii . $md ,
66
- ':hover' : { backgroundColor : t . colors . $blackAlpha50 } ,
67
- } ) }
68
- >
69
- { status . isLoading && < FullHeightLoader /> }
70
- { ! status . isLoading && (
71
- < >
72
- < DeviceInfo session = { session } />
73
- { ! isCurrent && < ActiveDeviceMenu revoke = { revoke } /> }
74
- </ >
75
- ) }
76
- </ ProfileSection . Item >
77
- </ Action . Closed >
78
- </ Action . Root >
52
+ < ProfileSection . Item
53
+ id = 'activeDevices'
54
+ elementDescriptor = { descriptors . activeDeviceListItem }
55
+ elementId = { isCurrent ? descriptors . activeDeviceListItem . setId ( 'current' ) : undefined }
56
+ sx = { t => ( {
57
+ alignItems : 'flex-start' ,
58
+ padding : `${ t . space . $2 } ${ t . space . $4 } ` ,
59
+ marginLeft : `-${ t . space . $4 } ` ,
60
+ borderRadius : t . radii . $md ,
61
+ ':hover' : { backgroundColor : t . colors . $blackAlpha50 } ,
62
+ } ) }
63
+ >
64
+ { status . isLoading && < FullHeightLoader /> }
65
+ { ! status . isLoading && (
66
+ < >
67
+ < DeviceInfo session = { session } />
68
+ { ! isCurrent && < ActiveDeviceMenu revoke = { revoke } /> }
69
+ </ >
70
+ ) }
71
+ </ ProfileSection . Item >
79
72
) ;
80
73
} ;
81
74
0 commit comments