mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	* fix and refactor chip links * fix missing UI components for data management * fix button text
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <v-container>
 | 
						|
    <BasePageTitle>
 | 
						|
      <template #header>
 | 
						|
        <v-img max-height="175" max-width="175" :src="require('~/static/svgs/manage-recipes.svg')"></v-img>
 | 
						|
      </template>
 | 
						|
      <template #title> Data Management </template>
 | 
						|
      Select which data set you want to make changes to.
 | 
						|
      <BannerExperimental class="mt-5"></BannerExperimental>
 | 
						|
      <template #content>
 | 
						|
        <div>
 | 
						|
          <BaseOverflowButton
 | 
						|
            :btn-text="buttonText"
 | 
						|
            mode="link"
 | 
						|
            rounded
 | 
						|
            :items="[
 | 
						|
              {
 | 
						|
                text: 'Recipes',
 | 
						|
                value: 'new',
 | 
						|
                to: '/group/data/recipes',
 | 
						|
              },
 | 
						|
              {
 | 
						|
                text: 'Foods',
 | 
						|
                value: 'url',
 | 
						|
                to: '/group/data/foods',
 | 
						|
              },
 | 
						|
              {
 | 
						|
                text: 'Units',
 | 
						|
                value: 'new',
 | 
						|
                to: '/group/data/units',
 | 
						|
              },
 | 
						|
              {
 | 
						|
                text: 'Labels',
 | 
						|
                value: 'new',
 | 
						|
                to: '/group/data/labels',
 | 
						|
              },
 | 
						|
            ]"
 | 
						|
          >
 | 
						|
          </BaseOverflowButton>
 | 
						|
        </div>
 | 
						|
      </template>
 | 
						|
    </BasePageTitle>
 | 
						|
    <section>
 | 
						|
      <v-scroll-x-transition>
 | 
						|
        <NuxtChild />
 | 
						|
      </v-scroll-x-transition>
 | 
						|
    </section>
 | 
						|
  </v-container>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
import { computed, defineComponent, useRoute } from "@nuxtjs/composition-api";
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  props: {
 | 
						|
    value: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  setup() {
 | 
						|
    const buttonLookup: { [key: string]: string } = {
 | 
						|
      recipes: "Recipes",
 | 
						|
      foods: "Foods",
 | 
						|
      units: "Units",
 | 
						|
      labels: "Labels",
 | 
						|
    };
 | 
						|
 | 
						|
    const route = useRoute();
 | 
						|
 | 
						|
    const buttonText = computed(() => {
 | 
						|
      const last = route.value.path.split("/").pop();
 | 
						|
 | 
						|
      if (last) {
 | 
						|
        return buttonLookup[last];
 | 
						|
      }
 | 
						|
 | 
						|
      return "Select Data";
 | 
						|
    });
 | 
						|
 | 
						|
    return {
 | 
						|
      buttonText,
 | 
						|
    };
 | 
						|
  },
 | 
						|
  head: {
 | 
						|
    title: "Data Management",
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 |