2021-05-22 21:04:19 -08:00
|
|
|
<template>
|
2021-05-24 10:12:46 -08:00
|
|
|
<v-img
|
|
|
|
v-if="!fallBackImage"
|
2021-08-01 19:24:47 -08:00
|
|
|
:height="height"
|
2021-05-24 10:12:46 -08:00
|
|
|
:src="getImage(slug)"
|
2021-08-01 19:24:47 -08:00
|
|
|
@click="$emit('click')"
|
2021-05-24 10:12:46 -08:00
|
|
|
@load="fallBackImage = false"
|
|
|
|
@error="fallBackImage = true"
|
|
|
|
>
|
|
|
|
<slot> </slot>
|
|
|
|
</v-img>
|
2021-08-01 19:24:47 -08:00
|
|
|
<div v-else class="icon-slot" @click="$emit('click')">
|
2021-05-24 10:12:46 -08:00
|
|
|
<v-icon color="primary" class="icon-position" :size="iconSize">
|
|
|
|
{{ $globals.icons.primary }}
|
|
|
|
</v-icon>
|
2021-08-01 19:24:47 -08:00
|
|
|
<slot> </slot>
|
2021-05-22 21:04:19 -08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-09 07:15:23 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import {computed, defineComponent, ref, watch} from "@nuxtjs/composition-api";
|
2021-11-06 11:28:47 -08:00
|
|
|
import { useStaticRoutes, useUserApi } from "~/composables/api";
|
2022-01-09 07:15:23 +01:00
|
|
|
|
|
|
|
export default defineComponent({
|
2021-05-22 21:04:19 -08:00
|
|
|
props: {
|
|
|
|
tiny: {
|
|
|
|
type: Boolean,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
small: {
|
|
|
|
type: Boolean,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
large: {
|
|
|
|
type: Boolean,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
iconSize: {
|
2021-08-01 19:24:47 -08:00
|
|
|
type: [Number, String],
|
2021-05-22 21:04:19 -08:00
|
|
|
default: 100,
|
|
|
|
},
|
|
|
|
slug: {
|
2021-08-01 19:24:47 -08:00
|
|
|
type: String,
|
2021-05-22 21:04:19 -08:00
|
|
|
default: null,
|
|
|
|
},
|
2021-05-23 15:05:39 -08:00
|
|
|
imageVersion: {
|
2021-08-01 19:24:47 -08:00
|
|
|
type: String,
|
2021-05-23 15:05:39 -08:00
|
|
|
default: null,
|
|
|
|
},
|
2021-05-22 21:04:19 -08:00
|
|
|
height: {
|
2021-08-01 19:24:47 -08:00
|
|
|
type: Number,
|
2021-05-22 21:04:19 -08:00
|
|
|
default: 200,
|
|
|
|
},
|
|
|
|
},
|
2022-01-09 07:15:23 +01:00
|
|
|
setup(props) {
|
2021-11-06 11:28:47 -08:00
|
|
|
const api = useUserApi();
|
2021-08-01 19:24:47 -08:00
|
|
|
|
2021-08-09 16:19:23 -08:00
|
|
|
const { recipeImage, recipeSmallImage, recipeTinyImage } = useStaticRoutes();
|
|
|
|
|
2022-01-09 07:15:23 +01:00
|
|
|
const fallBackImage = ref(false);
|
|
|
|
const imageSize = computed(() => {
|
|
|
|
if (props.tiny) return "tiny";
|
|
|
|
if (props.small) return "small";
|
|
|
|
if (props.large) return "large";
|
2021-05-22 21:04:19 -08:00
|
|
|
return "large";
|
2022-01-09 07:15:23 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
watch(() => props.slug, () => {
|
|
|
|
fallBackImage.value = false;
|
|
|
|
});
|
|
|
|
|
|
|
|
function getImage(slug: string) {
|
|
|
|
switch (imageSize.value) {
|
2021-05-22 21:04:19 -08:00
|
|
|
case "tiny":
|
2022-01-09 07:15:23 +01:00
|
|
|
return recipeTinyImage(slug, props.imageVersion);
|
2021-05-22 21:04:19 -08:00
|
|
|
case "small":
|
2022-01-09 07:15:23 +01:00
|
|
|
return recipeSmallImage(slug, props.imageVersion);
|
2021-05-22 21:04:19 -08:00
|
|
|
case "large":
|
2022-01-09 07:15:23 +01:00
|
|
|
return recipeImage(slug, props.imageVersion);
|
2021-05-22 21:04:19 -08:00
|
|
|
}
|
2022-01-09 07:15:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
api,
|
|
|
|
fallBackImage,
|
|
|
|
imageSize,
|
|
|
|
getImage,
|
|
|
|
};
|
2021-05-22 21:04:19 -08:00
|
|
|
},
|
2022-01-09 07:15:23 +01:00
|
|
|
});
|
2021-05-22 21:04:19 -08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.icon-slot {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-slot > div {
|
2021-07-09 14:33:23 -08:00
|
|
|
top: 0;
|
2021-05-22 21:04:19 -08:00
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-position {
|
|
|
|
opacity: 0.8;
|
|
|
|
display: flex !important;
|
|
|
|
position: relative;
|
|
|
|
margin-left: auto !important;
|
|
|
|
margin-right: auto !important;
|
|
|
|
}
|
2022-01-09 07:15:23 +01:00
|
|
|
</style>
|