mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
		
			
				
	
	
		
			110 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			110 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div
 | 
						|
    class="mx-auto my-3 justify-center"
 | 
						|
    style="display: flex;"
 | 
						|
  >
 | 
						|
    <div style="display: inline;">
 | 
						|
      <v-progress-circular
 | 
						|
        :width="size.width"
 | 
						|
        :size="size.size"
 | 
						|
        color="primary-lighten-2"
 | 
						|
        indeterminate
 | 
						|
      >
 | 
						|
        <div class="text-center">
 | 
						|
          <v-icon
 | 
						|
            :size="size.icon"
 | 
						|
            color="primary-lighten-2"
 | 
						|
          >
 | 
						|
            {{ $globals.icons.primary }}
 | 
						|
          </v-icon>
 | 
						|
          <div
 | 
						|
            v-if="large"
 | 
						|
            class="text-small"
 | 
						|
          >
 | 
						|
            <slot>
 | 
						|
              {{ (small || tiny) ? "" : waitingText }}
 | 
						|
            </slot>
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
      </v-progress-circular>
 | 
						|
      <div
 | 
						|
        v-if="!large"
 | 
						|
        class="text-small"
 | 
						|
      >
 | 
						|
        <slot>
 | 
						|
          {{ (small || tiny) ? "" : waitingTextCalculated }}
 | 
						|
        </slot>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
export default defineNuxtComponent({
 | 
						|
  props: {
 | 
						|
    loading: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
    tiny: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
    small: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
    medium: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
    large: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
    waitingText: {
 | 
						|
      type: String,
 | 
						|
      default: undefined,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  setup(props) {
 | 
						|
    const size = computed(() => {
 | 
						|
      if (props.tiny) {
 | 
						|
        return {
 | 
						|
          width: 2,
 | 
						|
          icon: 0,
 | 
						|
          size: 25,
 | 
						|
        };
 | 
						|
      }
 | 
						|
      if (props.small) {
 | 
						|
        return {
 | 
						|
          width: 2,
 | 
						|
          icon: 30,
 | 
						|
          size: 50,
 | 
						|
        };
 | 
						|
      }
 | 
						|
      else if (props.large) {
 | 
						|
        return {
 | 
						|
          width: 4,
 | 
						|
          icon: 120,
 | 
						|
          size: 200,
 | 
						|
        };
 | 
						|
      }
 | 
						|
      return {
 | 
						|
        width: 3,
 | 
						|
        icon: 75,
 | 
						|
        size: 125,
 | 
						|
      };
 | 
						|
    });
 | 
						|
 | 
						|
    const i18n = useI18n();
 | 
						|
    const waitingTextCalculated = props.waitingText == null ? i18n.t("general.loading-recipes") : props.waitingText;
 | 
						|
 | 
						|
    return {
 | 
						|
      size,
 | 
						|
      waitingTextCalculated,
 | 
						|
    };
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 |