25 lines
602 B
Handlebars
25 lines
602 B
Handlebars
{{#if (eq this.type this.IMAGE_TYPE)}}
|
|
<img
|
|
class="chat-img-upload"
|
|
data-orig-src={{@upload.short_url}}
|
|
height={{this.size.height}}
|
|
width={{this.size.width}}
|
|
src={{@upload.url}}
|
|
style={{this.imageStyle}}
|
|
loading="lazy"
|
|
{{on "load" this.imageLoaded}}
|
|
>
|
|
{{else if (eq this.type this.VIDEO_TYPE)}}
|
|
<video class="chat-video-upload" preload="metadata" controls>
|
|
<source src={{@upload.url}}>
|
|
</video>
|
|
{{else}}
|
|
<a
|
|
class="chat-other-upload"
|
|
data-orig-href={{@upload.short_url}}
|
|
href={{@upload.url}}
|
|
>
|
|
{{@upload.original_filename}}
|
|
</a>
|
|
{{/if}}
|