mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	* style(frontend): 💄 add darktheme custom * add dummy users in dev mode * feat(frontend): ✨ add group permissions editor UI * feat(backend): ✨ add group permissions setters * test(backend): ✅ tests for basic permission get/set (WIP) Needs more testing * remove old test * chore(backend): copy template.env on setup * feat(frontend): ✨ enable send invitation via email * feat(backend): ✨ enable send invitation via email * feat: ✨ add app config checker for site-settings * refactor(frontend): ♻️ consolidate bool checks Co-authored-by: Hayden <hay-kot@pm.me>
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <v-app-bar clipped-left dense app color="primary" dark class="d-print-none">
 | 
						|
    <slot />
 | 
						|
    <router-link to="/">
 | 
						|
      <v-btn icon>
 | 
						|
        <v-icon size="40"> {{ $globals.icons.primary }} </v-icon>
 | 
						|
      </v-btn>
 | 
						|
    </router-link>
 | 
						|
 | 
						|
    <div btn class="pl-2">
 | 
						|
      <v-toolbar-title style="cursor: pointer" @click="$router.push('/')"> Mealie </v-toolbar-title>
 | 
						|
    </div>
 | 
						|
 | 
						|
    {{ value }}
 | 
						|
 | 
						|
    <v-spacer></v-spacer>
 | 
						|
    <!-- <v-tooltip bottom>
 | 
						|
      <template #activator="{ on, attrs }">
 | 
						|
        <v-btn icon class="mr-1" small v-bind="attrs" v-on="on">
 | 
						|
          <v-icon v-text="isDark ? $globals.icons.weatherSunny : $globals.icons.weatherNight"> </v-icon>
 | 
						|
        </v-btn>
 | 
						|
      </template>
 | 
						|
      <span>{{ isDark ? $t("settings.theme.switch-to-light-mode") : $t("settings.theme.switch-to-dark-mode") }}</span>
 | 
						|
    </v-tooltip> -->
 | 
						|
    <!-- <div v-if="false" style="width: 350px"></div>
 | 
						|
    <div v-else>
 | 
						|
      <v-btn icon @click="$refs.recipeSearch.open()">
 | 
						|
        <v-icon> {{ $globals.icons.search }} </v-icon>
 | 
						|
      </v-btn>
 | 
						|
    </div> -->
 | 
						|
 | 
						|
    <!-- Navigation Menu -->
 | 
						|
    <template v-if="menu">
 | 
						|
      <v-btn v-if="$auth.loggedIn" text @click="$auth.logout()">
 | 
						|
        <v-icon left>{{ $globals.icons.logout }}</v-icon>
 | 
						|
        {{ $t("user.logout") }}
 | 
						|
      </v-btn>
 | 
						|
      <v-btn v-else text nuxt to="/login">
 | 
						|
        <v-icon left>{{ $globals.icons.user }}</v-icon>
 | 
						|
        {{ $t("user.login") }}
 | 
						|
      </v-btn>
 | 
						|
    </template>
 | 
						|
  </v-app-bar>
 | 
						|
</template>
 | 
						|
    
 | 
						|
<script lang="ts">
 | 
						|
import { defineComponent } from "@nuxtjs/composition-api";
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  props: {
 | 
						|
    value: {
 | 
						|
      type: Boolean,
 | 
						|
      default: null,
 | 
						|
    },
 | 
						|
    menu: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 | 
						|
     |