pinafore/routes/_components/Avatar.html

69 lines
1.5 KiB
HTML
Raw Normal View History

2018-01-21 06:06:30 +01:00
{{#if error}}
2018-02-07 05:54:49 +01:00
<svg class="{{className || ''}} avatar size-{{size}}" aria-hidden="true">
2018-01-15 06:41:19 +01:00
<use xlink:href="#fa-user" />
</svg>
{{elseif $autoplayGifs}}
2018-02-07 05:54:49 +01:00
<img class="{{className || ''}} avatar size-{{size}}" aria-hidden="true" alt=""
2018-01-23 06:47:29 +01:00
src="{{account.avatar}}" on:imgLoadError="set({error: true})" />
{{else}}
<NonAutoplayImg className="{{className || ''}} avatar size-{{size}}"
ariaHidden="true"
alt=""
src="{{account.avatar}}"
staticSrc="{{account.avatar_static}}"
:isLink
on:imgLoadError="set({error: true})"
/>
2018-01-21 06:06:30 +01:00
{{/if}}
2018-01-11 05:45:02 +01:00
<style>
:global(.avatar) {
border-radius: 4px;
2018-04-09 02:36:05 +02:00
background: var(--loading-bg);
}
:global(.avatar.size-extra-small) {
width: 24px;
height: 24px;
}
:global(.avatar.size-small) {
2018-01-11 09:26:35 +01:00
width: 48px;
height: 48px;
}
:global(.avatar.size-medium) {
width: 64px;
height: 64px;
}
:global(.avatar.size-big) {
width: 100px;
height: 100px;
}
@media (max-width: 767px) {
:global(.avatar.size-big) {
width: 80px;
height: 80px;
}
2018-01-11 05:45:02 +01:00
}
2018-01-15 06:41:19 +01:00
2018-01-16 17:38:23 +01:00
svg.avatar {
2018-01-15 06:41:19 +01:00
fill: var(--deemphasized-text-color);
}
2018-01-11 05:45:02 +01:00
</style>
<script>
2018-02-09 02:56:20 +01:00
import { imgLoadError } from '../_utils/events'
import { store } from '../_store/store'
import NonAutoplayImg from './NonAutoplayImg.html'
2018-01-23 06:47:29 +01:00
2018-01-11 05:45:02 +01:00
export default {
2018-01-21 06:06:30 +01:00
events: {
2018-01-23 06:47:29 +01:00
imgLoadError
},
store: () => store,
components: {
NonAutoplayImg
2018-01-15 06:41:19 +01:00
}
2018-01-11 05:45:02 +01:00
}
</script>