summaryrefslogtreecommitdiff
path: root/views/object.erb
diff options
context:
space:
mode:
Diffstat (limited to 'views/object.erb')
-rw-r--r--views/object.erb71
1 files changed, 0 insertions, 71 deletions
diff --git a/views/object.erb b/views/object.erb
deleted file mode 100644
index b4b7d89..0000000
--- a/views/object.erb
+++ /dev/null
@@ -1,71 +0,0 @@
-<% @idx +=1
- mention = mention @object['attributedTo']
- JSON.parse(File.read(FOLLOWING))['orderedItems'].include?(@object['attributedTo']) ? follow='unfollow' : follow='follow'
- @indent = 0 unless @object['inReplyTo']
-%>
-<div style='margin-left:<%= @indent%>em' id='<%= @idx %>'>
- <b><a href='<%= @object['attributedTo'] %>', target='_blank'><%= mention %></a></b>&nbsp;
- <form action='/<%= follow %>' method='post'>
- <input type='hidden' name='follow' value='<%= @object['attributedTo'] %>' />
- <input type='hidden' name='anchor' value='/<%= @box %>#<%= @idx %>' />
- <button><%= follow.capitalize %></button>
- </form>
- <% unless @object['inReplyTo'] %>
- &nbsp;
- <em><%= @object['published'] %></em>
- &nbsp;
- <form action='/delete' method='post'>
- <input type='hidden' name='id' value='<%= @object['id'] %>' />
- <input type='hidden' name='dir' value='<%= @box %>' />
- <input type='hidden' name='anchor' value='/<%= @box %>#<%= @idx %>' />
- <button>Delete</button>
- </form>
- <% end %>
- <% unless @box == 'shared' %>
- &nbsp;
- <form action='/share' method='post'>
- <input type='hidden' name='id' value='<%= @object['id'] %>' />
- <input type='hidden' name='dir' value='<%= @box %>' />
- <input type='hidden' name='anchor' value='/<%= @box %>#<%= @idx %>' />
- <button>Share</button>
- </form>
- <% end %>
- <% unless @object['content'].match(/^<p>/) %>
- <p>
- <% end %>
- <%= @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>
- <% unless @box == 'shared' %>
- <button class='reply' data-index='<%= @idx %>'>Reply</button>
- <form action='/' method='post' id='form<%= @idx %>' style='display:none;' >
- <input type='hidden' name='to' value='<%= @object['attributedTo'] %>' />
- <input type='hidden' name='inReplyTo' value='<%= @object['id'] %>' />
- <input type='hidden' name='anchor' value='/<%= @box %>#<%= @idx %>' />
- <textarea name='content'></textarea>
- <br>
- <button class='cancel' data-index='<%= @idx %>'>Cancel</button>
- <input type='submit' value='Send'>
- </form>
- <% end %>
-</div>
-<% @object['replies'].each do |reply|
- @indent += 2
- @object = reply %>
- <%= erb :object %>
-<% end %>
-