OrionAvatar
<o-avatar>
is used to represent people or object like an article thumbnail for example.
It will display the first letter of the name
prop in case the avatar
prop is undefined.
Additionally if you provide the update-function
prop, it will automatically add an upload icon to trigger this function.
TIP
Although this component is very simple, it can handle complex cases depending on your application architecture.
More on that below in the Edges cases section.
Usage
Shapes & Contain
Define the shape of the avatar with the square
prop and how the image should be displayed with the contain
prop.
Update function
You can update the avatar image directly from the component by implementing the update-function
prop.
Refreshing the image on update
Depending on how your avatar or thumbnail are managed, you may have the same url for the image even after updating it. If this is the case the image won't change in the component which is the normal behavior.
To fix this we provide the nb-avatar-updates
prop.
It must be a number that you should increment after each update so the image will be refreshed.
AvatarSquare AvatarUpdate AvatarPlayground
Edge cases
Like we explained before the usage can be very simple, just by providing an url for the avatar
prop and a string for the name
prop as a fallback.
But let's take a different example where the avatar is stored in a database and can be displayed with its id
. In this case you can provide a number for the avatar
prop and a string for the root-url
prop. Then the component will automatically detect it and recreate the right url by concatenating both prop.
This can also be the case when the avatar is retrieved as a JSON object, you can directly use it for the avatar
prop, it just need an id
key.
Props
{id: number} | number | string = undefined
Orion.Color = 'brand'
boolean = false
string = ''
number = 0
string = '/avatar/'
number | Orion.Size = 'md'
boolean = false
string = undefined
Function = undefined