mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	* Activate more linting rules from eslint and typescript * Properly add VForm as type information * Fix usage of native types * Fix more linting issues * Rename vuetify types file, add VTooltip * Fix some more typing problems * Use composition API for more components * Convert RecipeRating * Convert RecipeNutrition * Convert more components to composition API * Fix globals plugin for type checking * Add missing icon types * Fix vuetify types in Nuxt context * Use composition API for RecipeActionMenu * Convert error.vue to composition API * Convert RecipeContextMenu to composition API * Use more composition API and type checking in recipe/create * Convert AppButtonUpload to composition API * Fix some type checking in RecipeContextMenu * Remove unused components BaseAutoForm and BaseColorPicker * Convert RecipeCategoryTagDialog to composition API * Convert RecipeCardSection to composition API * Convert RecipeCategoryTagSelector to composition API * Properly import vuetify type definitions * Convert BaseButton to composition API * Convert AutoForm to composition API * Remove unused requests API file * Remove static routes from recipe API * Fix more type errors * Convert AppHeader to composition API, fixing some search bar focus problems * Convert RecipeDialogSearch to composition API * Update API types from pydantic models, handle undefined values * Improve more typing problems * Add types to other plugins * Properly type the CRUD API access * Fix typing of static image routes * Fix more typing stuff * Fix some more typing problems * Turn off more rules
		
			
				
	
	
		
			109 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <v-card v-bind="$attrs" :class="classes" class="v-card--material pa-3">
 | 
						|
    <div class="d-flex grow flex-wrap">
 | 
						|
      <slot name="avatar">
 | 
						|
        <v-sheet
 | 
						|
          :color="color"
 | 
						|
          :max-height="icon ? 90 : undefined"
 | 
						|
          :width="icon ? 'auto' : '100%'"
 | 
						|
          elevation="6"
 | 
						|
          class="text-start v-card--material__heading mb-n6 mt-n10 pa-7"
 | 
						|
          dark
 | 
						|
        >
 | 
						|
          <v-icon v-if="icon" size="40" v-text="icon" />
 | 
						|
          <div v-if="text" class="headline font-weight-thin" v-text="text" />
 | 
						|
        </v-sheet>
 | 
						|
      </slot>
 | 
						|
 | 
						|
      <div v-if="$slots['after-heading']" class="ml-auto">
 | 
						|
        <slot name="after-heading" />
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <slot />
 | 
						|
 | 
						|
    <template v-if="$slots.actions">
 | 
						|
      <v-divider class="mt-2" />
 | 
						|
 | 
						|
      <v-card-actions class="pb-0">
 | 
						|
        <slot name="actions" />
 | 
						|
      </v-card-actions>
 | 
						|
    </template>
 | 
						|
 | 
						|
    <template v-if="$slots.bottom">
 | 
						|
      <v-divider v-if="!$slots.actions" class="mt-2" />
 | 
						|
 | 
						|
      <div class="pb-0">
 | 
						|
        <slot name="bottom" />
 | 
						|
      </div>
 | 
						|
    </template>
 | 
						|
  </v-card>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
import { computed, defineComponent, useContext } from "@nuxtjs/composition-api";
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  name: "MaterialCard",
 | 
						|
 | 
						|
  props: {
 | 
						|
    avatar: {
 | 
						|
      type: String,
 | 
						|
      default: "",
 | 
						|
    },
 | 
						|
    color: {
 | 
						|
      type: String,
 | 
						|
      default: "primary",
 | 
						|
    },
 | 
						|
    icon: {
 | 
						|
      type: String,
 | 
						|
      default: undefined,
 | 
						|
    },
 | 
						|
    image: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
    text: {
 | 
						|
      type: String,
 | 
						|
      default: "",
 | 
						|
    },
 | 
						|
    title: {
 | 
						|
      type: String,
 | 
						|
      default: "",
 | 
						|
    },
 | 
						|
  },
 | 
						|
  setup() {
 | 
						|
    const { $vuetify } = useContext();
 | 
						|
 | 
						|
    const hasHeading = computed(() => false);
 | 
						|
    const hasAltHeading = computed(() => false);
 | 
						|
    const classes = computed(() => {
 | 
						|
      return {
 | 
						|
        "v-card--material--has-heading": hasHeading,
 | 
						|
        "mt-3": $vuetify.breakpoint.name === "xs" || $vuetify.breakpoint.name === "sm",
 | 
						|
      };
 | 
						|
    });
 | 
						|
 | 
						|
    return {
 | 
						|
      hasHeading,
 | 
						|
      hasAltHeading,
 | 
						|
      classes,
 | 
						|
    };
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="sass">
 | 
						|
.v-card--material
 | 
						|
  &__avatar
 | 
						|
    position: relative
 | 
						|
    top: -64px
 | 
						|
    margin-bottom: -32px
 | 
						|
 | 
						|
    &__heading
 | 
						|
      position: relative
 | 
						|
      top: -40px
 | 
						|
      transition: .3s ease
 | 
						|
      z-index: 1
 | 
						|
</style>
 |