aboutsummaryrefslogtreecommitdiff
path: root/templates/status.tmpl
blob: 2013f47aebbff2dd59a5db03d3a007258c1d84aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<div id="status-{{if .Reblog}}{{.Reblog.ID}}{{else}}{{.ID}}{{end}}" class="status-container-container">
	{{if .Reblog}}
	<div class="retweet-info">
		<a class="img-link" href="/user/{{.Account.ID}}">
			<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="avatar" />
		</a>
		<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>  
		<i class="fa fa-retweet retweeted"></i>
		retweeted
	</div>
	{{template "status" .Reblog}}
	{{else}}
	{{block "status" .}}
	<div class="status-container">
		{{if not .HideAccountInfo}}
		<div class="status-profile-img-container">
			<a class="img-link" href="/user/{{.Account.ID}}">
				<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="avatar" />
			</a>
		</div>
		{{end}}
		<div class="status"> 
			{{if not .HideAccountInfo}}
			<div class="status-name">
				<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span> 
				<a href="/user/{{.Account.ID}}" >
					<span class="status-uname"> {{.Account.Acct}} </span>
				</a>
				<a class="status-visibility">
					{{if eq .Visibility "public"}}
					<i class="fa fa-globe" title="Public"></i>
					{{else if eq .Visibility "unlisted"}}
					<i class="fa fa-unlock-alt" title="Unlisted"></i>
					{{else if eq .Visibility "private"}}
					<i class="fa fa-lock" title="Private"></i>
					{{else if eq .Visibility "direct"}}
					<i class="fa fa-envelope" title="Direct"></i>
					{{end}}
				</a>
				<a class="remote-link" href="{{.URL}}" target="_blank" title="source">
					<i class="fa fa-link"></i>
				</a>
			</div>
			{{end}}
			<div class="status-reply-container">
				{{if .InReplyToID}}
				<i class="fa fa-mail-forward"></i>
				<a class="status-reply-to" href="{{if not .ShowReplies}}/thread/{{.InReplyToID}}{{end}}#status-{{.InReplyToID}}"> reply to {{.Pleroma.InReplyToAccountAcct}} </a>
				{{if index .ReplyMap .ID}} <span class="status-reply-info-divider"> - </span> {{end}}
				{{end}}
				{{if .ShowReplies}}
				{{if index .ReplyMap .ID}} <span class="status-reply-text"> replies: </span> {{end}}
				{{range index .ReplyMap .ID}}
				<a class="status-reply" href="#status-{{.ID}}">#{{.Number}}</a>
				{{end}}
				{{end}}
			</div>
			<div class="status-content"> {{StatusContentFilter .SpoilerText .Content .Emojis .Mentions}} </div>
			<div class="status-media-container">
			{{range .MediaAttachments}}
			{{if eq .Type "image"}}
			<a class="img-link" href="{{.URL}}" target="_blank">
				<img class="status-image" src="{{.URL}}" alt="status-image" />
				{{if (and $.MaskNSFW $.Sensitive)}}
				<div class="status-nsfw-overlay"></div>
				{{end}}
			</a>
			{{else if eq .Type "audio"}}
			<audio class="status-audio" controls preload="none">
				<source src="{{.URL}}">
				<p> Your browser doesn't support HTML5 audio </p>
			</audio>
			{{else if eq .Type "video"}}
			<div class="status-video-container">
				<video class="status-video" controls preload="none">
					<source src="{{.URL}}">
					<p> Your browser doesn't support HTML5 video </p>
				</video>
				{{if (and $.MaskNSFW $.Sensitive)}}
				<div class="status-nsfw-overlay"></div>
				{{end}}
			</div>
			{{else}}
			<a href="{{.URL}}" target="_blank"> attachment </a>
			{{end}}
			{{end}}
			</div>
			<div class="status-action-container"> 
				<div class="status-action">
					<a class="status-you" href="/thread/{{.ID}}?reply=true#status-{{.ID}}" title="reply"> 
						<i class="fa fa-reply"></i>
					</a>
					<a class="status-action-count" href="/thread/{{.ID}}#status-{{.ID}}" {{if .ThreadInNewTab}}target="_blank"{{end}}>
						<span> {{DisplayInteractionCount .RepliesCount}} </span>
					</a>
				</div>
				<div class="status-action">
					{{if or (eq .Visibility "private") (eq .Visibility "direct")}}
					<a class="status-retweet" title="this status cannot be retweeted"> 
						<i class="fa fa-retweet"></i>
					</a>
					{{else}}
					{{if .Reblogged}}
					<a class="status-retweet" href="/unretweet/{{.ID}}" title="undo retweet"> 
						<i class="fa fa-retweet retweeted"></i>
					</a>
					{{else}}
					<a class="status-retweet" href="/retweet/{{.ID}}" title="retweet"> 
						<i class="fa fa-retweet"></i>
					</a>
					{{end}}
					{{end}}
					<a class="status-action-count" href="/retweetedby/{{.ID}}" title="click to see the the list"> 
						<span> {{DisplayInteractionCount .ReblogsCount}} </span>
					</a>
				</div>
				<div class="status-action">
					{{if .Favourited}}
					<a class="status-like" href="/unlike/{{.ID}}" title="unlike"> 
						<i class="fa fa-star liked"></i>
					</a>
					{{else}}
					<a class="status-like" href="/like/{{.ID}}" title="like"> 
						<i class="fa fa-star-o"></i>
					</a>
					{{end}}
					<a class="status-action-count" href="/likedby/{{.ID}}" title="click to see the the list"> 
						<span> {{DisplayInteractionCount .FavouritesCount}} </span>
					</a>
				</div>
				<div class="status-action">
					<a class="status-time" href="/thread/{{.ID}}#status-{{.ID}}" {{if .ThreadInNewTab}}target="_blank"{{end}}> 
						<time datetime="{{FormatTimeRFC3339 .CreatedAt}}" title="{{.CreatedAt}}"> {{TimeSince .CreatedAt}} </time> 
					</a>
				</div>
			</div>
		</div>
	</div>
	{{end}}
	{{end}}
</div>