94 lines
3.1 KiB
Plaintext
Raw Normal View History

2018-12-06 04:27:01 +00:00
component Sidebar(searchTerm string, user *arn.User)
2017-11-03 08:34:21 +00:00
aside#sidebar
2017-11-13 13:28:52 +00:00
//- User avatar
2017-11-03 08:34:21 +00:00
.user-image-container
if user != nil
2018-04-18 09:31:55 +00:00
AvatarNoTip(user)
2017-11-03 08:34:21 +00:00
else
2018-11-01 08:39:55 +00:00
a(href="/", aria-label="Anime Notifier")
img.user-image.lazy(src=utils.EmptyImage(), data-src="/images/brand/64.png", data-webp="true", alt="Anime Notifier")
2018-02-28 11:12:58 +00:00
if user != nil
2019-03-11 01:19:08 +00:00
a.badge.sidebar-badge.left-badge(href="/settings", title="Settings")
2018-02-28 11:12:58 +00:00
RawIcon("cog")
2019-03-11 01:19:08 +00:00
a#notification-icon.badge.sidebar-badge.right-badge(href="/notifications", title="Notifications")
2018-02-28 11:12:58 +00:00
RawIcon("bell")
2018-02-28 15:26:49 +00:00
2019-03-11 01:19:08 +00:00
a#notification-count.badge.sidebar-badge.right-badge.badge-important.hidden(href="/notifications", title="Notifications") 0
2017-11-13 13:28:52 +00:00
2018-03-26 18:37:53 +00:00
//- Search
div(aria-label="Search")
2018-03-26 18:37:53 +00:00
.sidebar-button
Icon("search")
2018-12-06 04:27:01 +00:00
FuzzySearch(searchTerm)
2018-04-20 18:58:45 +00:00
.speech-input.action(data-action="searchBySpeech", data-trigger="click", title="Speech input")
2018-04-20 18:16:59 +00:00
RawIcon("microphone")
2018-03-26 18:37:53 +00:00
2017-11-13 13:28:52 +00:00
//- Sidebar buttons
2017-07-20 00:54:53 +00:00
if user != nil
2019-06-23 23:10:17 +00:00
SidebarButton("List", "/+" + user.Nick + "/animelist/watching", "list")
2017-07-20 00:54:53 +00:00
else
2017-11-03 08:34:21 +00:00
SidebarButton("Home", "/", "home")
2018-10-31 05:27:48 +00:00
SidebarButton("Activity", "/activity", "rss")
2017-11-03 08:34:21 +00:00
SidebarButton("Forum", "/forum", "comment")
SidebarButton("Explore", "/explore", "th")
2018-04-15 09:30:25 +00:00
SidebarButton("AMVs", "/amvs", "video-camera")
2017-11-03 08:34:21 +00:00
SidebarButton("Soundtracks", "/soundtracks", "headphones")
SidebarButton("Quotes", "/quotes", "quote-left")
2018-11-23 00:50:41 +00:00
SidebarButton("Groups", "/groups", "users")
2018-11-22 04:36:04 +00:00
SidebarButton("Users", "/users", "globe")
2018-11-21 07:43:41 +00:00
if user != nil
SidebarButton("Support", "/support", "heart")
2017-11-13 13:28:52 +00:00
//- Disabled:
2018-11-22 04:36:04 +00:00
//- SidebarButton("Companies", "/companies", "building")
2017-11-13 13:28:52 +00:00
//- SidebarButton("Dash", "/dashboard", "tachometer")
//- SidebarButton("Artworks", "/artworks", "paint-brush")
//- SidebarButton("AMVs", "/amvs", "video-camera")
//- SidebarButton("Games", "/games", "gamepad")
//- SidebarButton("Groups", "/groups", "users")
//- SidebarButton("Statistics", "/statistics", "pie-chart")
2017-11-30 02:21:37 +00:00
//- SidebarButton("Companies", "/companies", "building")
//- SidebarButton("Genres", "/genres", "clone")
2018-04-23 10:18:53 +00:00
//- SidebarButton("Characters", "/characters", "child")
2017-11-13 13:28:52 +00:00
2017-11-03 08:34:21 +00:00
.spacer
2018-03-11 03:45:01 +00:00
2018-03-11 17:17:35 +00:00
AudioPlayer
2017-11-16 15:14:55 +00:00
if user != nil && (user.Role == "editor" || user.Role == "admin")
SidebarButton("Log", "/log", "list")
SidebarButton("Editor", "/editor", "pencil")
//- if user != nil && user.Role == "admin"
//- SidebarButton("Admin", "/admin", "wrench")
2017-10-03 13:26:29 +00:00
2018-04-23 14:51:11 +00:00
a.sidebar-link.action(href="#", data-action="nextTheme", data-trigger="click")
2017-11-16 14:15:35 +00:00
.sidebar-button
Icon("paint-brush")
span.sidebar-text Theme
2017-11-03 08:34:21 +00:00
SidebarButton("Help", "/thread/I3MMiOtzR", "question-circle")
2017-07-20 00:54:53 +00:00
2017-11-03 08:34:21 +00:00
if user != nil
SidebarButtonNoAJAX("Logout", "/logout", "sign-out")
else
SidebarButton("Login", "/login", "sign-in")
2017-10-06 03:53:49 +00:00
.sidebar-social-media
SocialMediaButtons
2017-10-06 03:53:49 +00:00
component SidebarButton(name string, target string, icon string)
a.sidebar-link(href=target, aria-label=name, data-bubble="true")
2017-10-06 03:53:49 +00:00
.sidebar-button
Icon(icon)
span.sidebar-text= name
component SidebarButtonNoAJAX(name string, target string, icon string)
2018-03-23 20:29:28 +00:00
a.sidebar-link(href=target, aria-label=name, data-bubble="true", data-ajax="false")
2017-10-06 03:53:49 +00:00
.sidebar-button
Icon(icon)
span.sidebar-text= name