summaryrefslogtreecommitdiff
path: root/views/index.erb
blob: 0021ec9f4f6ff450bb448178e79c3cfb632fb546 (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
<!DOCTYPE html>
<html lang='en'>
  <head>
    <link rel='stylesheet' type='text/css' href='/style.css'>
  </head>
  <body>
    <h1><%= @dir %>
    <form action='<%= @alt_dir %>' method='get'>
      <button><%= @alt_name %></button>
    </form>
    </h1>
    <% @threads.each do |item| %>
      <%= html item %>
    <% end %>
    <% if @dir == 'inbox' %>
      <form action='delete_all' method='post'>
        <button>Delete all</button>
      </form>
    <% end %>
  </body>
  <script>
    const reply_buttons = document.querySelectorAll(".reply");
    for (const button of reply_buttons) {
      button.addEventListener('click', function() {
        const form = document.getElementById('form' + button.getAttribute('data-index'));
        button.style.display = 'none';
        form.style.display = 'block';
      });
    };
    const cancel_buttons = document.querySelectorAll(".cancel");
    for (const button of cancel_buttons) {
      button.addEventListener('click', function() {
        const form = document.getElementById('form' + button.getAttribute('data-index'));
        button.style.display = 'block';
        form.style.display = 'none';
      });
    };
  </script>
</html>