blob: 744a5183e43dfa0bba0608e986bfd57ccf9e92bb (
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
|
<% mention = mention @object['attributedTo']
following_path = File.join(FOLLOWING, "#{mention}.json")
follow = File.exist?(following_path) ? 'unfollow' : 'follow'
%>
<div style='margin-left:<%= @object['indent']%>em' id='<%= @object['id'] %>'>
<b><a href='<%= @object['attributedTo'] %>', target='_blank'><%= mention %></a></b>
<form action='/<%= follow %>' method='post'>
<input type='hidden' name='follow' value='<%= @object['attributedTo'] %>' />
<input type='hidden' name='redirect' value='/#<%= @object['id'] %>' />
<button><%= follow.capitalize %></button>
</form>
<form action='/delete' method='post'>
<input type='hidden' name='id' value='<%= @object['id'] %>' />
<input type='hidden' name='redirect' value='/#<%= @object['id'] %>' />
<button>Delete</button>
</form>
<form action='/like' method='post'>
<input type='hidden' name='id' value='<%= @object['id'] %>' />
<input type='hidden' name='redirect' value='/#<%= @object['id'] %>' />
<button>Like</button>
</form>
<%= @object['content'] %>
<% if @object['attachment']
@object['attachment'].each do |att|
case att['mediaType']
when /audio/ %>
<br><audio controls=''><source src='<%= att['url'] %>' type='<%= att['mediaType'] %>'></audio>
<% when /image/ %>
<br><a href='<%= att['url'] %>'><img src='<%= att['url'] %>'></a>
<% when /video/ %>
<br><video controls=''><source src='<%= att['url'] %>' type='<%= att['mediaType'] %>'></video>
<% else %>
<%= att %><br>
<a href='<%= att['url'] %>'><%= att['url'] %></a>
<% end %>
<% end %>
<% end %>
<p>
<button class='reply' data-index='<%= @object['id'] %>'>Reply</button>
<form action='/' method='post' id='form<%= @object['id'] %>' style='display:none;' >
<input type='hidden' name='to' value='<%= @object['attributedTo'] %>' />
<input type='hidden' name='inReplyTo' value='<%= @object['id'] %>' />
<input type='hidden' name='redirect' value='/#<%= @object['id'] %>' />
<textarea name='content'></textarea>
<br>
<button class='cancel' data-index='<%= @object['id'] %>'>Cancel</button>
<input type='submit' value='Send'>
</form>
</div>
<% @object['replies'].each do |reply|
@object = reply %>
<%= erb :object %>
<% end %>
|