]> cat aescling's git repositories - mastodon.git/blob - app/views/stream_entries/_simple_status.html.haml
HAML fix
[mastodon.git] / app / views / stream_entries / _simple_status.html.haml
1 .status.light
2 .status__header
3 .status__meta
4 = link_to TagManager.instance.url_for(status), class: 'status__relative-time u-url u-uid', target: stream_link_target, rel: 'noopener' do
5 %time.time-ago{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
6 %data.dt-published{ value: status.created_at.to_time.iso8601 }
7
8 = link_to TagManager.instance.url_for(status.account), class: 'status__display-name p-author h-card', target: stream_link_target, rel: 'noopener' do
9 .status__avatar
10 %div
11 = image_tag status.account.avatar(:original), width: 48, height: 48, alt: '', class: 'u-photo'
12 %span.display-name
13 %strong.p-name.emojify= display_name(status.account)
14 %span= acct(status.account)
15
16 .status__content.p-name.emojify<
17 - if status.spoiler_text?
18 %p{ style: 'margin-bottom: 0' }<
19 %span.p-summary> #{Formatter.instance.format_spoiler(status)}&nbsp;
20 %a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
21 .e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl_status?(status) ? 'rtl' : 'ltr'}" }
22 = Formatter.instance.format(status, custom_emojify: true)
23
24 - unless status.media_attachments.empty?
25 - if status.media_attachments.first.video?
26 - video = status.media_attachments.first
27 %div{ data: { component: 'Video', props: Oj.dump(src: video.file.url(:original), preview: video.file.url(:small), sensitive: status.sensitive?, width: 610, height: 343) }}><
28 - else
29 %div{ data: { component: 'MediaGallery', props: Oj.dump(height: 343, sensitive: status.sensitive?, 'autoPlayGif': current_account&.user&.setting_auto_play_gif, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json }) }}><
This page took 0.06643 seconds and 4 git commands to generate.