Retrospring/app/views/navigation/_mobile.haml

21 lines
1.5 KiB
Plaintext
Raw Normal View History

= render 'navigation/dropdown/profile', size: "mobile"
= render 'navigation/dropdown/notifications', notifications: notifications, size: "mobile"
- notifications_icon = notification_count.nil? ? 'bell-o' : 'bell'
%nav.navbar.navbar-themed.bg-primary.fixed-bottom.d-lg-none.d-block.d-print-none#rs-mobile-nav{ role: :navigation }
2021-08-05 15:36:02 -07:00
.container{ class: ios_web_app? ? 'ios-web-app' : '' }
2021-08-07 10:18:01 -07:00
%ul.nav.navbar-nav.navbar-icon-row
2021-08-05 15:36:02 -07:00
= nav_entry t('views.navigation.timeline'), root_path, icon: 'home', icon_only: true
= nav_entry t('views.navigation.inbox'), '/inbox',
badge: inbox_count, badge_color: 'primary', badge_pill: true,
icon: 'inbox', icon_only: true
2021-08-05 15:36:02 -07:00
- if APP_CONFIG.dig(:features, :discover, :enabled) || current_user.mod?
= nav_entry t('views.navigation.discover'), discover_path, icon: 'compass', icon_only: true
%li.nav-item
%a.nav-link{ href: '#', data: { toggle: 'dropdown', target: '#rs-mobile-nav-notifications' }, aria: { controls: 'rs-mobile-nav-notifications', expanded: 'false' } }
%i.fa{ class: "fa-#{notifications_icon}" }
%span.sr-only= t('views.navigation.notifications')
%span.badge= notification_count
2021-08-05 15:36:02 -07:00
%li.nav-item.profile--image-dropdown
2021-08-07 10:18:01 -07:00
%a.nav-link{ href: '#', data: { toggle: 'dropdown', target: '#rs-mobile-nav-profile' }, aria: { controls: 'rs-mobile-nav-profile', expanded: 'false' } }
%img.avatar-md.d-inline{ src: current_user.profile_picture.url(:small) }