Avatar

An image element with a fallback for representing the user.

This coponent uses the useVisibleTask$() hook that eagerly executes code on the client by default when the component becomes visible. You can use strategy prop on Avatar.Root to determine when the VisibleTask should first execute.

  • Automatic and manual control over when the image renders.

  • Optionally delay fallback rendering to avoid content flashing.

import { Avatar } from 'qwik-primitives';

Import all parts and piece them together.

import { component$ } from '@builder.io/qwik';
import { Avatar } from 'qwik-primitives';

const AvatarDemo = component$(() => {
  return (
    <Avatar.Root>
      <Avatar.Image />
      <Avatar.Fallback />
    </Avatar.Root>
  );
});

Contains all the parts of an avatar. This component is based on the span element.

The image to render. By default it will only render when it has loaded. You can use the onLoadingStatusChange$ handler if you need more control. This component is based on the img element.

An element that renders when the image hasn’t loaded. This means whilst it’s loading, or if there was an error. If you notice a flash during loading, you can provide a delayMs prop to delay its rendering so it only renders for those with slower connections. For more control, use the onLoadingStatusChange$ handler on Avatar.Image . This component is based on the span element.

By default Avatar.Fallback will render when the image hasn’t loaded. This means whilst it’s loading, or if there was an error.

If you notice a flash during loading, use the delayMs prop to delay its rendering, so it only renders for those with slower internet connections.

import { component$ } from '@builder.io/qwik';
import { Avatar } from 'qwik-primitives';

const AvatarDemo = component$(() => {
  return (
    <Avatar.Root>
      <Avatar.Image
        src="https://images.unsplash.com/photo-1492633423870-43d1cd2775eb?&w=128&h=128&dpr=2&q=80"
        alt="Colm Tuite"
      />
      <Avatar.Fallback delayMs={600}>CT</Avatar.Fallback>
    </Avatar.Root>
  );
});