Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F7188010
navbar.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
928 B
Referenced Files
None
Subscribers
None
navbar.ts
View Options
import
{
BaseContext
}
from
"koa"
;
import
{
SignUpURL
,
SignInURL
,
TodoURL
,
LogoutURL
}
from
"../urls.js"
;
export
default
async
function
navbar
(
ctx
:
BaseContext
)
{
const
isLoggedIn
=
!!
ctx
.
$context
.
session_id
;
const
linkData
=
isLoggedIn
?
[
{
text
:
"Logout"
,
url
:
LogoutURL
},
{
text
:
"To do app"
,
url
:
TodoURL
},
]
:
[
{
text
:
"Sign in"
,
url
:
SignInURL
},
{
text
:
"Sign up"
,
url
:
SignUpURL
},
];
const
linksHTML
=
linkData
.
map
((
link
)
=>
link
.
url
===
new
URL
(
ctx
.
url
,
"https://a.com"
).
pathname
?
`<li class="active"><span>
${
link
.
text
}
</span></li>`
:
/* HTML */
`<li><a href="
${
link
.
url
}
">
${
link
.
text
}
</a></li>`
)
.
join
(
"\n"
);
return
/* HTML */
` <nav>
<a href="/" class="nav-logo">
<img
src="/assets/logo"
alt="
${
ctx
.
$app
.
manifest
.
name
}
- logo"
width="50"
height="50"
/>
${
ctx
.
$app
.
manifest
.
name
}
</a>
<ul>
${
linksHTML
}
</ul>
</nav>`
;
}
File Metadata
Details
Attached
Mime Type
text/html
Expires
Tue, Jul 8, 07:50 (14 h, 49 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
776365
Default Alt Text
navbar.ts (928 B)
Attached To
Mode
rREWRITE Configurable rewriter
Attached
Detach File
Event Timeline
Log In to Comment