Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Commit ec45a56

Browse files
committed
Add ease-in on the guest elements
1 parent aece5a4 commit ec45a56

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

src/components/Authenticator/authenticator.ts

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
import Cookies from 'js-cookie';
22
import { TOKEN_COOKIE_NAME } from '../../lib/constants';
33

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+
412
function showHideAuthElements(hideOrShow: 'hide' | 'show' = 'hide') {
513
document.querySelectorAll('[data-auth-required]').forEach((el) => {
614
if (hideOrShow === 'hide') {
715
el.classList.add('hidden');
816
} else {
9-
el.classList.remove('hidden');
17+
easeInElement(el);
1018
}
1119
});
1220
}
@@ -16,7 +24,7 @@ function showHideGuestElements(hideOrShow: 'hide' | 'show' = 'hide') {
1624
if (hideOrShow === 'hide') {
1725
el.classList.add('hidden');
1826
} else {
19-
el.classList.remove('hidden');
27+
easeInElement(el);
2028
}
2129
});
2230
}

src/components/Navigation/Navigation.astro

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ import AccountDropdown from './AccountDropdown.astro';
2828
</li>
2929
</ul>
3030
<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">
3232
<a href='/login' class='text-gray-400 hover:text-white'>Login</a>
3333
</li>
3434
<li>
3535
<AccountDropdown />
3636

3737
<a
3838
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'
4040
href='/signup'
4141
>
4242
<span>Sign Up</span>
@@ -116,7 +116,7 @@ import AccountDropdown from './AccountDropdown.astro';
116116
<a
117117
data-guest-required
118118
href='/signup'
119-
class='text-xl text-white md:text-lg'
119+
class='text-xl text-white md:text-lg hidden'
120120
>
121121
Login
122122
</a>
@@ -125,7 +125,7 @@ import AccountDropdown from './AccountDropdown.astro';
125125
<a
126126
data-guest-required
127127
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'
129129
>
130130
Sign Up
131131
</a>

0 commit comments

Comments
 (0)