Sha256: c4f7d99f65434e6a702db0e98602261aaef5c3b753c154392dcab47249406f3a

Contents?: true

Size: 1.93 KB

Versions: 18

Compression:

Stored size: 1.93 KB

Contents

<%= content_tag :article,
                id:    dom_id(topic),
                class: ['thredded--topics--topic', topic_css_classes(topic)],
                data: {
                    topic: topic.id,
                    messageboard: topic.messageboard_id,
                    unread: !topic.read? || nil,
                    followed: topic.followed? || nil
                } do %>
  <div class="thredded--topics--posts-count"><%= topic.posts_count %></div>

  <div class="thredded--topics--follow-info" title="<%= topic_follow_reason_text topic.follow_reason %>">
    <% if topic.followed? %>
      <%= shared_inline_svg "thredded/follow.svg", class: "thredded--topics--follow-icon", role: "img" %>
    <% else %>
      <%= shared_inline_svg "thredded/unfollow.svg", class: "thredded--topics--follow-icon", role: "img" %>
    <% end %>
  </div>

  <h1 class="thredded--topics--title">
    <%= link_to topic.title, topic.path %>
  </h1>

  <% if topic.categories.any? %>
    <ul class="thredded--topics--categories">
      <%= render topic.categories %>
    </ul>
  <% end %>

  <cite class="thredded--topics--updated-by">
    <%= time_ago topic.last_post_at %>
    <%= user_link topic.last_user %>
  </cite>

  <% if local_assigns[:show_messageboard] %>
    <span class="thredded--topics--messageboard">
      <%= t 'thredded.topics.in_messageboard_html',
            messageboard_link: link_to(topic.messageboard_name, topic.messageboard_path) %>
    </span>
  <% end %>

  <% if topic.blocked? && topic.can_moderate? %>
    <span class="thredded--topics--moderation-state thredded--alert thredded--alert-danger">
      <%= render 'thredded/shared/content_moderation_blocked_state', moderation_record: topic.last_moderation_record %>
    </span>
  <% end %>
<% end %>

<% if local_assigns[:sticky_topics_divider] &&
    !topic_iteration.last? && topic.sticky? && !topics[topic_counter + 1].sticky? %>
  <%= render 'thredded/topics/sticky_topics_divider' %>
<% end %>

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
thredded-1.1.0 app/views/thredded/topics/_topic.html.erb
thredded-1.0.1 app/views/thredded/topics/_topic.html.erb
thredded-1.0.0 app/views/thredded/topics/_topic.html.erb
thredded-0.16.16 app/views/thredded/topics/_topic.html.erb
thredded-0.16.15 app/views/thredded/topics/_topic.html.erb
thredded-0.16.14 app/views/thredded/topics/_topic.html.erb
thredded-0.16.13 app/views/thredded/topics/_topic.html.erb
thredded-0.16.12 app/views/thredded/topics/_topic.html.erb
thredded-0.16.11 app/views/thredded/topics/_topic.html.erb
thredded-0.16.10 app/views/thredded/topics/_topic.html.erb
thredded-0.16.9 app/views/thredded/topics/_topic.html.erb
thredded-0.16.8 app/views/thredded/topics/_topic.html.erb
thredded-0.16.7 app/views/thredded/topics/_topic.html.erb
thredded-0.16.6 app/views/thredded/topics/_topic.html.erb
thredded-0.16.5 app/views/thredded/topics/_topic.html.erb
thredded-0.16.4 app/views/thredded/topics/_topic.html.erb
thredded-0.16.3 app/views/thredded/topics/_topic.html.erb
thredded-0.16.1 app/views/thredded/topics/_topic.html.erb