mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-03 07:29:59 +00:00
38 lines
886 B
TypeScript
38 lines
886 B
TypeScript
|
import { decode } from 'blurhash'
|
||
|
import { getDataUrlFromArr } from '~~/composables/utils'
|
||
|
|
||
|
export default defineComponent({
|
||
|
inheritAttrs: false,
|
||
|
props: {
|
||
|
blurhash: {
|
||
|
type: String,
|
||
|
required: true,
|
||
|
},
|
||
|
src: {
|
||
|
type: String,
|
||
|
required: true,
|
||
|
},
|
||
|
},
|
||
|
setup(props, { attrs }) {
|
||
|
const placeholderSrc = ref<string>()
|
||
|
const isLoaded = ref(false)
|
||
|
|
||
|
onMounted(() => {
|
||
|
const img = document.createElement('img')
|
||
|
img.onload = () => {
|
||
|
isLoaded.value = true
|
||
|
}
|
||
|
img.src = props.src
|
||
|
|
||
|
if (props.blurhash) {
|
||
|
const pixels = decode(props.blurhash, 32, 32)
|
||
|
placeholderSrc.value = getDataUrlFromArr(pixels, 32, 32)
|
||
|
}
|
||
|
})
|
||
|
|
||
|
return () => isLoaded.value || !placeholderSrc.value
|
||
|
? h('img', { ...attrs, src: props.src })
|
||
|
: h('img', { ...attrs, src: placeholderSrc.value })
|
||
|
},
|
||
|
})
|