84 lines
2.0 KiB
Vue
84 lines
2.0 KiB
Vue
<template>
|
|
<div
|
|
tabindex="0"
|
|
class="relative flex items-center justify-center cursor-pointer focus:outline-none focus-visible:ring focus-visible:ring-primaryDark"
|
|
:class="[`rounded-${rounded}`, `w-${size} h-${size}`]"
|
|
>
|
|
<img
|
|
v-if="url"
|
|
class="absolute object-cover object-center transition bg-primaryDark"
|
|
:class="[`rounded-${rounded}`, `w-${size} h-${size}`]"
|
|
:src="url"
|
|
:alt="alt"
|
|
loading="lazy"
|
|
/>
|
|
<div
|
|
v-else
|
|
class="absolute flex items-center justify-center object-cover object-center transition bg-primaryDark text-accentContrast"
|
|
:class="[`rounded-${rounded}`, `w-${size} h-${size}`]"
|
|
:style="`background-color: ${toHex(initial)}`"
|
|
>
|
|
{{ initial.charAt(0).toUpperCase() }}
|
|
</div>
|
|
<span
|
|
v-if="indicator"
|
|
class="border-primary border-2 h-2.5 -top-0.5 -right-0.5 w-2.5 absolute"
|
|
:class="[`rounded-${rounded}`, indicatorStyles]"
|
|
></span>
|
|
<!-- w-5 h-5 rounded-lg -->
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { defineComponent } from "@nuxtjs/composition-api"
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
url: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
alt: {
|
|
type: String,
|
|
default: "Profile picture",
|
|
},
|
|
indicator: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
indicatorStyles: {
|
|
type: String,
|
|
default: "bg-green-500",
|
|
},
|
|
rounded: {
|
|
type: String,
|
|
default: "full",
|
|
},
|
|
size: {
|
|
type: String,
|
|
default: "5",
|
|
},
|
|
initial: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
},
|
|
methods: {
|
|
toHex(initial) {
|
|
let hash = 0
|
|
if (initial.length === 0) return hash
|
|
for (let i = 0; i < initial.length; i++) {
|
|
hash = initial.charCodeAt(i) + ((hash << 5) - hash)
|
|
hash = hash & hash
|
|
}
|
|
let color = "#"
|
|
for (let i = 0; i < 3; i++) {
|
|
const value = (hash >> (i * 8)) & 255
|
|
color += `00${value.toString(16)}`.slice(-2)
|
|
}
|
|
return color
|
|
},
|
|
},
|
|
})
|
|
</script>
|