mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-19 05:09:40 +02:00
46 lines
1 KiB
Vue
46 lines
1 KiB
Vue
|
<template>
|
||
|
<v-list-item-avatar v-if="list && userId">
|
||
|
<v-img :src="imageURL" :alt="userId" @load="error = false" @error="error = true"> </v-img>
|
||
|
</v-list-item-avatar>
|
||
|
<v-avatar v-else-if="userId" :size="size">
|
||
|
<v-img :src="imageURL" :alt="userId" @load="error = false" @error="error = true"> </v-img>
|
||
|
</v-avatar>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent, toRefs, reactive, useContext, computed } from "@nuxtjs/composition-api";
|
||
|
|
||
|
export default defineComponent({
|
||
|
props: {
|
||
|
userId: {
|
||
|
type: String,
|
||
|
required: true,
|
||
|
},
|
||
|
list: {
|
||
|
type: Boolean,
|
||
|
default: false,
|
||
|
},
|
||
|
size: {
|
||
|
type: String,
|
||
|
default: "42",
|
||
|
},
|
||
|
},
|
||
|
setup(props) {
|
||
|
const state = reactive({
|
||
|
error: false,
|
||
|
});
|
||
|
|
||
|
const { $auth } = useContext();
|
||
|
|
||
|
const imageURL = computed(() => {
|
||
|
const key = $auth?.user?.cacheKey || "";
|
||
|
return `/api/media/users/${props.userId}/profile.webp?cacheKey=${key}`;
|
||
|
});
|
||
|
|
||
|
return {
|
||
|
imageURL,
|
||
|
...toRefs(state),
|
||
|
};
|
||
|
},
|
||
|
});
|
||
|
</script>
|