mirror of
				https://github.com/em-squared/5e-drs.git
				synced 2025-10-31 13:34:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			71 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <v-app-bar :clipped-left="$vuetify.breakpoint.lgAndUp" :clipped-right="$vuetify.breakpoint.lgAndUp" app color="navbar" dark>
 | |
|     <v-app-bar-nav-icon @click.stop="setDrawer" />
 | |
|     <v-toolbar-title class="ml-0 mr-4 pl-4">
 | |
|       <v-btn class="hidden-sm-and-down site-title" text link :to="{ path: '/' }">{{ $site.title }}</v-btn>
 | |
|     </v-toolbar-title>
 | |
|     <SRDSearchBox v-if="$site.themeConfig.search !== false && $page.frontmatter.search !== false" />
 | |
|     <!-- <v-text-field flat solo-inverted hide-details prepend-inner-icon="mdi-magnify" label="Search" class="hidden-sm-and-down" /> -->
 | |
|     <v-spacer />
 | |
|     <v-btn @click.stop="setRightDrawer" icon v-if="hasRightDrawer">
 | |
|       <v-icon>{{ rightDrawerIcon }}</v-icon>
 | |
|     </v-btn>
 | |
|   </v-app-bar>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import SRDSearchBox from '@theme/components/search/SRDSearchBox.vue'
 | |
| // import NavLinks from '@theme/components/NavLinks.vue'
 | |
| 
 | |
| export default {
 | |
|   name: 'Navbar',
 | |
| 
 | |
|   components: {
 | |
|     // NavLinks,
 | |
|     SRDSearchBox
 | |
|   },
 | |
| 
 | |
|   data () {
 | |
|     return {
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   computed: {
 | |
|     drawer() {
 | |
|       return this.$store.state.drawer
 | |
|     },
 | |
|     rightDrawer() {
 | |
|       return this.$store.state.rightDrawer
 | |
|     },
 | |
|     hasRightDrawer() {
 | |
|       return this.$store.state.hasRightDrawer
 | |
|     },
 | |
|     inRightDrawer() {
 | |
|       return this.$store.state.inRightDrawer
 | |
|     },
 | |
|     rightDrawerIcon() {
 | |
|       if (this.inRightDrawer == 'pageToc') {
 | |
|         return 'mdi-format-list-bulleted'
 | |
|       } else if (this.inRightDrawer == 'spellFilters') {
 | |
|         return 'mdi-filter-variant'
 | |
|       }
 | |
|       return 'mdi-menu'
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   methods: {
 | |
|     setDrawer () {
 | |
|       this.$store.commit('setDrawer', !this.$store.state.drawer)
 | |
|     },
 | |
|     setRightDrawer () {
 | |
|       this.$store.commit('setRightDrawer', !this.$store.state.rightDrawer)
 | |
|     }
 | |
|   }
 | |
| }
 | |
| </script>
 | |
| 
 | |
| <style lang="scss">
 | |
|   .site-title.theme--dark.v-btn--active:before {
 | |
|     opacity: 0;
 | |
|   }
 | |
| </style>
 | 
