This repository was archived by the owner on Dec 19, 2024. It is now read-only.
File tree 2 files changed +14
-6
lines changed
2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 1
1
import Cookies from 'js-cookie' ;
2
2
import { TOKEN_COOKIE_NAME } from '../../lib/constants' ;
3
3
4
+ function easeInElement ( el : Element ) {
5
+ el . classList . add ( 'opacity-0' , 'transition-opacity' , 'duration-300' ) ;
6
+ el . classList . remove ( 'hidden' ) ;
7
+ setTimeout ( ( ) => {
8
+ el . classList . remove ( 'opacity-0' ) ;
9
+ } ) ;
10
+ }
11
+
4
12
function showHideAuthElements ( hideOrShow : 'hide' | 'show' = 'hide' ) {
5
13
document . querySelectorAll ( '[data-auth-required]' ) . forEach ( ( el ) => {
6
14
if ( hideOrShow === 'hide' ) {
7
15
el . classList . add ( 'hidden' ) ;
8
16
} else {
9
- el . classList . remove ( 'hidden' ) ;
17
+ easeInElement ( el ) ;
10
18
}
11
19
} ) ;
12
20
}
@@ -16,7 +24,7 @@ function showHideGuestElements(hideOrShow: 'hide' | 'show' = 'hide') {
16
24
if ( hideOrShow === 'hide' ) {
17
25
el . classList . add ( 'hidden' ) ;
18
26
} else {
19
- el . classList . remove ( 'hidden' ) ;
27
+ easeInElement ( el ) ;
20
28
}
21
29
} ) ;
22
30
}
Original file line number Diff line number Diff line change @@ -28,15 +28,15 @@ import AccountDropdown from './AccountDropdown.astro';
28
28
</li >
29
29
</ul >
30
30
<ul class =' hidden w-[172px] h-8 items-center gap-5 sm:flex justify-end' >
31
- <li data-guest-required >
31
+ <li data-guest-required class = " hidden " >
32
32
<a href =' /login' class =' text-gray-400 hover:text-white' >Login</a >
33
33
</li >
34
34
<li >
35
35
<AccountDropdown />
36
36
37
37
<a
38
38
data-guest-required
39
- class =' w-28 flex h-8 cursor-pointer items-center justify-center rounded-full bg-gradient-to-r from-blue-500 to-blue-700 px-4 py-2 text-sm font-medium text-white hover:from-blue-500 hover:to-blue-600'
39
+ class =' hidden w-28 flex h-8 cursor-pointer items-center justify-center rounded-full bg-gradient-to-r from-blue-500 to-blue-700 px-4 py-2 text-sm font-medium text-white hover:from-blue-500 hover:to-blue-600'
40
40
href =' /signup'
41
41
>
42
42
<span >Sign Up</span >
@@ -116,7 +116,7 @@ import AccountDropdown from './AccountDropdown.astro';
116
116
<a
117
117
data-guest-required
118
118
href =' /signup'
119
- class =' text-xl text-white md:text-lg'
119
+ class =' text-xl text-white md:text-lg hidden '
120
120
>
121
121
Login
122
122
</a >
@@ -125,7 +125,7 @@ import AccountDropdown from './AccountDropdown.astro';
125
125
<a
126
126
data-guest-required
127
127
href =' /signup'
128
- class =' text-xl text-green-300 hover:text-green-400 md:text-lg'
128
+ class =' text-xl text-green-300 hover:text-green-400 md:text-lg hidden '
129
129
>
130
130
Sign Up
131
131
</a >
You can’t perform that action at this time.
0 commit comments